Mercurial > hg > Papers > 2014 > toma-master
annotate paper/master_paper.tex @ 32:6f4382bb02d6
fix
author | Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 11:43:30 +0900 |
parents | 73a8440dcbff |
children | 345eacdf29e4 |
rev | line source |
---|---|
2 | 1 \documentclass[a4j,12pt]{jreport} |
2 \usepackage{master_paper} | |
3 \usepackage{ascmac} | |
4 \usepackage[dvipdfmx]{graphicx} | |
5 \usepackage{url} | |
6 \usepackage{comment} | |
8 | 7 \usepackage{listings,jlisting} |
8 | |
9 \lstset{ | |
10 language=Haskell,%プログラミング言語によって変える。 | |
11 tabsize=2, | |
12 frame=single, | |
12 | 13 basicstyle={\footnotesize},% |
14 identifierstyle={\footnotesize},% | |
15 commentstyle={\footnotesize\itshape},% | |
16 keywordstyle={\footnotesize\bfseries},% | |
17 ndkeywordstyle={\footnotesize},% | |
18 stringstyle={\footnotesize\ttfamily}, | |
19 breaklines=true, | |
23 | 20 captionpos=b, |
12 | 21 columns=[l]{fullflexible},% |
22 numbers=left,% | |
23 xrightmargin=0zw,% | |
24 xleftmargin=1zw,% | |
23 | 25 aboveskip=1zw, |
12 | 26 numberstyle={\scriptsize},% |
27 stepnumber=1, | |
23 | 28 numbersep=1zw,% |
12 | 29 lineskip=-0.5ex% |
8 | 30 } |
2 | 31 |
32 \input{font.sty} | |
33 | |
14
729ec8d5a16d
finish benchmark chapter
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
12
diff
changeset
|
34 \jtitle{関数型言語 Haskell による並列データベースの実装} |
2 | 35 \etitle{} |
5
658281be77ec
describe the abstract
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
36 \year{平成26年度} |
2 | 37 \affiliation{\center% |
38 \includegraphics[clip,keepaspectratio,width=.15\textwidth] | |
39 {images/u-ryukyu-Mark.eps}\\ | |
40 \vskip10mm | |
41 琉球大学大学院 \ 理工学研究科\\ 情報工学専攻} | |
42 | |
43 \author{當眞 大千} | |
44 | |
45 | |
46 \marklefthead{% 左上に挿入 | |
47 \begin{minipage}[b]{.4\textwidth} | |
48 \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps} | |
49 琉球大学大学院学位論文(修士) | |
50 \end{minipage}} | |
51 \markleftfoot{% 左下に挿入 | |
52 \begin{minipage}{.8\textwidth} | |
14
729ec8d5a16d
finish benchmark chapter
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
12
diff
changeset
|
53 関数型言語 Haskell による並列データベースの実装 |
2 | 54 \end{minipage}} |
55 | |
56 \newcommand\figref[1]{図 \ref{fig:#1}} | |
57 \newcommand\tabref[1]{表 \ref{tab:#1}} | |
58 | |
59 %%% 索引のために以下の2行を追加 | |
60 \usepackage{makeidx,multicol} | |
61 \makeindex | |
62 \begin{document} | |
63 | |
64 \maketitle | |
3 | 65 \newpage |
2 | 66 |
67 %要旨 | |
68 \input{abstract.tex} | |
69 | |
70 %目次 | |
71 \tableofcontents | |
72 | |
73 %図目次 | |
74 \listoffigures | |
75 | |
76 %表目次 | |
77 \listoftables | |
78 | |
79 %chapters | |
80 \input{introduciton.tex} | |
81 \input{chapter1.tex} | |
82 \input{chapter2.tex} | |
83 \input{chapter3.tex} | |
5
658281be77ec
describe the abstract
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
84 \input{chapter4.tex} |
2 | 85 \input{conclusion.tex} |
86 | |
87 %謝辞 | |
88 \input{thanx.tex} | |
89 | |
90 %参考文献 | |
91 \nocite{*} | |
92 \bibliographystyle{junsrt} | |
93 \bibliography{master_paper} | |
94 | |
95 %発表文献 | |
96 \input{appendix.tex} | |
97 | |
98 %付録 | |
99 | |
100 \printindex | |
101 \end{document} |