view master_paper.tex @ 7:5aa805c029fb

modify style
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 09 Feb 2016 17:14:47 +0900
parents 910e143c28e7
children e4df300f45b6
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{Code Segment と Data Segment によって構成される Gears OS の設計}
\etitle{Design of Gears OS with consist of Code and Data Semgment}
\year{2016年 3月}
\eyear{March 2016}
\affiliation{\center%
  \includegraphics[clip,keepaspectratio,width=.15\textwidth]
                  {images/u-ryukyu-Mark.eps}
}

\author{小久保 翔平}
\eauthor{Shohei KOKUBO}
\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

%要旨
\begin{abstract}
\end{abstract}

%目次
\tableofcontents

%図目次
\listoffigures

%表目次
\listoftables

%arabic
\mainmatter

%chapters
\chapter{並列分散環境下におけるプログラミング}
\input{cerium.tex}
\chapter{CbC}
\input{gearsos.tex}
\chapter{比較}
\section{Cerium}
\section{従来の OS}

\chapter{評価}
\section{Twice}

\chapter{結論}

%謝辞
\addcontentsline{toc}{chapter}{謝辞}
\chapter*{謝辞}

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

%付録

\printindex
\end{document}