Mercurial > hg > Papers > 2022 > riono-master
annotate Paper/master_paper.tex @ 47:9c38517457d6
update conclusion
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 10 Feb 2022 12:47:08 +0900 |
parents | 1402268d1eca |
children | 6f40d20e4b4c |
rev | line source |
---|---|
1 | 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 | |
21
866f4329e430
title fix and add Continuation section
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
18
diff
changeset
|
15 \jtitle{継続を使用する並列分散フレームワークの Unity 実装} |
1 | 16 \etitle{} % |
2 | 17 \year{2022年 3月} |
18 \eyear{March 2022} | |
19 \author{安田 亮} | |
20 \eauthor{Ryo Yasuda} | |
1 | 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, | |
11 | 58 escapechar={@, \$}, |
59 captionpos=b | |
1 | 60 } |
11 | 61 |
1 | 62 \def\lstlistingname{ソースコード} |
63 \def\lstlistlistingname{ソースコード目次} | |
64 | |
65 %%% 索引のために以下の2行を追加 | |
66 \usepackage{makeidx,multicol} | |
67 \makeindex | |
68 \begin{document} | |
69 %rome | |
70 \maketitle | |
71 | |
72 \pagenumbering{roman} | |
73 \setcounter{page}{0} | |
74 \makecommission | |
3 | 75 %\input{chapter/signature.tex} |
1 | 76 |
77 \newpage | |
78 | |
79 %要旨 | |
80 \input{chapter/abstract.tex} | |
81 | |
3 | 82 |
1 | 83 %発表履歴 |
3 | 84 \input{chapter/history.tex} |
1 | 85 \addcontentsline{toc}{chapter}{研究関連論文業績} |
86 | |
87 \mainmatter | |
88 %目次 | |
89 \tableofcontents | |
90 | |
91 %図目次 | |
92 \listoffigures | |
93 | |
94 %表目次 | |
95 \listoftables | |
96 | |
97 %リスト目次 | |
11 | 98 \lstlistoflistings |
1 | 99 |
100 %chapters | |
4 | 101 \input{chapter/0-introduction.tex} |
9 | 102 \input{chapter/1-Christie.tex} |
21
866f4329e430
title fix and add Continuation section
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
18
diff
changeset
|
103 \input{chapter/2-RewriteCS.tex} |
47 | 104 \input{chapter/3-WorkingInUnity.tex} |
105 \input{chapter/4-LibraryComparison.tex} | |
1 | 106 \input{chapter/conclusion.tex} |
107 | |
108 | |
109 | |
110 % %謝辞 | |
111 \input{chapter/thanks.tex} | |
3 | 112 |
113 | |
1 | 114 %参考文献 |
115 \nocite{*} | |
116 \bibliography{reference} | |
117 \bibliographystyle{junsrt} | |
118 | |
119 | |
120 %発表履歴 | |
121 %\addcontentsline{toc}{chapter}{発表履歴} | |
122 %\input{chapter/history.tex}] | |
123 | |
124 %付録 | |
125 \addcontentsline{toc}{chapter}{付録} | |
126 \appendix | |
9 | 127 %\input{chapter/appendix.tex} |
1 | 128 \end{document} |
129 | |
9 | 130 |