comparison final_main/main.tex @ 0:30a433a94a9a

first commit
author mir3636
date Fri, 10 Feb 2017 16:24:11 +0900
parents
children 5b368e14bb64
comparison
equal deleted inserted replaced
-1:000000000000 0:30a433a94a9a
1 \documentclass[a4j,12pt]{jreport}
2 \usepackage[dvipdfmx]{graphicx}
3 \usepackage{mythesis}
4 \usepackage{multirow}
5 \usepackage{here}
6 \usepackage{listings}
7 \lstset{
8 language={C},
9 basicstyle={\footnotesize\ttfamily},
10 identifierstyle={\footnotesize},
11 commentstyle={\footnotesize\itshape},
12 keywordstyle={\footnotesize\bfseries},
13 ndkeywordstyle={\footnotesize},
14 stringstyle={\footnotesize\ttfamily},
15 frame={tb},
16 breaklines=true,
17 columns=[l]{fullflexible},
18 numbers=left,
19 xrightmargin=0zw,
20 xleftmargin=3zw,
21 numberstyle={\scriptsize},
22 stepnumber=1,
23 numbersep=1zw,
24 lineskip=-0.5ex
25 }
26 \def\lstlistingname{リスト}
27 \def\lstlistlistingname{リスト目次}
28 \setlength{\itemsep}{-1zh}
29 \title{CbC 言語による OS 記述}
30 \icon{
31 \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf} %%元は 642じゃなくて842
32 }
33 \year{平成28年度 卒業論文}
34 \belongto{琉球大学工学部情報工学科}
35 \author{135756F 宮城 光希 \\ 指導教員 {河野 真治} }
36 %%
37 %% プリアンブルに記述
38 %% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
39 %%
40 \makeatletter
41 \newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
42 \newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
43 \makeatother
44 \setlength\abovecaptionskip{0pt}
45
46 \begin{document}
47
48 % タイトル
49 \maketitle
50 \baselineskip 17pt plus 1pt minus 1pt
51
52 \pagenumbering{roman}
53 \setcounter{page}{0}
54
55 \tableofcontents % 目次
56 \listoffigures % 図目次
57 %\listoftables % 表目次
58 \lstlistoflistings
59
60 %以下のように、章ごとに個別の tex ファイルを作成して、
61 % main.tex をコンパイルして確認する。
62 %章分けは個人で違うので下のフォーマットを参考にして下さい。
63
64 % はじめに
65 \input{chapter1.tex}
66
67 % 基礎概念
68 \input{chapter2.tex}
69
70 % 実験
71 \input{chapter3.tex}
72
73 % 実装
74 \input{chapter4.tex}
75
76 % 評価
77 \input{chapter5.tex}
78
79 % 結論
80 \input{chapter6.tex}
81
82 % 参考文献
83 \input{bibliography.tex}
84
85 % 謝辞
86 \input{thanks.tex}
87
88 \appendix
89 % 付録
90 %\input{appendix.tex}
91
92 \end{document}