comparison final_main/main.tex @ 5:a592714b3c35

tweak
author menikon
date Thu, 06 Feb 2020 13:51:33 +0900
parents bb100fa1e7db
children 102c40310142
comparison
equal deleted inserted replaced
4:fa752c50454f 5:a592714b3c35
12 bookmarksnumbered=true, 12 bookmarksnumbered=true,
13 pdfborder={0 0 0}, 13 pdfborder={0 0 0},
14 bookmarkstype=toc 14 bookmarkstype=toc
15 } 15 }
16 16
17 \usepackage{comment}
18 \usepackage{listings}
19 \lstset{
20 language=C,
21 tabsize=2,
22 numbers=left,
23 frame=single,
24 basicstyle={\ttfamily\footnotesize}, %
25 identifierstyle={\footnotesize}, %
26 commentstyle={\footnotesize\itshape}, %
27 keywordstyle={\footnotesize\bfseries}, %
28 ndkeywordstyle={\footnotesize}, %
29 stringstyle={\footnotesize\ttfamily},
30 breaklines=true,
31 captionpos=b,
32 columns=[l]{fullflexible}, %
33 xrightmargin=0zw, %
34 xleftmargin=1zw, %
35 aboveskip=1zw,
36 numberstyle={\scriptsize}, %
37 stepnumber=1,
38 numbersep=0.5zw, %
39 lineskip=-0.5ex,
40 }
41 \renewcommand{\lstlistingname}{Code}
42 \usepackage{caption}
43 \captionsetup[lstlisting]{font={small, tt}}
44
45 \def\lstlistingname{ソースコード}
46 \def\lstlistlistingname{ソースコード目次}
47
17 \setlength{\itemsep}{-1zh} 48 \setlength{\itemsep}{-1zh}
18 \title{} 49 \title{CbCによるxv6のFileSystemの書き換え}
19 \icon{ 50 \icon{
20 \includegraphics[width=80mm,bb=0 0 595 842]{fig/ryukyu.pdf} 51 \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf}
21 } 52 }
22 \year{平成Y年度 卒業論文} 53 \year{令和元年度 卒業論文}
23 \belongto{琉球大学工学部情報工学科} 54 \belongto{琉球大学工学部情報工学科}
24 \author{165723C 坂本昂弘 \\ 指導教員 {河野真治} } 55 \author{165723C 坂本昂弘 \\ 指導教員 {河野真治} }
25 %% 56 %%
26 %% プリアンブルに記述 57 %% プリアンブルに記述
27 %% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要 58 %% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
28 %% 59 %%
29 \makeatletter 60 \makeatletter
42 \setcounter{page}{0} 73 \setcounter{page}{0}
43 74
44 \tableofcontents % 目次 75 \tableofcontents % 目次
45 \listoffigures % 図目次 76 \listoffigures % 図目次
46 \listoftables % 表目次 77 \listoftables % 表目次
78 \lstlistoflistings
47 79
48 %以下のように、章ごとに個別の tex ファイルを作成して、 80 %以下のように、章ごとに個別の tex ファイルを作成して、
49 % main.tex をコンパイルして確認する。 81 % main.tex をコンパイルして確認する。
50 %章分けは個人で違うので下のフォーマットを参考にして下さい。 82 %章分けは個人で違うので下のフォーマットを参考にして下さい。
51 83
52 % はじめに 84 % はじめに
53 \input{chapter1.tex} 85 \input{chapter1.tex}
54 86
55 % 基礎概念
56 \input{chapter2.tex} 87 \input{chapter2.tex}
57 88
58 % 実験
59 \input{chapter3.tex} 89 \input{chapter3.tex}
60 90
61 % 他の論文との比較 91 \input{chapter4.tex}
62 %\input{chapter4.tex}
63 92
93 \input{chapter5.tex}
64 % 今後の課題 94 % 今後の課題
65 \input{future.tex} 95 \input{future.tex}
66 96
67 % 参考文献 97 % 参考文献
68 \input{bibliography.tex} 98 \input{bibliography.tex}