2
|
1 \documentclass[12pt,a4paper,uplatex]{ujreport}
|
|
2 \usepackage{master_paper}
|
|
3 \usepackage{ascmac}
|
|
4 \usepackage[dvipdfmx]{graphicx}
|
|
5 \usepackage{here}
|
|
6 \usepackage{listings}
|
|
7 \usepackage{comment}
|
|
8 \usepackage{url}
|
|
9 \usepackage[deluxe, multi]{otf}
|
|
10
|
|
11
|
|
12
|
|
13 %\input{dummy.tex} %% font
|
|
14
|
4
|
15 \jtitle{GearsOSのメタ計算}
|
2
|
16 \etitle{} %
|
4
|
17 \year{2021年 3月}
|
|
18 \eyear{March 2021}
|
2
|
19 \author{清水 隆博}
|
|
20 \eauthor{Takahiro Shimizu}
|
|
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 \setcounter{page}{0}
|
|
72 \makecommission
|
|
73
|
|
74 \newpage
|
|
75
|
|
76 %要旨
|
|
77 \input{chapter/abstract.tex}
|
|
78
|
|
79 %発表履歴
|
|
80 \addcontentsline{toc}{chapter}{研究関連論文業績}
|
|
81 \input{chapter/history.tex}
|
|
82
|
|
83 \mainmatter
|
|
84 %目次
|
|
85 \tableofcontents
|
|
86
|
|
87 %図目次
|
|
88 \listoffigures
|
|
89
|
|
90 %表目次
|
|
91 \listoftables
|
|
92
|
|
93 %リスト目次
|
|
94 % \lstlistoflistings
|
|
95
|
|
96 %chapters
|
|
97 \input{chapter/introduction.tex}
|
|
98 \input{chapter/02-perl.tex}
|
|
99 \input{chapter/conclusion.tex}
|
|
100
|
|
101
|
|
102
|
|
103 % %謝辞
|
|
104 \addcontentsline{toc}{chapter}{謝辞}
|
|
105 \input{chapter/thanks.tex}
|
|
106 %
|
|
107 %参考文献
|
|
108 \nocite{*}
|
|
109 \bibliography{reference}
|
|
110 \bibliographystyle{junsrt}
|
|
111
|
|
112
|
|
113 %発表履歴
|
|
114 %\addcontentsline{toc}{chapter}{発表履歴}
|
|
115 %\input{chapter/history.tex}]
|
|
116
|
|
117 %付録
|
|
118 \addcontentsline{toc}{chapter}{付録}
|
|
119 \appendix
|
|
120 \input{chapter/appendix.tex}
|
|
121 \end{document}
|
|
122
|