comparison paper/final_thesis.tex @ 9:28a504cfdf34

first
author okud
date Tue, 26 Jan 2021 20:50:31 +0900
parents
children 63c082d08136
comparison
equal deleted inserted replaced
8:35f83c3ab381 9:28a504cfdf34
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}
36 \title{Gears OS Devide Driver}
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 %%%%%%%%%%%%
64 % はじめに
65 %%%%%%%%%%%%
66
67 \input{./chapter/introduction.tex}
68
69 %%%%%%%%%%%%
70 % 参考文献
71 %%%%%%%%%%%%
72
73 \input{./chapter/bibitem.tex}
74
75 %%%%%%%%%%%%
76 % 謝辞
77 %%%%%%%%%%%%
78
79 \input{./chapter/thanks.tex}
80
81 \end{document}