Mercurial > hg > Papers > 2020 > riono-thesis
annotate FinalThesis/main.tex @ 30:ca4a813f3b54
update appendix
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 16 Feb 2020 01:10:43 +0900 |
parents | f26ac86036ba |
children | 77951f2269aa |
rev | line source |
---|---|
1 | 1 \documentclass[a4j,12pt]{jreport} |
2 | 2 %\usepackage[dvips]{graphicx} |
3 \usepackage[dvipdfmx]{hyperref,graphicx} | |
1 | 4 \usepackage{mythesis} |
5 \usepackage{multirow} | |
6 \usepackage{here} | |
4 | 7 \usepackage{cite} |
6 | 8 \usepackage{url} |
29 | 9 \usepackage{comment} |
21
fa92cb03dac1
update chapter3 and add Blocking UpdateRectangle image
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
6
diff
changeset
|
10 \usepackage{scalefnt} |
24
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
11 \usepackage{listings} |
29 | 12 \usepackage{caption} |
30 | 13 \usepackage{layout} |
14 \usepackage{geometry} | |
15 | |
4 | 16 |
2 | 17 |
18 \usepackage{pxjahyper} | |
19 \hypersetup{ | |
20 colorlinks=false, % リンクに色をつけない設定 | |
21 bookmarks=true, % 以下ブックマークに関する設定 | |
22 bookmarksnumbered=true, | |
23 pdfborder={0 0 0}, | |
24 bookmarkstype=toc | |
25 } | |
26 | |
27 | |
1 | 28 \setlength{\itemsep}{-1zh} |
6 | 29 \title{画面配信システム TreeVNC の マルチキャスト導入} |
1 | 30 \icon{ |
2 | 31 \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf} |
1 | 32 } |
2 | 33 \year{令和元年度 卒業論文} |
1 | 34 \belongto{琉球大学工学部情報工学科} |
2 | 35 \author{165729B 安田亮 \\ 指導教員 {河野 真治} } |
1 | 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} | |
24
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
47 \lstset{ |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
48 language=java, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
49 tabsize=2, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
50 numbers=left, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
51 frame=single, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
52 basicstyle={\ttfamily\footnotesize}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
53 identifierstyle={\footnotesize}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
54 commentstyle={\footnotesize\itshape}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
55 keywordstyle={\footnotesize\bfseries}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
56 ndkeywordstyle={\footnotesize}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
57 stringstyle={\footnotesize\ttfamily}, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
58 breaklines=true, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
59 captionpos=t, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
60 columns=[l]{fullflexible}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
61 xrightmargin=0zw, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
62 xleftmargin=1zw, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
63 aboveskip=1zw, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
64 numberstyle={\scriptsize}, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
65 stepnumber=1, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
66 numbersep=0.5zw, % |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
67 lineskip=-0.5ex, |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
68 } |
fce3f9c18d8d
add src and update chapter4
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
23
diff
changeset
|
69 \def\lstlistingname{ソースコード} |
28 | 70 \renewcommand{\lstlistlistingname}{ソースコード目次} |
1 | 71 |
72 % タイトル | |
73 \maketitle | |
74 \baselineskip 17pt plus 1pt minus 1pt | |
75 | |
76 \pagenumbering{roman} | |
77 \setcounter{page}{0} | |
78 | |
4 | 79 \tableofcontents % 目次ssdf |
1 | 80 \listoffigures % 図目次 |
81 \listoftables % 表目次 | |
28 | 82 \lstlistoflistings |
4 | 83 |
1 | 84 %以下のように、章ごとに個別の tex ファイルを作成して、 |
85 % main.tex をコンパイルして確認する。 | |
86 %章分けは個人で違うので下のフォーマットを参考にして下さい。 | |
87 | |
88 % はじめに | |
89 \input{chapter1.tex} | |
90 | |
91 % 基礎概念 | |
92 \input{chapter2.tex} | |
93 | |
23
e18aecd16936
add new chapter4 and add coexistence img
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
21
diff
changeset
|
94 % Blockingの実装 |
1 | 95 \input{chapter3.tex} |
96 | |
4 | 97 |
1 | 98 % 他の論文との比較 |
23
e18aecd16936
add new chapter4 and add coexistence img
riono <e165729@ie.u-ryukyu.ac.jp>
parents:
21
diff
changeset
|
99 \input{chapter4.tex} |
1 | 100 |
101 % 今後の課題 | |
102 \input{future.tex} | |
103 | |
6 | 104 |
105 | |
1 | 106 % 参考文献 |
30 | 107 %\def\line{−\hspace*{-.7zw}−} |
29 | 108 \nocite{*} |
109 \bibliographystyle{junsrt} | |
110 \bibliography{reference} | |
111 \addcontentsline{toc}{chapter}{参考文献} | |
1 | 112 |
113 % 謝辞 | |
114 \input{thanks.tex} | |
115 | |
116 % 付録 | |
30 | 117 \input{appendix.tex} |
1 | 118 |
4 | 119 |
120 | |
121 | |
122 | |
1 | 123 \end{document} |