annotate paper/master_paper.tex @ 2:e3f6ba6126b5

Preparation write to thesis
author tobaru
date Thu, 23 Jan 2020 14:17:22 +0900
parents
children db8087751680
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
1 % Todo
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
2 \documentclass[a4j,12pt]{jreport}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
3 \usepackage{master_paper}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
4 \usepackage{ascmac}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
5 \usepackage[dvipdfmx]{graphicx}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
6 \usepackage{here}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
7 \usepackage{listings}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
8 \usepackage{comment}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
9 \usepackage{url}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
10 \usepackage[deluxe, multi]{otf}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
11
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
12 %\input{dummy.tex} %% font
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
13
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
14 \jtitle{GearsOS によるコンテナと VM}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
15 \etitle{} % 英文例題まだ
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
16 \year{2020年 3月}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
17 \eyear{March 2020}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
18 \author{桃原 優}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
19 \eauthor{Yu Tobaru}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
20 \chife{指導教員:教授 玉城 史朗} % 多分このままでもあってる後で確認
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
21 \echife{Supervisor: Prof. Shiro Tamaki}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
22
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
23 \marklefthead{% 左上に挿入
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
24 \begin{minipage}[b]{.4\textwidth}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
25 琉球大学大学院学位論文(修士)
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
26 \end{minipage}}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
27
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
28 \markleftfoot{% 左下に挿入
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
29 \begin{minipage}{.8\textwidth}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
30 Gears OS の並列処理
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
31 \end{minipage}}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
32
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
33 \newcommand\figref[1]{図 \ref{fig:#1}}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
34 \newcommand\tabref[1]{表 \ref{tab:#1}}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
35 \newcommand\coderef[1]{ソースコード \ref{code:#1}}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
36
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
37 \lstset{
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
38 frame=single,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
39 keepspaces=true,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
40 stringstyle={\ttfamily},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
41 commentstyle={\ttfamily},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
42 identifierstyle={\ttfamily},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
43 keywordstyle={\ttfamily},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
44 basicstyle={\ttfamily},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
45 breaklines=true,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
46 xleftmargin=0zw,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
47 xrightmargin=0zw,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
48 framerule=.2pt,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
49 columns=[l]{fullflexible},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
50 numbers=left,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
51 stepnumber=1,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
52 numberstyle={\scriptsize},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
53 numbersep=1em,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
54 language={},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
55 tabsize=4,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
56 lineskip=-0.5zw,
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
57 escapechar={@},
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
58 }
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
59 \def\lstlistingname{ソースコード}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
60 \def\lstlistlistingname{ソースコード目次}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
61
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
62 %%% 索引のために以下の2行を追加
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
63 \usepackage{makeidx,multicol}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
64 \makeindex
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
65 \begin{document}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
66 %rome
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
67 \maketitle
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
68
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
69 \pagenumbering{roman}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
70 \setcounter{page}{0}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
71 \makecommission
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
72
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
73 \newpage
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
74
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
75 %要旨
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
76 \input{abstract.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
77
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
78 %発表履歴
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
79 % \addcontentsline{toc}{chapter}{研究関連論文業績}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
80 % \input{history.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
81
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
82 \mainmatter
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
83 %目次
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
84 \tableofcontents
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
85
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
86 %図目次
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
87 \listoffigures
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
88
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
89 %表目次
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
90 \listoftables
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
91
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
92 %リスト目次
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
93 \lstlistoflistings
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
94
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
95 % %chapters
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
96 % \input{introduction.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
97 % \input{meta_computation.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
98 % \input{GearsOS}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
99 % \input{interface.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
100 % \input{generate_code.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
101 % \input{xv6.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
102 % \input{evaluation.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
103 % \input{conclusion.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
104 %
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
105 % %謝辞
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
106 % \addcontentsline{toc}{chapter}{謝辞}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
107 % \input{thanks.tex}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
108 %
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
109 % %参考文献
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
110 % \nocite{*}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
111 % \bibliographystyle{junsrt}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
112 % \bibliography{reference}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
113
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
114 %付録
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
115 \addcontentsline{toc}{chapter}{付録}
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
116 \appendix
e3f6ba6126b5 Preparation write to thesis
tobaru
parents:
diff changeset
117 \end{document}