changeset 2:a8d3cbdebb3e

Import main tex file from kkb-master
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 16 Jan 2017 15:11:47 +0900
parents b50d4334d6f7
children 715c01485a03
files paper/atton-master.tex
diffstat 1 files changed, 111 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/paper/atton-master.tex	Mon Jan 16 15:11:47 2017 +0900
@@ -0,0 +1,111 @@
+\documentclass[a4j,12pt]{jreport}
+\usepackage{master_paper}
+\usepackage{ascmac}
+\usepackage[dvipdfmx]{graphicx}
+\usepackage{here}
+\usepackage{listings,jlisting}
+\usepackage{comment}
+\usepackage[deluxe, multi]{otf}
+
+%\input{dummy.tex} %% font
+
+\jtitle{Code Segment と Data Segment を持つ Gears OS の設計}
+\etitle{Design of Gears OS with Code and Data Segment}
+\year{2016年 3月}
+\eyear{March 2016}
+\author{小久保 翔平}
+\eauthor{Shohei KOKUBO}
+\chife{指導教員:教授 和田 知久}
+\echife{Supervisor: Prof. Tomohisa WADA}
+
+\marklefthead{% 左上に挿入
+  \begin{minipage}[b]{.4\textwidth}
+    琉球大学大学院学位論文(修士)
+\end{minipage}}
+
+\markleftfoot{% 左下に挿入
+  \begin{minipage}{.8\textwidth}
+    Code Segment と Data Segment を持つ Gears OS の設計
+\end{minipage}}
+
+\newcommand\figref[1]{図 \ref{fig:#1}}
+\newcommand\tabref[1]{表 \ref{tab:#1}}
+
+\lstset{
+  language=C,
+  tabsize=2,
+  frame=single,
+  basicstyle={\ttfamily\footnotesize},%
+  identifierstyle={\footnotesize},%
+  commentstyle={\footnotesize\itshape},%
+  keywordstyle={\footnotesize\bfseries},%
+  ndkeywordstyle={\footnotesize},%
+  stringstyle={\footnotesize\ttfamily},
+  breaklines=true,
+  captionpos=b,
+  columns=[l]{fullflexible},%
+  xrightmargin=0zw,%
+  xleftmargin=1zw,%
+  aboveskip=1zw,
+  numberstyle={\scriptsize},%
+  stepnumber=1,
+  numbersep=0.5zw,%
+  lineskip=-0.5ex,
+  numbers=left
+}
+
+%%% 索引のために以下の2行を追加
+\usepackage{makeidx,multicol}
+\makeindex
+\begin{document}
+
+%rome
+\frontmatter
+
+\maketitle
+\newpage
+
+\makecommission
+
+%要旨
+\input{abstract.tex}
+\input{abstract_eng.tex}
+
+%目次
+\tableofcontents
+
+%図目次
+\listoffigures
+
+%表目次
+\listoftables
+
+%arabic
+\mainmatter
+
+%chapters
+\input{intro.tex}
+\input{cerium.tex}
+\input{cbc.tex}
+\input{gearsos.tex}
+\input{comparison.tex}
+\input{evaluation.tex}
+\input{conclusion.tex}
+
+%謝辞
+\addcontentsline{toc}{chapter}{謝辞}
+\input{thx.tex}
+
+%参考文献
+\nocite{*}
+\bibliographystyle{junsrt}
+\bibliography{master_paper}
+
+%発表履歴
+\addcontentsline{toc}{chapter}{発表履歴}
+\input{history.tex}
+
+%付録
+\addcontentsline{toc}{chapter}{付録}
+\input{appendix.tex}
+\end{document}