2
|
1 \documentclass[a4j,12pt]{jreport}
|
|
2 \usepackage{master_paper}
|
|
3 \usepackage{ascmac}
|
|
4 \usepackage[dvipdfmx]{graphicx}
|
|
5 \usepackage{url}
|
|
6 \usepackage{comment}
|
|
7
|
|
8 \input{font.sty}
|
|
9
|
|
10 \jtitle{Haskellによる非破壊的木構造を用いたCMSの設計と実装}
|
|
11 \etitle{}
|
|
12 \year{平成25年度}
|
|
13 \affiliation{\center%
|
|
14 \includegraphics[clip,keepaspectratio,width=.15\textwidth]
|
|
15 {images/u-ryukyu-Mark.eps}\\
|
|
16 \vskip10mm
|
|
17 琉球大学大学院 \ 理工学研究科\\ 情報工学専攻}
|
|
18
|
|
19 \author{當眞 大千}
|
|
20
|
|
21
|
|
22 \marklefthead{% 左上に挿入
|
|
23 \begin{minipage}[b]{.4\textwidth}
|
|
24 \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps}
|
|
25 琉球大学大学院学位論文(修士)
|
|
26 \end{minipage}}
|
|
27 \markleftfoot{% 左下に挿入
|
|
28 \begin{minipage}{.8\textwidth}
|
|
29 Haskellによる非破壊的木構造を用いたCMSの設計と実装
|
|
30 \end{minipage}}
|
|
31
|
|
32 \newcommand\figref[1]{図 \ref{fig:#1}}
|
|
33 \newcommand\tabref[1]{表 \ref{tab:#1}}
|
|
34
|
|
35 %%% 索引のために以下の2行を追加
|
|
36 \usepackage{makeidx,multicol}
|
|
37 \makeindex
|
|
38 \begin{document}
|
|
39
|
|
40 \maketitle
|
|
41
|
|
42 %要旨
|
|
43 \input{abstract.tex}
|
|
44
|
|
45 %目次
|
|
46 \tableofcontents
|
|
47
|
|
48 %図目次
|
|
49 \listoffigures
|
|
50
|
|
51 %表目次
|
|
52 \listoftables
|
|
53
|
|
54 %chapters
|
|
55 \input{introduciton.tex}
|
|
56 \input{chapter1.tex}
|
|
57 \input{chapter2.tex}
|
|
58 \input{chapter3.tex}
|
|
59 \input{conclusion.tex}
|
|
60
|
|
61 %謝辞
|
|
62 \input{thanx.tex}
|
|
63
|
|
64 %参考文献
|
|
65 \nocite{*}
|
|
66 \bibliographystyle{junsrt}
|
|
67 \bibliography{master_paper}
|
|
68
|
|
69 %発表文献
|
|
70 \input{appendix.tex}
|
|
71
|
|
72 %付録
|
|
73
|
|
74 \printindex
|
|
75 \end{document}
|