view paper/thesis.tex @ 4:e94e544fce5c

...
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Sat, 15 Jan 2022 16:50:14 +0900
parents 905f551ddf59
children 5772018b531b
line wrap: on
line source

\documentclass[title,12pt]{jsreport}
\usepackage{ie-thesis}
\usepackage{listings}

\jtitle{GearsOSにおけるinodeを用いたFileSystemの設計}
\title{Designing a FileSystem in GearsOS}

\affiliation{琉球大学工学部工学科知能情報コース}
\studentid{185742J}
\author{又吉 雄斗}
\supervisor{河野 真治}

%\Jabstract{\include{./text/Jabstract}}
\Jabstract{\input{./text/Jabstract.tex}}
\Eabstract{\input{./text/Eabstract.tex}}

\lstset{
  frame=single,
  keepspaces=true,
  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={},
  tabsize=4,
  lineskip=-0.5zw,
  escapechar={@, $},
}

\renewcommand{\lstlistingname}{ソースコード}
\renewcommand{\lstlistlistingname}{ソースコード目次}
   
\begin{document}
\maketitle %Don't remove.

% 目次
\tableofcontents	%Don't remove.

% 図目次,図がある場合のみ
\listoffigures

% 表も軸,表がある場合のみ
\listoftables

% ソースコード目次
\lstlistoflistings

% pagecounter settings
\setcounter{page}{0}	%Don't remove.

% main text
% introduction
\include{./text/introduction}

% ... 
\include{./text/chapter2}


\chapter{まとめ}

\chapter*{謝辞}

% reference
\bibliography{thesis}
\bibliographystyle{junsrt}

%付録がある場合のみ
%\appendix
%付録項目ごとに章構成する.章番号は本文とは独立に構成される.

\end{document}