view paper/master_paper.tex @ 11:2d9b3ad3e524

result
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 14 Feb 2016 05:01:15 +0900
parents 571f9f8d99e1
children 1d151a4d03f6
line wrap: on
line source

\documentclass[a4j,12pt]{jreport}
\usepackage{master_paper}
\usepackage{ascmac}
\usepackage[dvipdfmx]{graphicx}
\usepackage{here}
\usepackage{listings,jlisting}
\usepackage{comment}
%\input{dummy.tex} %% font

\jtitle{LLVM, Clang 上の Continuation based C コンパイラの改良}
\etitle{Improvement of Continuation based C compiler on LLVM and Clang}
\year{2016年 3月}
\eyear{March 2016}
\affiliation{\center%
  \includegraphics[clip,keepaspectratio,width=.15\textwidth]
                  {images/u-ryukyu-Mark.eps}
}

\author{徳森 海斗}
\eauthor{Kaito TOKUMORI}

\marklefthead{% 左上に挿入
  \begin{minipage}[b]{.4\textwidth}
    \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps}
    琉球大学大学院学位論文(修士)
\end{minipage}}
\markleftfoot{% 左下に挿入
  \begin{minipage}{.8\textwidth}
    LLVM, Clang 上の Continuation based C コンパイラの改良
\end{minipage}}

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

\lstset{%
 language={Java},
 basicstyle={\footnotesize},%
 identifierstyle={\footnotesize},%
 commentstyle={\footnotesize\itshape},%
 keywordstyle={\footnotesize\bfseries},%
 ndkeywordstyle={\footnotesize},%
 stringstyle={\footnotesize\ttfamily},
 frame={tb},
 breaklines=true,
 columns=[l]{fullflexible},%
 numbers=left,%
 xrightmargin=0zw,%
 xleftmargin=1zw,%
 numberstyle={\scriptsize},%
 stepnumber=1,
 numbersep=0.5zw,%
 lineskip=-0.5ex%
}


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

\maketitle
\newpage

\input{judge.tex}

%要旨
\input{abstract.tex}
\input{abstract_eng.tex}

%目次
\tableofcontents

%図目次
\listoffigures

%表目次
\listoftables

%chapters
\input{introduciton.tex}
\input{chapter1.tex}
\input{chapter2.tex}
\input{chapter3.tex}
\input{gotoWithEnv.tex}
\input{chapter4.tex}
\input{chapter5.tex}

\input{conclusion.tex}

%謝辞
\input{thanx.tex}

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

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

%付録

%\printindex
\end{document}