view paper/thesis.tex @ 1:eadfb0632472 draft

modify thesis.tex
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 07 Feb 2012 19:16:31 +0900
parents b939c5aae834
children 124612a0f170
line wrap: on
line source

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

\jtitle{Continuation based C コンパイラの GCC 4.6 上の実装について}
\etitle{The implementation of Continuation based C Compiler on GCC 4.6}
\year{平成23年度}
\affiliation{\center%
  \includegraphics[clip,keepaspectratio,width=.15\textwidth]
                  {images/u-ryukyu-Mark.eps}\\
                  \vskip10mm
                  琉球大学工学部 \ 情報工学科}

\author{085711E 大城 信康 \\ 指導教官 河野 真治}

\marklefthead{% 左上に挿入
  \begin{minipage}[b]{.4\textwidth}
    \includegraphics[height=1zw,clip,keepaspectratio]{images/emblem-bitmap.eps}
    琉球大学卒業論文
\end{minipage}}
\markleftfoot{% 左下に挿入
  \begin{minipage}{.8\textwidth}
    Continuation based C の GCC 4.6 上の実装について
\end{minipage}}

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

\lstset{%
  frame=single,
  stringstyle={\ttfamily},
  commentstyle={\ttfamily},
  identifierstyle={\ttfamily}, 
  keywordstyle={\ttfamily},
  basicstyle={\ttfamily},
  breaklines=true,
  xleftmargin=0zw,
  xrightmargin=0zw,
  framerule=.2pt,
  columns=[l]{fullflexible},
  numbers=left,
  stepnumber=1,
  numberstyle={\scriptsize},
  numbersep=1em,
  language={Java},
  tabsize=4,
  lineskip=-0.5zw,
  morecomment={[s][]{/**}{*/}},
}

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

\maketitle

%要旨
\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{thanx.tex}

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

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

%付録

\printindex
\end{document}