9
|
1 \documentclass[a4j,12pt]{jreport}
|
|
2 %\usepackage[dvips]{graphicx}
|
|
3 \usepackage[dvipdfmx]{graphicx}
|
|
4 \usepackage{bmpsize}
|
|
5 \usepackage{mythesis}
|
|
6 \usepackage{multirow}
|
|
7 \usepackage{here}
|
|
8 \usepackage{listings}
|
|
9 \usepackage{comment}
|
|
10 \usepackage{caption}
|
|
11 \usepackage{url}
|
|
12
|
|
13 \lstset{
|
|
14 language={C},
|
|
15 basicstyle={\footnotesize\ttfamily},
|
|
16 identifierstyle={\footnotesize},
|
|
17 commentstyle={\footnotesize\itshape},
|
|
18 keywordstyle={\footnotesize\bfseries},
|
|
19 ndkeywordstyle={\footnotesize},
|
|
20 stringstyle={\footnotesize\ttfamily},
|
|
21 frame={tb},
|
|
22 breaklines=true,
|
|
23 columns=[l]{fullflexible},
|
|
24 numbers=left,
|
|
25 xrightmargin=0zw,
|
|
26 xleftmargin=3zw,
|
|
27 numberstyle={\scriptsize},
|
|
28 stepnumber=1,
|
|
29 numbersep=1zw,
|
|
30 lineskip=-0.5ex
|
|
31 }
|
|
32
|
|
33 \def\lstlistlistingname{リスト目次}
|
|
34
|
|
35 \setlength{\itemsep}{-1zh}
|
11
|
36 \title{Gears OS UEFI 対応}
|
9
|
37 \icon{
|
|
38 \includegraphics[width=50mm]{fig/ryukyu.pdf}
|
|
39 }
|
|
40 \year{令和2年度 卒業論文}
|
|
41 \belongto{琉球大学工学部工学科知能情報コース}
|
|
42 \author{175701G 氏名 {奥田 光希}\\ 指導教員 : {河野 真治} }
|
|
43
|
|
44 \makeatletter
|
|
45 \renewcommand{\lstlistlistingname}{ソースコード目次}
|
|
46 \newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
|
|
47 \newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
|
|
48 \makeatother
|
|
49 \setlength\abovecaptionskip{0pt}
|
|
50
|
|
51 \begin{document}
|
|
52
|
|
53 \maketitle %タイトル
|
|
54 \baselineskip 17pt plus 1pt minus 1pt
|
|
55
|
|
56 \setcounter{page}{0}
|
|
57
|
|
58 \tableofcontents % 目次
|
|
59 \listoffigures % 図目次
|
|
60 \listoftables % 表目次
|
|
61 \lstlistoflistings
|
|
62
|
|
63 %%%%%%%%%%%%
|
10
|
64 % 要旨
|
|
65 %%%%%%%%%%%%
|
|
66 \input{./chapter/introduction.tex}
|
|
67
|
|
68 %%%%%%%%%%%%
|
|
69 % Raspberry Pi上のGearsOS
|
|
70 %%%%%%%%%%%%
|
|
71 \input{./chapter/chapter2.tex}
|
|
72
|
|
73 %%%%%%%%%%%%
|
|
74 % CbC_GCC
|
|
75 %%%%%%%%%%%%
|
|
76 \input{./chapter/chapter3.tex}
|
|
77
|
9
|
78 %%%%%%%%%%%%
|
10
|
79 % UEFI
|
|
80 %%%%%%%%%%%%
|
|
81 \input{./chapter/chapter4.tex}
|
9
|
82
|
10
|
83 %%%%%%%%%%%%
|
|
84 % bootloader
|
|
85 %%%%%%%%%%%%
|
|
86 \input{./chapter/chapter5.tex}
|
|
87
|
|
88 %%%%%%%%%%%%
|
|
89 % 今後の課題
|
|
90 %%%%%%%%%%%%
|
|
91 \input{./chapter/chapter6.tex}
|
|
92
|
|
93
|
|
94
|
|
95
|
9
|
96
|
|
97 %%%%%%%%%%%%
|
|
98 % 参考文献
|
|
99 %%%%%%%%%%%%
|
|
100
|
|
101 \input{./chapter/bibitem.tex}
|
|
102
|
|
103 %%%%%%%%%%%%
|
|
104 % 謝辞
|
|
105 %%%%%%%%%%%%
|
|
106
|
|
107 \input{./chapter/thanks.tex}
|
|
108
|
|
109 \end{document}
|