0
|
1 \documentclass[12pt,a4paper,uplatex]{ujreport}
|
|
2 \usepackage{master_paper}
|
5
|
3 \usepackage{longtable}
|
0
|
4 \usepackage{ascmac}
|
|
5 \usepackage[dvipdfmx]{graphicx}
|
|
6 \usepackage{here}
|
|
7 \usepackage{listings}
|
|
8 \usepackage{comment}
|
|
9 \usepackage{url}
|
|
10 \usepackage[deluxe, multi]{otf}
|
|
11
|
|
12
|
|
13 %\input{dummy.tex} %% font
|
|
14
|
4
|
15 \jtitle{システム管理を体験させる学生実験に関する取り組み}
|
6
|
16 \etitle{Initiatives related to student experiments to experience system management} %
|
0
|
17 \year{2024年 3月}
|
|
18 \year{March 2024}
|
|
19 \author{木山 瑞基}
|
|
20 \eauthor{Kiyama Mizuki}
|
|
21 \chife{指導教員:教授 和田 知久}
|
|
22 \echife{Supervisor: Prof. Tomohisa Wada}
|
|
23
|
|
24 \marklefthead{% 左上に挿入
|
|
25 \begin{minipage}[b]{.4\textwidth}
|
|
26 琉球大学大学院学位論文(修士)
|
|
27 \end{minipage}}
|
|
28
|
|
29 % \markleftfoot{% 左下に挿入
|
|
30 % \begin{minipage}{.8\textwidth}
|
|
31 % Gears OS の Paging
|
|
32 % \end{minipage}}
|
|
33
|
|
34 \newcommand\figref[1]{図 \ref{fig:#1}}
|
|
35 \newcommand\tabref[1]{表 \ref{tab:#1}}
|
|
36 \newcommand\coderef[1]{ソースコード \ref{code:#1}}
|
|
37
|
|
38 \lstset{
|
|
39 frame=single,
|
|
40 keepspaces=true,
|
|
41 stringstyle={\ttfamily},
|
|
42 commentstyle={\ttfamily},
|
|
43 identifierstyle={\ttfamily},
|
|
44 keywordstyle={\ttfamily},
|
|
45 basicstyle={\ttfamily},
|
|
46 breaklines=true,
|
|
47 xleftmargin=0zw,
|
|
48 xrightmargin=0zw,
|
|
49 framerule=.2pt,
|
|
50 columns=[l]{fullflexible},
|
|
51 numbers=left,
|
|
52 stepnumber=1,
|
|
53 numberstyle={\scriptsize},
|
|
54 numbersep=1em,
|
|
55 language={},
|
|
56 tabsize=4,
|
|
57 lineskip=-0.5zw,
|
|
58 escapechar={@},
|
|
59 }
|
|
60 \def\lstlistingname{ソースコード}
|
|
61 \def\lstlistlistingname{ソースコード目次}
|
|
62
|
|
63 %%% 索引のために以下の2行を追加
|
|
64 \usepackage{makeidx,multicol}
|
|
65 \makeindex
|
|
66 \begin{document}
|
|
67 %rome
|
|
68 \maketitle
|
|
69
|
|
70 \pagenumbering{roman}
|
|
71 \newpage
|
|
72 \setcounter{page}{0}
|
|
73 \makecommission
|
|
74
|
|
75 \newpage
|
|
76
|
|
77
|
|
78 %要旨
|
|
79 \input{chapter/abstract.tex}
|
|
80
|
|
81 %発表履歴
|
|
82 \addcontentsline{toc}{chapter}{研究関連論文業績}
|
|
83 \input{chapter/history.tex}
|
|
84
|
|
85 \mainmatter
|
|
86 %目次
|
|
87 \tableofcontents
|
|
88
|
|
89 %図目次
|
|
90 \listoffigures
|
|
91
|
|
92 %表目次
|
|
93 \listoftables
|
|
94
|
|
95 %リスト目次
|
|
96 % \lstlistoflistings
|
|
97
|
|
98 %chapters
|
|
99 \input{chapter/introduction.tex}
|
|
100 \input{chapter/technology_overview.tex}
|
|
101 \input{chapter/ie-system.tex}
|
4
|
102 \input{chapter/previous-research.tex}
|
1
|
103 \input{chapter/syskan-class.tex}
|
|
104 \input{chapter/chatsystem.tex}
|
0
|
105 \input{chapter/conclusion.tex}
|
|
106
|
|
107
|
|
108
|
|
109 % %謝辞
|
1
|
110 % \addcontentsline{toc}{chapter}{謝辞}
|
0
|
111 \input{chapter/thanks.tex}
|
|
112 %
|
|
113 %参考文献
|
|
114 \nocite{*}
|
|
115 \bibliography{reference}
|
|
116 \bibliographystyle{junsrt}
|
|
117
|
|
118
|
|
119 %発表履歴
|
|
120 %\addcontentsline{toc}{chapter}{発表履歴}
|
|
121 %\input{chapter/history.tex}]
|
|
122
|
|
123 %付録
|
|
124 %\addcontentsline{toc}{chapter}{付録}
|
|
125 %\appendix
|
|
126 %\input{chapter/appendix.tex}
|
|
127 \end{document}
|
|
128
|