-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.tex
84 lines (69 loc) · 2.6 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
% pdfLaTeX
% This template was made based on the template Word file distributed by NAIST,
% and made to be visually as similar as possible to the original template.
% For this reason the space lengths and layouts are set manually by directly indicating them.
% The font in the original Word file is Times New Roman,
% whereas the PDF output seems to be written in Computer Modern.
% This file uses LaTeX's default Computer Modern,
% but users may probably specify another font,
% since there is no specification by the format.
\documentclass[a4paper, total={14.5cm, 20.5cm}, 12pt]{article}
\usepackage{naist}
%%%%% TITLE PAGES SETTING %%%%%
\title{Theoretical Studies on Low-Speed Calculation Algorithms of $\pi$ Utilizing the Sun and the Moon} % Write your title
\author{Hanako Sentan} % Write your full name
\date{\today} % Change this to the appropriate submission date
\thesistype{Master's Thesis} % or Doctoral Dissertation
\program{Information Science and Engineering}
% or also:
% Biological Science,
% Materials Science and Engineering,
% Data Science,
% Bionanotechnology,
% Intelligent Cyber-Physical Systems,
% Computational Biology
\supervisor{XXX} % Write your supervisor's name here.
% Change naist.sty if you want to change the title (Prof. by default)
\laboratory{xxx} % Write your lab's name here
\division{Information Science} % or Biological Science, Materials Science
\degree{Master of Engineering} % or Science, Biological Science
\keywords{$\pi$, astronomy, mathematics, computer, algorithm} % Write your thesis's keywords
% Don't forget to add your thesis/dissetation committee members' name and affiliation
% in naist.sty that is to appear in the second page.
%%%%% END OF THE TITLE PAGES SETTING %%%%%
\begin{document}
\maketitle
\makefrontpage
\pagenumbering{roman}
\makeabstractpage
\input{abstract}
\makekeywords
\clearpage
\tableofcontents
\clearpage
\listoffigures
\listoftables
\clearpage
% Contents
\pagenumbering{arabic}
\input{ch1}
\input{ch2}
\input{ch3}
\input{acknowledgement}
\clearpage
\bibliographystyle{ieeetr}
% Citation style is not specified in the format given by NAIST.
% Change the bibliography style following your specialization's conventions.
% See also: https://www.overleaf.com/learn/latex/Bibtex_bibliography_styles
% For NLP, you may want to use ACL's format; in that case,
% download acl.bst and add it to the project directory,
% and specify the bst file name in \bibliographystyle{}.
\bibliography{reference}
\clearpage
\appendix
\section*{Appendices}
\addcontentsline{toc}{section}{Appendices}%
\renewcommand*{\thesubsection}{\Alph{subsection}}
\input{ap1}
\input{ap2}
\end{document}