view paper/master_paper.tex @ 68:4caaa1c0779c

fix
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Feb 2016 18:16:21 +0900
parents 4efa1c7604f5
children a2004b9f1517
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{Cerium による文字列の並列処理}
\etitle{Parallel processing of strings using Cerium}
\year{平成27年度 3月}
\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}
  並列処理時における文字列処理の研究
\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}

%要旨
\begin{abstract}
Cerium は当研究室で開発している並列プログラミングフレームワークである。
Cerium にはファイルを読み込んで文字列処理を行う例題がある。
その例題を容易に実装できるように FileMapReduce クラスを Cerium に組み込んだ。
また、mmap に代わるファイル読み込みを実装し十分な性能が出ることを示した。
WordCount だけでなく正規表現を実装して測定評価を行った。
\end{abstract}

%目次
\tableofcontents

%図目次
\listoffigures

%表目次
\listoftables

%chapters
\pagenumbering{arabic}
\input{c1.tex}
\input{c2.tex}
\input{c3.tex}
\input{c4.tex}
\input{c5.tex}
\input{c6.tex}
\nocite{*}
\bibliographystyle{junsrt}
\bibliography{master_paper}

%付録

\printindex
\end{document}