1
|
1 \documentclass[a4j,12pt]{jreport}
|
3
|
2 %\usepackage[dvips]{graphicx}
|
1
|
3 \usepackage{mythesis}
|
|
4 \usepackage{multirow}
|
|
5 \usepackage{here}
|
13
|
6 \usepackage{comment}
|
3
|
7 \usepackage[dvipdfmx]{hyperref,graphicx}
|
|
8 % for hyperref
|
|
9 \usepackage{pxjahyper}
|
|
10 \hypersetup{
|
|
11 colorlinks=false, % リンクに色をつけない設定
|
|
12 bookmarks=true, % 以下ブックマークに関する設定
|
|
13 bookmarksnumbered=true,
|
|
14 pdfborder={0 0 0},
|
|
15 bookmarkstype=toc
|
|
16 }
|
|
17
|
5
|
18 \usepackage{comment}
|
|
19 \usepackage{listings}
|
|
20 \lstset{
|
|
21 language=C,
|
|
22 tabsize=2,
|
|
23 numbers=left,
|
|
24 frame=single,
|
|
25 basicstyle={\ttfamily\footnotesize}, %
|
|
26 identifierstyle={\footnotesize}, %
|
|
27 commentstyle={\footnotesize\itshape}, %
|
|
28 keywordstyle={\footnotesize\bfseries}, %
|
|
29 ndkeywordstyle={\footnotesize}, %
|
|
30 stringstyle={\footnotesize\ttfamily},
|
|
31 breaklines=true,
|
6
|
32 captionpos=t,
|
5
|
33 columns=[l]{fullflexible}, %
|
|
34 xrightmargin=0zw, %
|
|
35 xleftmargin=1zw, %
|
|
36 aboveskip=1zw,
|
|
37 numberstyle={\scriptsize}, %
|
|
38 stepnumber=1,
|
|
39 numbersep=0.5zw, %
|
|
40 lineskip=-0.5ex,
|
|
41 }
|
|
42 \renewcommand{\lstlistingname}{Code}
|
|
43 \usepackage{caption}
|
|
44 \captionsetup[lstlisting]{font={small, tt}}
|
|
45
|
|
46 \def\lstlistingname{ソースコード}
|
|
47 \def\lstlistlistingname{ソースコード目次}
|
|
48
|
1
|
49 \setlength{\itemsep}{-1zh}
|
5
|
50 \title{CbCによるxv6のFileSystemの書き換え}
|
1
|
51 \icon{
|
5
|
52 \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf}
|
1
|
53 }
|
5
|
54 \year{令和元年度 卒業論文}
|
1
|
55 \belongto{琉球大学工学部情報工学科}
|
5
|
56 \author{165723C 坂本昂弘 \\ 指導教員 {河野真治} }
|
1
|
57 %%
|
|
58 %% プリアンブルに記述
|
|
59 %% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
|
|
60 %%
|
|
61 \makeatletter
|
|
62 \newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
|
|
63 \newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
|
|
64 \makeatother
|
|
65 \setlength\abovecaptionskip{0pt}
|
|
66
|
|
67 \begin{document}
|
|
68
|
|
69 % タイトル
|
|
70 \maketitle
|
|
71 \baselineskip 17pt plus 1pt minus 1pt
|
|
72
|
|
73 \pagenumbering{roman}
|
|
74 \setcounter{page}{0}
|
|
75
|
|
76 \tableofcontents % 目次
|
|
77 \listoffigures % 図目次
|
12
|
78 %\listoftables % 表目次
|
|
79 \lstlistoflistings % ソースコード目次
|
1
|
80
|
|
81 %以下のように、章ごとに個別の tex ファイルを作成して、
|
|
82 % main.tex をコンパイルして確認する。
|
|
83 %章分けは個人で違うので下のフォーマットを参考にして下さい。
|
|
84
|
|
85 % はじめに
|
|
86 \input{chapter1.tex}
|
|
87
|
|
88 \input{chapter2.tex}
|
|
89
|
|
90 \input{chapter3.tex}
|
|
91
|
5
|
92 \input{chapter4.tex}
|
1
|
93
|
5
|
94 \input{chapter5.tex}
|
1
|
95 % 今後の課題
|
|
96 \input{future.tex}
|
|
97
|
|
98 % 参考文献
|
6
|
99 %\input{bibliography.tex}
|
|
100 \def\line{−\hspace*{-.7zw}−}
|
|
101 \nocite{*}
|
|
102 \bibliographystyle{junsrt}
|
|
103 \bibliography{reference}
|
21
|
104 \addcontentsline{toc}{chapter}{参考文献}
|
1
|
105 % 謝辞
|
|
106 \input{thanks.tex}
|
21
|
107 \addcontentsline{toc}{chapter}{謝辞}
|
|
108 %発表履歴
|
|
109 \input{sigos.tex}
|
|
110 \addcontentsline{toc}{chapter}{発表履歴}
|
1
|
111 % 付録
|
21
|
112 \appendix
|
17
|
113 \input{appendix.tex}
|
1
|
114
|
|
115 \end{document}
|