-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
89 lines (70 loc) · 3.5 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
% 独自のコマンド
% ■ アブストラクト
% \begin{jabstract} 〜 \end{jabstract} :日本語のアブストラクト
% \begin{eabstract} 〜 \end{eabstract} :英語のアブストラクト
% ■ 謝辞
% \begin{acknowledgment} 〜 \end{acknowledgment}
% ■ 文献リスト
% \begin{bib}[100] 〜 \end{bib}
\newif\ifjapanese
\japanesetrue % 論文全体を日本語で書く(英語で書くならコメントアウト)
\ifjapanese
% \documentclass[a4j,twoside,openright,11pt]{jreport} % 両面印刷の場合。余白を綴じ側に作って右起こし。 >>bindermode<<
\documentclass[a4j,11pt]{jreport} % 片面印刷の場合。 >>nobindermode<<
\renewcommand{\bibname}{参考文献}
\newcommand{\acknowledgmentname}{謝辞}
\else
\documentclass[a4paper,11pt]{report}
\newcommand{\acknowledgmentname}{Acknowledgment}
\fi
\usepackage{sty/thesis}
\usepackage{ascmac}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{url}
\usepackage{otf}
\usepackage[dvipdfmx]{hyperref}
\bibliographystyle{jplain}
% \bindermode % バインダー用余白設定 >>bindermode<<
% 日本語情報(必要なら)
\jclass {卒業論文} % 論文種別
\jtitle {映像制作現場における\\高解像度映像IP伝送装置の提案と実装} % タイトル。改行する場合は\\を入れる
\juniv {慶應義塾大学} % 大学名
\jfaculty {環境情報学部} % 学部、学科
\jauthor {山中 勇成} % 著者
\jhyear {28} % 平成○年度
\jsyear {2016} % 西暦○年度
\jkeyword {4K, IP映像伝送, 映像配信システム, FPGA} % 論文のキーワード
\jproject {徳田・村井・楠本・中村・高汐・バンミーター・植原・三次・中澤・武田 合同研究プロジェクト} %プロジェクト名
\jdate {2017年1月}
% 英語情報(必要なら)
\eclass {Bachelor's Thesis} % 論文種別
\etitle {Proposal and Implementation of Delivery System for High Resolution Video at Video Production Site} % タイトル。改行する場合は\\を入れる
\euniv {Keio University} % 大学名
\efaculty {Bachelor of Arts in Environment and Information Studies} % 学部、学科
\eauthor {Yusei Yamanaka} % 著者
\eyear {2016} % 西暦○年度
\ekeyword {4K, Video over IP, Video Streaming, FPGA} % 論文のキーワード
\eproject {Tokuda/Murai/Kusumoto/Nakamura/Takashio/Van Meter/Uehara/Mitsugi/Nakazawa/Takeda Labs} %プロジェクト名
\edate {January 2017}
\begin{document}
\ifjapanese
\jmaketitle % 表紙(日本語)
\else
\emaketitle % 表紙(英語)
\fi
\include{section/00_abstract} % アブストラクト。要独自コマンド、include先参照のこと
\tableofcontents % 目次
\listoffigures % 表目次
\listoftables % 図目次
\pagenumbering{arabic}
\include{section/01_introduction}
\include{section/02_video_production}
\include{section/03_implementation}
\include{section/04_evaluation}
\include{section/05_conclusion}
\include{section/90_acknowledgment} % 謝辞。要独自コマンド、include先参照のこと
\include{section/91_bibliography} % 参考文献。要独自コマンド、include先参照のこと
% \appendix
% \include{section/92_appendix} % 付録
\end{document}