This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmainE.tex
92 lines (66 loc) · 1.76 KB
/
mainE.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
90
91
92
%------------------------------------------------------------------------------
\documentclass[master,final,english]{cimt}
% Use "english" option for English thesis.
% \documentclass[master,oneside,english]{cimt}
% List packages here.
\usepackage[dvipdfmx]{graphicx}
\usepackage{url}
\usepackage{layout}
% Title
\etitle{On blahblah}
% A long title is automatically split into lines. Explicit newlines
% can also be specified:
% \etitle{This is a long title\\with a explicit line break}
% Title in Japanese
\jtitle{これこれについて}
% Keywords
% \keywords{creative, informatics}
% Author
\eauthor{Sota Akiba}
% Author in Japanese
\jauthor{秋葉 創太}
% Supervisor
\supervisor{Professor Joichi Hongo}
% Submission. The following line specifies "January 2010."
\handin{2010}{1}
\input preamble.tex
\begin{document}
% Output the cover and the inside cover.
\maketitle
% Frontmatter starts here.
\frontmatter
% Abstract
\begin{eabstract}
\input src/eabst.tex
\end{eabstract}
% Abstract in Japanese
\begin{jabstract}
\input src/jabst.tex
\end{jabstract}
% Acknowledgements (optional) (can be placed in backmatter section)
\begin{acknowledgements}
\input src/ack.tex
\end{acknowledgements}
% Table of Contents
\tableofcontents
% Mainmatter starts here.
\mainmatter
\input src/intro.tex
\input src/body.tex
\input src/concl.tex
% Backmatter starts here.
\backmatter
% Publications
\pubUseLongName % title becomes ``Publications and Research Activities''
\begin{publications}
\input src/publications.tex
\end{publications}
% Bibliography. An example using BibTeX. (Style can be changed.)
\bibliographystyle{junsrt}
\bibliography{main}
% Another example of Bibliography.
% \input src/biblio.tex
% Appendix (optional)
\appendix
\input src/appendix.tex
\end{document}