-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
157 lines (126 loc) · 5.22 KB
/
thesis.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
\documentclass[doctor,12pt]{styles/iscs-thesis}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% import necessary packages %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{newtxtext,newtxmath} % change font to "Times New Roman"
\usepackage[nottoc]{tocbibind} % Includes "References" in the table of contents
\usepackage[ % Add clickable hyper links to references and TOC
hidelinks,
dvipdfmx,
colorlinks = true,
linkcolor = black,
urlcolor = blue, % turn URL link to blue color
citecolor = black,
anchorcolor = black]{hyperref}
\usepackage[round,sort]{natbib} % author-year style references, *.bib,requires BibTeX format; sort by author name
\usepackage{indentfirst} % the first paragraph also indent with 2 characters
\usepackage[dvipdfmx]{graphicx} % zoom the table/figure to the proper size
\usepackage{bmpsize} % previous dvipdfm option and this to fix pdf figure error
\usepackage[ % Bold the Fig. and Table.
labelfont=bf,
textfont=md]{caption}
\usepackage{threeparttable} % add notes to the table bottom
\usepackage{chngpage}
\usepackage[nobiblatex]{xurl} % long url line breaks
\usepackage{lscape} % landscape full page figures
\usepackage{setspace} % set page for published paper abstract linespace
\usepackage[normalem]{ulem} % better view for underline
\usepackage{amsmath} % package for matrix formular
\usepackage{pifont} % package for special symbol
% \usepackage[left,pagewise]{lineno} % the line numbers for each page
\usepackage[ % the acronym throughput the thesis
toc,
acronym,
nonumberlist]{glossaries}
\makenoidxglossaries
\preto\chapter{\glsresetall} % expand acronyms for first-time use within each chapter
% \usepackage[final]{changes}
% \usepackage[defaultcolor=red]{changes} % change tracking
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\urlstyle{same} % the \url{} links also use Times New Roman font
% \setlength{\parskip}{5pt} % if you need space before each paragraph, open it
\usepackage{geometry} % change the page setting to standard MS Word A4
\geometry{a4paper,left=3.17cm,right=3.17cm,top=2.54cm,bottom=2.54cm}
\setcounter{secnumdepth}{3} % add the subsubsection into contents
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% add Fig. Sx and Table Sx for supplementary section
\newcommand{\appendixsection}{%
\section{Appendix}% Set supplementary section
\setcounter{table}{0}% Reset table counter
\let\oldthetable\thetable% Capture table numbering scheme
\renewcommand{\thetable}{S\oldthetable}% Prefix table number with S
\setcounter{figure}{0}% Reset figure counter
\let\oldthefigure\thefigure% Capture figure numbering scheme
\renewcommand{\thefigure}{S\oldthefigure}% Prefix figure number with S
\let\oldchapter\chapter% Copy \chapter into \oldchapter
\renewcommand{\chapter}{% Update \chapter
\let\thefigure\oldthefigure% Copy \thefigure into \oldthefigure
\let\thetable\oldthetable
\let\chapter\oldchapter% Restore original \chapter
\oldchapter% Call original \chapter
}
}
% 論文の種類とフォントサイズをオプションに
%-------------------
% \etitle{Studies on 3D-based Plant Phenotyping by Multi-scale Data Fusion}
% \jtitle{マルチスケールデータ融合による植物表現型の3次元計測に関する研究}
%
% \eauthor{Haozhou Wang}
% \jauthor{王浩舟}
% \jsupervisor{加藤洋一郎 東京大学教授}
% \jsupervisor{加藤洋一郎}
% \senkou{農学国際専攻(IPADS)}
% \supervisortitle{ 郭威 東京大学准教授}
% \supervisortitle{東京大学教授}
% \date{令和 3 年博士課程入学}
%-------------------
\include{abbreviations.tex}
\begin{document}
% replace the following command in the original template
% \maketitle
\begin{titlepage}
\begin{center}
\vspace*{2.5cm}
{\LARGE Doctoral Thesis (博士論文)}
\vspace*{2cm}
\begin{spacing}{4.5}
\textbf{\Huge Studies on 3D-based plant phenotyping by multi-scale data fusion}
\end{spacing}
\vspace{0.5cm}
\textrm{(マルチスケールデータ融合による植物表現型の3次元計測に関する研究)}
\vspace{7.5cm}
\textrm{\Huge 王 浩舟}
\vspace{0.5cm}
\textrm{\Large Wang~~Haozhou}
\vfill
\end{center}
\end{titlepage}
\pagenumbering{roman}
% \linenumbers
\include{abstract.tex}
\frontmatter %% 前付け
\tableofcontents % 目次
\listoffigures % 図目次
\listoftables % 表目次
%\lstlistoflistings % ソースコード目次
\glsfindwidesttoplevelname
\setglossarystyle{alttree}
\printnoidxglossary[type=acronym, title=List of Abbreviations, toctitle=List of Abbreviations]
%-------------------
\mainmatter %% 本文
\doublespacing
\include{chapter1.tex}
\include{chapter2.tex}
\include{chapter3.tex}
\include{chapter4.tex}
\include{chapter5.tex}
\include{chapter6.tex}
\include{acknowledgement.tex}
%-------------------
\begin{singlespace}
\bibliographystyle{elsarticle-harv} % 参考文献
\bibliography{styles/bibtex} %
\end{singlespace}
%-------------------
\include{publication.tex}
\end{document}