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