view paper/master_paper.tex @ 34:345eacdf29e4

add apendix
author Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 16:54:48 +0900
parents 73a8440dcbff
children ff15fb78a3ae
line wrap: on
line source

\documentclass[a4j,12pt]{jreport}
\usepackage{master_paper}
\usepackage{ascmac}
\usepackage[dvipdfmx]{graphicx}
\usepackage{url}
\usepackage{comment}
\usepackage{listings,jlisting}

\lstset{
    language=Haskell,%プログラミング言語によって変える。
    tabsize=2,
    frame=single,
    basicstyle={\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=1zw,%
    lineskip=-0.5ex%
}

\input{font.sty}

\jtitle{関数型言語 Haskell による\\並列データベースの実装}
\etitle{}
\year{平成26年度}
\affiliation{\center%
  \includegraphics[clip,keepaspectratio,width=.15\textwidth]
                  {images/u-ryukyu-Mark.eps}\\
                  \vskip10mm
                  琉球大学大学院 \ 理工学研究科\\ 情報工学専攻}

\author{當眞 大千}


\marklefthead{% 左上に挿入
  \begin{minipage}[b]{.4\textwidth}
    \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps}
    琉球大学大学院学位論文(修士)
\end{minipage}}
\markleftfoot{% 左下に挿入
  \begin{minipage}{.8\textwidth}
    関数型言語 Haskell による並列データベースの実装
\end{minipage}}

\newcommand\figref[1]{図 \ref{fig:#1}}
\newcommand\tabref[1]{表 \ref{tab:#1}}

%%% 索引のために以下の2行を追加
\usepackage{makeidx,multicol}
\makeindex
\begin{document}

\maketitle
\newpage

%要旨
\input{abstract.tex}

%目次
\tableofcontents

%図目次
\listoffigures

%表目次
\listoftables

%chapters
\input{introduciton.tex}
\input{chapter1.tex}
\input{chapter2.tex}
\input{chapter3.tex}
\input{chapter4.tex}
\input{conclusion.tex}
\input{appendix1.tex}

%謝辞
\input{thanx.tex}

%参考文献
\nocite{*}
\bibliographystyle{junsrt}
\bibliography{master_paper}

%発表文献
\input{appendix.tex}

%付録

\printindex
\end{document}