2
|
1 \documentclass[12pt,a4paper,uplatex]{ujreport}
|
|
2 \usepackage{master_paper}
|
|
3 \usepackage{ascmac}
|
66
|
4 \usepackage[dvipdfmx]{hyperref,graphicx}
|
2
|
5 \usepackage{here}
|
|
6 \usepackage{listings}
|
|
7 \usepackage{comment}
|
|
8 \usepackage{url}
|
|
9 \usepackage[deluxe, multi]{otf}
|
|
10
|
66
|
11 % for hyperref
|
|
12 \usepackage{pxjahyper}
|
|
13 \hypersetup{
|
|
14 colorlinks=false, % リンクに色をつけない設定
|
|
15 bookmarks=true, % 以下ブックマークに関する設定
|
|
16 bookmarksnumbered=true,
|
|
17 pdfborder={0 0 0},
|
|
18 bookmarkstype=toc
|
|
19 }
|
|
20
|
|
21
|
2
|
22
|
|
23
|
|
24 %\input{dummy.tex} %% font
|
|
25
|
4
|
26 \jtitle{GearsOSのメタ計算}
|
130
|
27 \etitle{GearsOS meta computation} %
|
4
|
28 \year{2021年 3月}
|
|
29 \eyear{March 2021}
|
2
|
30 \author{清水 隆博}
|
|
31 \eauthor{Takahiro Shimizu}
|
|
32 \chife{指導教員:教授 和田 知久}
|
|
33 \echife{Supervisor: Prof. Tomohisa Wada}
|
|
34
|
|
35 \marklefthead{% 左上に挿入
|
|
36 \begin{minipage}[b]{.4\textwidth}
|
|
37 琉球大学大学院学位論文(修士)
|
|
38 \end{minipage}}
|
|
39
|
|
40 % \markleftfoot{% 左下に挿入
|
|
41 % \begin{minipage}{.8\textwidth}
|
|
42 % Gears OS の Paging
|
|
43 % \end{minipage}}
|
|
44
|
|
45 \newcommand\figref[1]{図 \ref{fig:#1}}
|
|
46 \newcommand\tabref[1]{表 \ref{tab:#1}}
|
|
47 \newcommand\coderef[1]{ソースコード \ref{code:#1}}
|
|
48
|
|
49 \lstset{
|
|
50 frame=single,
|
|
51 keepspaces=true,
|
|
52 stringstyle={\ttfamily},
|
|
53 commentstyle={\ttfamily},
|
|
54 identifierstyle={\ttfamily},
|
|
55 keywordstyle={\ttfamily},
|
|
56 basicstyle={\ttfamily},
|
|
57 breaklines=true,
|
|
58 xleftmargin=0zw,
|
|
59 xrightmargin=0zw,
|
|
60 framerule=.2pt,
|
|
61 columns=[l]{fullflexible},
|
|
62 numbers=left,
|
|
63 stepnumber=1,
|
|
64 numberstyle={\scriptsize},
|
|
65 numbersep=1em,
|
|
66 language={},
|
|
67 tabsize=4,
|
|
68 lineskip=-0.5zw,
|
20
|
69 escapechar={@, $},
|
2
|
70 }
|
|
71 \def\lstlistingname{ソースコード}
|
|
72 \def\lstlistlistingname{ソースコード目次}
|
|
73
|
|
74 %%% 索引のために以下の2行を追加
|
|
75 \usepackage{makeidx,multicol}
|
|
76 \makeindex
|
|
77 \begin{document}
|
|
78 %rome
|
|
79 \maketitle
|
|
80
|
|
81 \pagenumbering{roman}
|
|
82 \setcounter{page}{0}
|
71
|
83 \newpage
|
2
|
84 \makecommission
|
|
85
|
|
86 \newpage
|
|
87
|
|
88 %要旨
|
|
89 \input{chapter/abstract.tex}
|
|
90
|
|
91 %発表履歴
|
|
92 \addcontentsline{toc}{chapter}{研究関連論文業績}
|
|
93 \input{chapter/history.tex}
|
|
94
|
|
95 %目次
|
|
96 \tableofcontents
|
|
97
|
|
98 %図目次
|
|
99 \listoffigures
|
|
100
|
|
101 %表目次
|
93
|
102 %\listoftables
|
2
|
103
|
|
104 %リスト目次
|
17
|
105 \lstlistoflistings
|
2
|
106
|
98
|
107 \mainmatter
|
2
|
108 %chapters
|
40
|
109 \input{chapter/01-introduction.tex}
|
|
110 \input{chapter/02-cbc.tex}
|
|
111 \input{chapter/03-gears.tex}
|
91
|
112 \input{chapter/news-items.tex}
|
58
|
113 \input{chapter/04-interface.tex}
|
59
|
114 \input{chapter/05-perl.tex}
|
60
|
115 \input{chapter/06-evaluation.tex}
|
2
|
116 \input{chapter/conclusion.tex}
|
|
117
|
|
118
|
|
119
|
|
120 % %謝辞
|
|
121 \input{chapter/thanks.tex}
|
|
122 %
|
|
123 %参考文献
|
|
124 \nocite{*}
|
|
125 \bibliography{reference}
|
|
126 \bibliographystyle{junsrt}
|
|
127
|
|
128
|
|
129 %発表履歴
|
|
130 %\addcontentsline{toc}{chapter}{発表履歴}
|
|
131 %\input{chapter/history.tex}]
|
|
132
|
|
133 %付録
|
|
134 \addcontentsline{toc}{chapter}{付録}
|
|
135 \appendix
|
|
136 \input{chapter/appendix.tex}
|
|
137 \end{document}
|
|
138
|