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}
|
|
8
|
2
|
9
|
|
10 \usepackage{pxjahyper}
|
|
11 \hypersetup{
|
|
12 colorlinks=false, % リンクに色をつけない設定
|
|
13 bookmarks=true, % 以下ブックマークに関する設定
|
|
14 bookmarksnumbered=true,
|
|
15 pdfborder={0 0 0},
|
|
16 bookmarkstype=toc
|
|
17 }
|
|
18
|
|
19
|
1
|
20 \setlength{\itemsep}{-1zh}
|
2
|
21 \title{画面配信システム TreeVNC の マルチキャスト実装}
|
1
|
22 \icon{
|
2
|
23 \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf}
|
1
|
24 }
|
2
|
25 \year{令和元年度 卒業論文}
|
1
|
26 \belongto{琉球大学工学部情報工学科}
|
2
|
27 \author{165729B 安田亮 \\ 指導教員 {河野 真治} }
|
1
|
28 %%
|
|
29 %% プリアンブルに記述
|
|
30 %% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
|
|
31 %%
|
|
32 \makeatletter
|
|
33 \newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
|
|
34 \newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
|
|
35 \makeatother
|
|
36 \setlength\abovecaptionskip{0pt}
|
|
37
|
|
38 \begin{document}
|
|
39
|
|
40 % タイトル
|
|
41 \maketitle
|
|
42 \baselineskip 17pt plus 1pt minus 1pt
|
|
43
|
|
44 \pagenumbering{roman}
|
|
45 \setcounter{page}{0}
|
|
46
|
4
|
47 \tableofcontents % 目次ssdf
|
1
|
48 \listoffigures % 図目次
|
|
49 \listoftables % 表目次
|
|
50
|
4
|
51
|
1
|
52 %以下のように、章ごとに個別の tex ファイルを作成して、
|
|
53 % main.tex をコンパイルして確認する。
|
|
54 %章分けは個人で違うので下のフォーマットを参考にして下さい。
|
|
55
|
|
56 % はじめに
|
|
57 \input{chapter1.tex}
|
|
58
|
|
59 % 基礎概念
|
|
60 \input{chapter2.tex}
|
|
61
|
|
62 % 実験
|
|
63 \input{chapter3.tex}
|
|
64
|
4
|
65
|
1
|
66 % 他の論文との比較
|
|
67 %\input{chapter4.tex}
|
|
68
|
|
69 % 今後の課題
|
|
70 \input{future.tex}
|
|
71
|
|
72 % 参考文献
|
|
73 \input{bibliography.tex}
|
|
74
|
|
75 % 謝辞
|
|
76 \input{thanks.tex}
|
|
77
|
|
78 % 付録
|
|
79 %\input{appendix.tex}
|
|
80
|
4
|
81
|
|
82
|
|
83
|
|
84
|
1
|
85 \end{document}
|