comparison master_paper.tex @ 0:5eccffd1cdd0

first commit
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 22 Dec 2015 18:35:03 +0900
parents
children e55fa2471718
comparison
equal deleted inserted replaced
-1:000000000000 0:5eccffd1cdd0
1 \documentclass[a4j,12pt]{jreport}
2 \usepackage{master_paper}
3 \usepackage{ascmac}
4 \usepackage[dvipdfmx]{graphicx}
5 \usepackage{here}
6 \usepackage{listings,jlisting}
7 \usepackage{comment}
8 %\input{dummy.tex} %% font
9
10 \jtitle{Monad に基づくメタ計算を基本とする Gears OS の設計}
11 \etitle{Design of Gears OS with Meta Computation based on Monad}
12 \year{平成27年度 3月}
13 \affiliation{\center%
14 \includegraphics[clip,keepaspectratio,width=.15\textwidth]
15 {images/u-ryukyu-Mark.eps}\\
16 \vskip10mm
17 琉球大学大学院 \ 理工学研究科\\ 情報工学専攻}
18
19 \author{小久保 翔平}
20
21 \marklefthead{% 左上に挿入
22 \begin{minipage}[b]{.4\textwidth}
23 \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps}
24 琉球大学大学院学位論文(修士)
25 \end{minipage}}
26 \markleftfoot{% 左下に挿入
27 \begin{minipage}{.8\textwidth}
28 マルチプラットフォーム対応並列プログラミングフレームワーク
29 \end{minipage}}
30
31 \newcommand\figref[1]{図 \ref{fig:#1}}
32 \newcommand\tabref[1]{表 \ref{tab:#1}}
33
34 \lstset{%
35 language={Java},
36 basicstyle={\footnotesize},%
37 identifierstyle={\footnotesize},%
38 commentstyle={\footnotesize\itshape},%
39 keywordstyle={\footnotesize\bfseries},%
40 ndkeywordstyle={\footnotesize},%
41 stringstyle={\footnotesize\ttfamily},
42 frame={tb},
43 breaklines=true,
44 columns=[l]{fullflexible},%
45 numbers=left,%
46 xrightmargin=0zw,%
47 xleftmargin=1zw,%
48 numberstyle={\scriptsize},%
49 stepnumber=1,
50 numbersep=0.5zw,%
51 lineskip=-0.5ex%
52 }
53
54
55 %%% 索引のために以下の2行を追加
56 \usepackage{makeidx,multicol}
57 \makeindex
58 \begin{document}
59
60 \maketitle
61 \newpage
62
63 %\input{judge.tex}
64
65 %要旨
66 \begin{abstract}
67 \end{abstract}
68
69 %目次
70 \tableofcontents
71
72 %図目次
73 \listoffigures
74
75 %表目次
76 \listoftables
77
78 %chapters
79 \chapter{並列分散環境下におけるプログラミング}
80 \chapter{マルチプラットフォームフレームワーク}
81 \chapter{CbC}
82 \chapter{Gears OS}
83 \chapter{Monad とメタ計算}
84 \chapter{Code Gear と Data Gear}
85 \chapter{}
86 \chapter{ベンチマーク}
87 \chapter{比較}
88 \chapter{結論}
89
90 %謝辞
91 \chapter{謝辞}
92
93 %参考文献
94 \nocite{*}
95 \bibliographystyle{junsrt}
96 \bibliography{master_paper}
97
98 %付録
99
100 \printindex
101 \end{document}