forked from chike0905/RG-Thesis-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qiikoo_thesis.tex
144 lines (117 loc) · 3.49 KB
/
qiikoo_thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
\documentclass[12pt]{jreport}
\usepackage{comment}
\usepackage{./sty/eclepsf}
\usepackage{tascmac}
\usepackage{tabularx}
\usepackage{slashbox}
\usepackage{listliketab}
\usepackage[longnamesfirst]{natbib}
\usepackage[dvipdfmx]{graphics}
\usepackage[dvipdfmx]{graphicx}
\usepackage[dvipdfmx]{color}
\usepackage{subfigure}
\usepackage{alltt}
\usepackage{here}
\usepackage{afterpage}
\usepackage{./sty/ncodeline}
%\usepackage[dvipdfmx, colorlinks, breaklinks,%
\usepackage[dvipdfmx, breaklinks,%
bookmarks=true, bookmarksnumbered=true,%
bookmarkstype=toc, bookmarksopen=true,bookmarksopenlevel=3,%
pdftitle={RG},%
]{hyperref}
\usepackage{bookmark}
\usepackage{lscape}
\AtBeginDvi{\special{pdf:tounicode EUC-UCS2}}
\usepackage{fancyhdr}
\usepackage{./sty/doxygenorig}
\usepackage{indentfirst}
\usepackage{url}
\usepackage{listings,./sty/jlisting}
\def\lstlistingname{プログラム}
\lstset{%
language={C++},
%backgroundcolor={\color[gray]{.85}},%
basicstyle={\small\ttfamily},%
identifierstyle={\small},%
commentstyle={\small\itshape},%
keywordstyle={\small\bfseries},%
ndkeywordstyle={\small\ttfamily},%
stringstyle={\small\ttfamily},
frame={tb},
framesep=1zw,
breaklines=true,
numbers=left,%
xrightmargin=0zw,%
xleftmargin=1.5zw,%
numberstyle={\scriptsize},%
stepnumber=1,
numbersep=1zw,%
lineskip=-0.5ex%
}
\usepackage{amssymb}
%\usepackage{supertabular,multirow}
\usepackage{array}
\newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}}
% A4 size: 297mm*210mm %1pt = 0.35mm
\setlength{\topmargin}{-3.4mm} % 10pt 25.4mm - 3.4mm = 22mm
\setlength{\oddsidemargin}{-0.4mm} % 25.4mm - 0.4mm = 25mm
\setlength{\evensidemargin}{-0.4mm} % 25.4mm - 0.4mm = 25mm
\setlength{\textheight}{231mm} % 660pt % original is 225.75mm 645pt
\setlength{\textwidth}{160mm} % 457pt
\renewcommand{\topfraction}{.99}
\renewcommand{\textfraction}{.0}
\renewcommand{\floatpagefraction}{.99}
\renewcommand{\bibname}{参考文献}
\pagestyle{fancy}
\lhead[]{}
\makeatletter
\def\chaptermark#1{\markboth {\ifnum \c@secnumdepth>\m@ne
\@chapapp\ \thechapter \@chappos\ \fi #1}{}}
\makeatother
% タイトル
\def\title{惑星規模の分散システムのための試験環境の設計と構築}
% 英語タイトル
\def\etitle{Design and Implementation an experiment environment for planetary-scale distributed systems}
% 著者(日本語)
\def\author{廣川昂紀}
% 著者(英語)
\def\eauthor{Koki Hirokawa}
% 学部・研究科
\def\dept{慶應義塾大学 環境情報学部}
% 学部・研究科(英語)
\def\edept{Keio University Faculty of Environment and Information Studies}
\begin{document}
\pagenumbering{roman}
\input{src/titlepage}
\thispagestyle{empty}
\input{src/abstract_japanese}
\thispagestyle{plain}
\clearpage
\input{src/abstract_english}
\thispagestyle{plain}
\clearpage
\tableofcontents\thispagestyle{plain} %目次
\clearpage
\listoffigures\thispagestyle{plain} %図目次
\clearpage
\listoftables\thispagestyle{plain} %表目次
\clearpage
\pagenumbering{arabic}
\input{src/1_introduction}
\input{src/2_background}
\input{src/3_issue}
\input{src/4_implementation}
\input{src/5_evaluation}
\input{src/6_conclusion}
%\input{src/appendix}
\input{src/acknowledgement}
\renewcommand{\thechapter}{\Alph{chapter}}
\setcounter{chapter}{0}
\vspace{-5mm}
\input{bib/biblio}\thispagestyle{plain}%bibtex
\end{document}
%%% Local Variables:
%%% mode: japanese-latex
%%% TeX-master: t
%%% End: