Mercurial > hg > Papers > 2014 > toma-master
annotate paper/master_paper.tex @ 10:a349b2c01cfe
add graffle
author | Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 28 Jan 2014 06:40:52 +0900 |
parents | a145ceb871d3 |
children | 500bcb11d251 |
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 basicstyle={\ttfamily\footnotesize}, | |
12 tabsize=2, | |
13 frame=single, | |
14 breaklines=true,%折り返し | |
15 captionpos=b | |
16 } | |
2 | 17 |
18 \input{font.sty} | |
19 | |
10 | 20 \jtitle{関数型言語 Haskell による並列データベースの設計と実装} |
2 | 21 \etitle{} |
5
658281be77ec
describe the abstract
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
22 \year{平成26年度} |
2 | 23 \affiliation{\center% |
24 \includegraphics[clip,keepaspectratio,width=.15\textwidth] | |
25 {images/u-ryukyu-Mark.eps}\\ | |
26 \vskip10mm | |
27 琉球大学大学院 \ 理工学研究科\\ 情報工学専攻} | |
28 | |
29 \author{當眞 大千} | |
30 | |
31 | |
32 \marklefthead{% 左上に挿入 | |
33 \begin{minipage}[b]{.4\textwidth} | |
34 \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps} | |
35 琉球大学大学院学位論文(修士) | |
36 \end{minipage}} | |
37 \markleftfoot{% 左下に挿入 | |
38 \begin{minipage}{.8\textwidth} | |
10 | 39 関数型言語 Haskell による並列データベースの設計と実装 |
2 | 40 \end{minipage}} |
41 | |
42 \newcommand\figref[1]{図 \ref{fig:#1}} | |
43 \newcommand\tabref[1]{表 \ref{tab:#1}} | |
44 | |
45 %%% 索引のために以下の2行を追加 | |
46 \usepackage{makeidx,multicol} | |
47 \makeindex | |
48 \begin{document} | |
49 | |
50 \maketitle | |
3 | 51 \newpage |
2 | 52 |
53 %要旨 | |
54 \input{abstract.tex} | |
55 | |
56 %目次 | |
57 \tableofcontents | |
58 | |
59 %図目次 | |
60 \listoffigures | |
61 | |
62 %表目次 | |
63 \listoftables | |
64 | |
65 %chapters | |
66 \input{introduciton.tex} | |
67 \input{chapter1.tex} | |
68 \input{chapter2.tex} | |
69 \input{chapter3.tex} | |
5
658281be77ec
describe the abstract
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
70 \input{chapter4.tex} |
2 | 71 \input{conclusion.tex} |
72 | |
73 %謝辞 | |
74 \input{thanx.tex} | |
75 | |
76 %参考文献 | |
77 \nocite{*} | |
78 \bibliographystyle{junsrt} | |
79 \bibliography{master_paper} | |
80 | |
81 %発表文献 | |
82 \input{appendix.tex} | |
83 | |
84 %付録 | |
85 | |
86 \printindex | |
87 \end{document} |