view final_main/main.tex @ 17:c8fee0262ead

fix chapter5
author menikon
date Thu, 13 Feb 2020 01:50:45 +0900
parents d393f08644e1
children a03d74165189
line wrap: on
line source

\documentclass[a4j,12pt]{jreport}
%\usepackage[dvips]{graphicx}
\usepackage{mythesis}
\usepackage{multirow}
\usepackage{here}
\usepackage{comment}
\usepackage[dvipdfmx]{hyperref,graphicx}
% for hyperref
\usepackage{pxjahyper}
\hypersetup{
	colorlinks=false, % リンクに色をつけない設定
	bookmarks=true, % 以下ブックマークに関する設定
	bookmarksnumbered=true,
	pdfborder={0 0 0},
	bookmarkstype=toc
}

\usepackage{comment}
\usepackage{listings}
\lstset{
  language=C, 
  tabsize=2, 
  numbers=left,
  frame=single, 
  basicstyle={\ttfamily\footnotesize}, % 
  identifierstyle={\footnotesize}, % 
  commentstyle={\footnotesize\itshape}, % 
  keywordstyle={\footnotesize\bfseries}, % 
  ndkeywordstyle={\footnotesize}, % 
  stringstyle={\footnotesize\ttfamily}, 
  breaklines=true, 
  captionpos=t, 
  columns=[l]{fullflexible}, % 
  xrightmargin=0zw, % 
  xleftmargin=1zw, % 
  aboveskip=1zw, 
  numberstyle={\scriptsize}, % 
  stepnumber=1, 
  numbersep=0.5zw, % 
  lineskip=-0.5ex, 
}
\renewcommand{\lstlistingname}{Code}
\usepackage{caption}
\captionsetup[lstlisting]{font={small, tt}}

\def\lstlistingname{ソースコード}
\def\lstlistlistingname{ソースコード目次}

\setlength{\itemsep}{-1zh}
\title{CbCによるxv6のFileSystemの書き換え}
\icon{
		\includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf}
	}
\year{令和元年度 卒業論文}
\belongto{琉球大学工学部情報工学科}
\author{165723C 坂本昂弘 \\ 指導教員 {河野真治} }
%%
%% プリアンブルに記述
%% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
%%
\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
\makeatother
\setlength\abovecaptionskip{0pt}

\begin{document}

% タイトル
\maketitle
\baselineskip 17pt plus 1pt minus 1pt

\pagenumbering{roman}
\setcounter{page}{0}

\tableofcontents	% 目次
\listoffigures		% 図目次
%\listoftables		% 表目次
\lstlistoflistings		% ソースコード目次

%以下のように、章ごとに個別の tex ファイルを作成して、
% main.tex をコンパイルして確認する。
%章分けは個人で違うので下のフォーマットを参考にして下さい。

% はじめに
\input{chapter1.tex}

\input{chapter2.tex}

\input{chapter3.tex}

\input{chapter4.tex}

\input{chapter5.tex}
% 今後の課題
\input{future.tex}

% 参考文献
%\input{bibliography.tex}
\def\line{−\hspace*{-.7zw}−}
\nocite{*}
\bibliographystyle{junsrt}
\bibliography{reference}

% 謝辞
\input{thanks.tex}

% 付録
\input{appendix.tex}

\end{document}