forked from jrdndj/fireflyx-docu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
118 lines (87 loc) · 4.99 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
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Version : 2.0
%
% Filename : main.tex
%
% Description : This is the main file for the LaTeX thesis proposal document template.
% The template is intended for use by MSCS students.
%
% It is assumed that you can learn how to use LaTeX on your own.
% Please check/read the following online LaTeX book:
%
% http://en.wikibooks.org/wiki/LaTeX
%
% Author : Florante R. Salvador
%
% Contributors: 1. Karlo Campos
% a. margin settings for DLSU thesis paper
%
% Notes : Please email [email protected] for comments, suggestions, ideas etc.
%
% Reference:
%
%
% History/Updates:
% March 12, 2009 -- created version 1.0 for release to CSC701M (Methods of Research) students
% May 30, 2009 -- updated Title page and Abstract for undergrad ST students
%
% Feb 27, 2015 -- Created Version 2 (major overhaul): changed class to report, created a figures folder,
% removed unnecessary packages, added new comments based on Ethel Ong's slides
%
% Feb 24, 2018 -- Created Version 3
% Reorganized the chapters, i.e., Chapter 3 is now Theoretical Framework and Chapter 4
% is now Research Methodology.
% Included the Research Ethics documents as Appendix A.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{preamble} %-- includes LaTeX source file for the preamble
\usepackage{epigraph}
\usepackage{csquotes}
\usepackage{dirtytalk}
\usepackage{tikz}
\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
%-- include packages, sets the margin sequence, and many more...
%-- your job: check if the settings are suitable for your own printer
\graphicspath{{figures/}} %-- figures is the name of the folder containing images JPG or PN
\begin{document}
\include{title_page} %-- includes LaTeX source file for the Title Page
%-- your job: **EDIT THIS FILE ** to indicate your own title, name, and thesis adviser's name
\include{abstract} %-- this is the Abstract page
%-- your job: **EDIT THIS FILE** to indicate your own abstract
\pagenumbering{roman} %-- this will number pages as i, ii, iii, etc...
\setcounter{page}{2}
\tableofcontents %-- this command is used to generate the Table of Contents
\newpage
\listoffigures %-- this command is used to generate List of Figures
\newpage
\listoftables %-- this command is used to generate List of Tables
\newpage
\pagenumbering{arabic} %-- this will number pages as 1, 2, 3, etc...
\setcounter{page}{1}
\include{chapter_1} %-- includes LaTeX source file for Chapter 1: Research Description
%-- your job: **EDIT THIS FILE** to indicate your own research description
\include{chapter_2} %-- includes LaTeX source file for Chapter 2: Review of Related Literature
%-- your job: **EDIT THIS FILE** to indicate your review of related literature
\include{chapter_3} %-- includes LaTeX source file for Chapter 3: Theoretical Framework
% %-- your job: **EDIT THIS FILE** to indicate your research methodology
\include{chapter_4} %-- includes LaTeX source file for Chapter 4: Research Methodology
% %-- your job: **EDIT THIS FILE** to indicate your research methodology
\include{chapter_5} %-- includes LaTeX source file for Chapter 5: System Design
\include{chapter_6} %-- includes LaTeX source file for Chapter 6: Preliminary Results
\bibliography{sample_bibliography}
\appendix %-- used to specify appendices
\include{appendix_A} %-- includes LaTeX source file for Appendix A
\include{appendix_B}
\include{appendix_C}
\include{appendix_D}
\include{appendix_E}
%-- your job: **CREATE/EDIT** your own source file for the appendices
% \include{appendix_B}
%\bibliographystyle{apacite} %-- specified APA style for bibliograpy
%-- more details about APA style citation can be found in www.ctan.org/tex-archive/biblio/bibtex/contrib/apacite/
%-- bibliographic entries are handled via bibtex; refer to www.bibtex.org for more details
%\bibliography{myreferences}
%-- the file "myreferences.bib" is a sample bibliography (bib) from SIGGRAPH
%-- your job: **CREATE/EDIT** your own bibliography file
\end{document}