diff Paper/master_paper.tex @ 2:c8151a82f313

copy tex files from ikki master
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Wed, 15 Nov 2023 09:55:50 +0900 (2023-11-15)
parents
children 8e0c6a7e9b7f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/master_paper.tex	Wed Nov 15 09:55:50 2023 +0900
@@ -0,0 +1,127 @@
+\documentclass[12pt,a4paper,platex]{jreport} 
+\usepackage{master_paper}
+\usepackage{ascmac}
+\usepackage[dvipdfmx]{graphicx}
+\usepackage{here}
+\usepackage{listings}
+\usepackage{comment}
+\usepackage{url}
+\usepackage[deluxe, multi]{otf}
+
+
+
+%\input{dummy.tex} %% font
+
+
+\jtitle{GearsOSの分散ファイルシステム設計}
+\etitle{} %
+\year{2024年 3月}
+\eyear{March 2024}
+\author{又吉 雄斗}
+\eauthor{Ikki Takahiro}
+\chife{指導教員:教授 山田 孝治}
+\echife{Supervisor: Prof. Yamada Koji}
+
+\marklefthead{% 左上に挿入
+  \begin{minipage}[b]{.4\textwidth}
+    琉球大学大学院学位論文(修士)
+\end{minipage}}
+
+% \markleftfoot{% 左下に挿入
+%  \begin{minipage}{.8\textwidth}
+%    Gears OS の Paging
+% \end{minipage}}
+
+\newcommand\figref[1]{図 \ref{fig:#1}}
+\newcommand\coderef[1]{ソースコード \ref{code:#1}}
+
+\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={@},
+}
+\def\lstlistingname{ソースコード}
+\def\lstlistlistingname{ソースコード目次}
+
+%%% 索引のために以下の2行を追加
+\usepackage{makeidx,multicol}
+\makeindex
+\begin{document}
+%rome
+\maketitle
+
+\pagenumbering{roman}
+\setcounter{page}{0}
+\newpage
+\makecommission
+%\input{chapter/signature.tex}
+
+\newpage
+
+%要旨
+\input{chapter/abstract.tex}
+
+
+%発表履歴
+\input{chapter/history.tex}
+\addcontentsline{toc}{chapter}{研究関連論文業績}
+
+\mainmatter
+%目次
+\tableofcontents
+
+%図目次
+\listoffigures
+
+
+
+%リスト目次
+% \lstlistoflistings
+
+%chapters
+\input{chapter/0-introduction.tex}
+\input{chapter/2-CbC.tex}
+\input{chapter/3-GearsOS.tex}
+\input{chapter/4-Christie.tex}
+\input{chapter/5-Implementation.tex}
+\input{chapter/6-Evaluation.tex}
+\input{chapter/conclusion.tex}
+
+
+
+% %謝辞
+\input{chapter/thanks.tex}
+
+
+%参考文献
+\nocite{*}
+\bibliography{reference}
+\bibliographystyle{junsrt}
+
+
+%発表履歴
+%\addcontentsline{toc}{chapter}{発表履歴}
+%\input{chapter/history.tex}]
+
+%付録
+\addcontentsline{toc}{chapter}{付録}
+\appendix
+\input{chapter/appendix.tex}
+\end{document}