because LaTeX matters

Writing a thesis in latex.

Writing a thesis is a time-intensive endeavor. Fortunately, using LaTeX, you can focus on the content rather than the formatting of your thesis. The following article summarizes the most important aspects of writing a thesis in LaTeX, providing you with a document skeleton (at the end) and lots of additional tips and tricks.

Document class

The first choice in most cases will be the report document class:

See here for a complete list of options. Personally, I use draft a lot. It replaces figures with a box of the size of the figure. It saves you time generating the document. Furthermore, it will highlight justification and hyphenation errors ( Overfull \hbox ).

Check with your college or university. They may have an official or unofficial template/class-file to be used for writing a thesis.

Again, follow the instructions of your institution if there are any. Otherwise, LaTeX provides a few basic command for the creation of a title page.

maketitle

Use \today as \date argument to automatically generate the current date. Leave it empty in case you don’t want the date to be printed. As shown in the example, the author command can be extended to print several lines.

For a more sophisticated title page, the titlespages package has a nice collection of pre-formatted front pages. For different affiliations use the authblk package, see here for some examples.

Contents (toc/lof/lot)

Nothing special here.

The tocloft package offers great flexibility in formatting contents. See here for a selection of possibilities.

Often, the page numbers are changed to roman for this introductory part of the document and only later, for the actual content, arabic page numbering is used. This can be done by placing the following commands before and after the contents commands respectively.

LaTeX provides the abstract environment which will print “Abstract” centered as a title.

abstract

The actual content

The most important and extensive part is the content. I strongly suggest to split up every chapter into an individual file and load them in the main tex-file.

In thesis.tex:

In chapter1.tex:

This way, you can typeset single chapters or parts of the whole thesis only, by commenting out what you want to exclude. Remember, the document can only be generated from the main file (thesis.tex), since the individual chapters are missing a proper LaTeX document structure.

See here for a discussion on whether to use \input or \include .

Bibliography

The most convenient way is to use a bib-tex file that contains all your references. You can download bibtex items for articles, books, etc. from Google scholar or often directly from the journal websites.

Two packages are commonly used to personalize bibliographies, the newer biblatex and the natbib package, which has been around for many years. These packages offer great flexibility in customizing the look of a bibliography, depending on the preference in the field or the author.

Other commonly used packages

  • graphicx : Indispensable when working with figures/graphs.
  • subfig : Controlling arrangement of several figures (e.g. 2×2 matrix)
  • minitoc : Adds mini table of contents to every chapter
  • nomencl : Generate and format a nomenclature
  • listings : Source code printer for LaTeX
  • babel : Multilingual package for standard document classes
  • fancyhdr : Controlling header and footer
  • hyperref : Hypertext links for LaTeX
  • And many more

Minimal example code

I’m aware that this short post on writing a thesis only covers the very basics of a vast topic. However, it will help you getting started and focussing on the content of your thesis rather than the formatting of the document.

Share this:

16 comments.

' src=

8. June 2012 at 7:09

I would rather recommend a documentclass like memoir or scrreprt (from KOMA-Script), since they are much more flexible than report.

' src=

8. June 2012 at 8:12

I agree, my experience with them is limited though. Thanks for the addendum. Here is the documentation: memoir , scrreprt (KOMA script)

' src=

8. June 2012 at 8:02

Nice post Tom. I’m actually writing a two-part (or three) on Writing the PhD thesis: the tools . Feel free to comment, I hope to update it as I write my thesis, so any suggestions are welcome.

8. June 2012 at 8:05

Thanks for the link. I just saw your post and thought I should really check out git sometimes :-). Best, Tom.

8. June 2012 at 8:10

Yes, git is awesome. It can be a bit overwhelming with all the options and commands, but if you’re just working alone, and probably on several machines, then you can do everything effortlessly with few commands.

11. June 2012 at 2:15

That’s what has kept me so far. But I’ll definitely give it a try. Thanks!

' src=

8. June 2012 at 8:08

What a great overview. Thank you, this will come handy… when I finally get myself to start writing that thesis 🙂

8. June 2012 at 14:12

Thanks and good luck with your thesis! Tom.

' src=

9. June 2012 at 4:08

Hi, I can recommend two important packages: lineno.sty to insert linenumbers (really helpful in the debugging phase) and todonotes (allows you to insert todo-notes for things you still have to do.)

11. June 2012 at 0:48

Thanks Uwe! I wrote an article on both, lineno and todonotes . Here is the documentation: lineno and todonotes for more details.

' src=

12. June 2012 at 15:51

Thanks for the post, i’m currently writing my master thesis 🙂

A small note: it seems that subfig is deprecated for the subcaption package: https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Subfloats

12. June 2012 at 16:05

Hey, thanks for the tip. Too bad they don’t say anything in the documentation apart from the fact that the packages are not compatible.

' src=

1. August 2012 at 21:11

good thesis template can be also found here (free): http://enjobs.org/index.php/downloads2

including living headers, empty pages, two-sided with front and main matter as well as a complete structure

2. August 2012 at 11:03

Thanks for the link to the thesis template!

' src=

15. November 2012 at 22:21

Hi Tom, I’m writing a report on spanish in LaTex, using emacs, auctex, aspell (~170pags. ~70 files included by now) and this blog is my savior every time because I’m quite new with all these.

The question: Is there anyway (other than \- in every occurrence) to define the correct hyphenation for accented words (non english characters like é)? I have three o four accented words, about the subject of my report, that occur near 100 times each, across several files, and the \hyphenation{} command can’t handle these.

20. November 2012 at 3:47

I was wondering what packages you load in your preamble. For a better hyphenation (and easier typing), you should use these packages:

See here for more details.

If this doesn’t help, please provide a minimal working example to illustrate the problem.

Thanks, Tom.

Leave a Reply Cancel reply

home | writing | TIL | now | about

Writing a thesis in latex.

This article is a guide to constructing a decent parent file for a thesis or dissertation compiled in Latex. The specific details implemented here, and included in the example files, are those set out by the guidelines for submission to the University of Nottingham, but can be easily amended to suit any sensible requirements.

Considerable attention has been paid to presenting the final document as a PDF file, which keeps the file size manageable (compared to postscript) and allows groovy add-ons such as hyperlinks and back-referencing. However, several hacks are required to attain good functionality from your PDF file and these can give the latex code a mysterious (and messy) appearance in places. While I highly recommend the inclusion of the PDF-related commands, they are not strictly necessary and can be ignored especially if you are new to Latex.

Note for Windows users

The code outlined below was designed and implemented on the unix system at Nottingham. For those of you unfortunate enough to be running a Windows box, a number of problems may arise when using the below code:

First off, not all the packages used will be present and will need to be installed. Probably the easiest way to do this is to google the package name with the extension .sty and save this file in the C:\VTEX\l2e\\ directory of your machine. Note that for the natbib package, you will also need to download the relevant .bst file, which in this case is unsrtnat.bst .

Also, many of the packages that are installed locally may need updating. For instance, the computers I have tested on both have old versions of the geometry and caption packages, which cause Latex to return errors. To resolve these problems, either download the latest versions, or remove the includefoot option from the geometry package and set the bottom margin to 1.4in.

Also, the code for compiling to PDF does not work so well in Windows, and so it is recommended that Windows users use the template without PDF code.

Requirements

The guidelines for theses to be submitted to the University of Nottingham specify that:

  • the document should be presented on single-sided a4 paper and typeset in a double-spaced size 10-12 font;
  • the left-hand margin should be at least 1.5 inches (4cm) to allow for binding;
  • the other three margins should be at least 1 inch (2.5cm).

Other settings such as the way chapter headings are formatted, and whether headers are included, are not specified and are up to the user. In this case, we’ll install headers and tinker with the chapter formatting.

Template files

Here are the template files which this page explains:

  • thesis_without_pdfcode.tex
  • thesis_with_pdfcode.tex

The appearance of both these files on the printed page will be identical; however after compilation into PDF (see the section below) and opening in Adobe Acrobat (or a similar PDF reader), the advantages that come with the PDF format will be apparent.

  • thesis_without_pdfcode.pdf
  • thesis_with_pdfcode.pdf

The rest of this page is devoted to explaining the code in these files.

Document structure

The document begins in a standard and entirely self-explanatory manner.

Preamble: essential packages

Next, the essential packages are loaded:

where the geometry package has been loaded to allow the margins to be set in a neat and consistent way. The non-obvious option includefoot ensures that the footer (which only contains the pagenumber) is included in the page and is thus 1 inch above the bottom of the page. Note that this option is only available in recent versions of the package: if you’re using an old version and can’t/won’t upgrade, then remove the offending option and extend the bottom margin to 1.4in. headheight=13.6pt is included due to to ensure compatibility with the fancyhdr package (and is not required if you don’t use the fancyhdr package). Also quite essential is the natbib package:

where the various options ensure that references appear in the document as:

…boiled dog can do maths claims experimenter [10,12,15-18].

Alternative referencing styles are easily implemented, see the natbib help file for more details. In fact, to use the natbib package, you’ll have to read at least a few lines of the help file so you understand the difference between \citet and \citep , and I insist you do that now.

Preamble: custom captions (optional)

We now set the figure captions to be elegant and dignified:

Note that early versions of this package don’t support the margin= and tableposition= options; in this case, these trimmings will have to be ignored.

Preamble: custom fonts (optional)

You can also choose an alternative font for both the text and the mathematical characters. This can be achieved by:

Aside from mathpazo , there are several other fonts available, such as chancery , palatino and times (all loaded in the same way).

Preamble: fancy headers (optional)

Feeling a little devil-may-care? If so, you’ll probably want to install some elegant headers along each page. This is easily achieved through the fancyhdr package:

The final complicated-looking three lines simply ensure that the headings for appendices are formatted correctly. (Without these lines, what should read “Appendix A” is set as “Chapter A”.)

Preamble: customised chapter/section headings (optional)

We now make use of several customisation options that are bundled with the sectsty package.

These alter the appearance of the first page of each chapter to have a centred title, with the word “chapter” set in small capitals immediately above. Feel free to employ your own individual and highly refined tastes here in choosing your own chapter/section settings.

Preamble: pdf options (optional)

If you want to publish your thesis on the internet, or even just to email it to someone, then you’ll want to store it in the ubiquitous PDF format. Doing so offers some neat facilities, such as hyperlinking, which are implemented by the hyperref package:

There are various other options you can pass to your favourite PDF reader via the \hypersetup command, such as pdftitle , pdfauthor and pdfsubject ; however, they’re not really essential. Note that the hyperlink colours have all been set to black for consistent printing. Should you want to distribute your thesis over the web, then it would be advisable to set these colours to red or something similarly vibrant and exciting.

Things get a little messy now as a hack is required to ensure the hyperlinks actually jump to the right place.

No need to worry about this code, let’s just move straight on.

Preamble: page layout

We now set various parameters to alter the general page layout:

The first two of these commands alter the paragraph formatting so that new paragraphs are not indented but separated from the previous one by a small amount of whitespace; the third sets the line spacing. The sharp-eyed among you will notice the discrepancy between our chosen line-spacing and that dictated by the university guidelines. However, no matter how poor your eyesight is, you’ll quickly appreciate that true double line-spacing (set with \renewcommand(\baselinestretch}{2} ) looks rubbish. In addition, Nottingham University are perfectly happy to accept theses set with the above line-spacing, which is more pleasing to the eye.

Some final settings:

Set which chapters to include when Latex is next run. The advantage of this method is that all your cross-references are remembered and Latex does not spit out loads of warnings.

Main matter

We now begin the document in earnest and define a suitable title:

followed by a dedication:

We now construct an abstract:

some acknowledgements:

and a contents page:

Now, we alter the pagenumbering to arabic and point to the relevant chapter files:

All your chapter files should be included here; to save time when editing, use the \includeonly command to specify which chapters to compile.

Finally, we make sure there is a link to the references section in the table of contents and reference the correct bibiography file (which in this case is called bibliography.bib ).

And there we have it: a complete thesis parent file that not only looks good on the printed page, but is fully functional and hyperlinked in PDF format.

Compiling to PDF

Whether you’ve included all the red PDF commands or not, you can convert your TEX file to PDF by running (in unix):

The additional argument to ps2pdf is required as the default paper size is US Letter. Note that you will probably need to bibtex your thesis file before running latex for the final time.

For Windows, first open a command window by going Start->Run and entering cmd . Provided MiKTeX and GhostScript are correctly installed then the necessary commands are:

The syntax for ps2pdf is slightly different in Windows compared to Unix - and note that the output pdf filename MUST be specified, else the ps file is overwritten and corrupted.

Something wrong? Suggest an improvement or add a comment (see article history ) Tagged with: latex Filed in: guides

Previous: Tutorial: the complex Ginzburg-Landau equation Next: Following log files with tail -f

Copyright © 2005-2024 David Winterbottom Content licensed under CC BY-NC-SA 4.0 .

LaTeX Resources for Graduate Students: Formatting of theses and dissertations

  • BibTeX reference format
  • BibTeX command
  • LaTeX bibliography file
  • LaTeX editors and compilers
  • Sample LaTeX file with bibliography
  • Sample LaTeX file without bibliography
  • Formatting of theses and dissertations

Formatting and structure

The Cornell Graduate School has become increasingly flexible about the formatting of theses and dissertations.  There now are only seven core requirements . For the structure of theses and dissertations here is a list of required and recommended sections .

Latex template

Among the available thesis and dissertation templates provided by the Graduate School is also a LaTeX template (ZIP archive). This template has been uploaded to Overleaf and placed in the Cornell template directory . This template contains a small fix to avoid an error message about \ifpdf .

  • << Previous: Sample LaTeX file without bibliography
  • Last Updated: Oct 25, 2022 5:12 PM
  • URL: https://guides.library.cornell.edu/latex

LaTeX document class for writing theses

© 2024. All rights reserved.

Manual: thesis front page

What is it.

The UiT thesis LaTeX template has built-in support for typesetting the standardized front pages for master theses and PhD dissertations as defined by UiT’s current graphical profile. The UiT logos and the default graphical patterns are included as vector graphics (unlike the Microsoft Word templates that are available from UiT’s web pages) to ensure the highest quality result both in print and when published electronically as PDF.

In addition, the UiT thesis LaTeX template allows you to customize the front page by replacing either of the graphical patterns with your own image(s).

How to use it?

The uit-thesis template uses the familiar \maketitle command (from the standard LaTeX book class) to typeset the front page.

The following macros are used to specify the front page text:

Note that the macros above must be specified before \maketitle . Moreover, they should be specified right after \begin{document} , and before \frontmatter and \mainmatter .

which results in the following:

Custom images

The standard graphical pattern on the front page is divided by a diagonal white line into two parts: a triangle (left part) and a trapezoid (right part). The uit-thesis template has support for replacing either both parts by a single image, or replacing either of the parts by a separate image.

The following image customization commands are available:

Title Pages

A title page is the first page of a document and its purpose is to show important information about the work, such as the author(s), title, subtitle, course, supervisor, publisher and date. The title page's job is to clearly display this information at a glance and pull the reader into the document.

front page thesis latex

Formal Book Title Page

This title page template is best suited to books and formal applications, such as in the fields of science or engineering. It features a formal layout with a clear title highlighted by two horizontal rules. A subtitle is available to further describe the work and multiple authors/editors are catered for towards the centre of the page.

  • View Template Information

Vertical Line Title Page

This title page template features a central vertical line which frames the rest of the text on the page. The title is clearly visible in a large bold font and the design also includes a subtitle, author name and publisher information. The title page would be well suited to a book but it can be used for other applications too.

Classic Lined Title Page

This title page template features a classic lined look most suited to a book or other larger work. The title is highlighted with large red all-caps text and a thin rule underneath separates it from the author name and publisher further down the page.

Stylish Title Page

This title page template features a large title and subtitle surrounded by two curly brackets to bring focus to the title and add to the stylish design of the template. The author name is centered below the title and publisher information is seen at the bottom. This makes the template best suited to a book or other large work, but it can be easily adapted to any other usage.

Minimalist Book Title Page

This title page template is best suited for a book. The minimalistic design immediately highlights the title and the use of red further focuses the eye on the core of what the work is about. The subtitle is neatly tucked away under the title to expand on it and the author/publisher information frames the title.

Multi-Purpose Large Font Title Page

This title page template can be used for almost any document type. The title is displayed in a very large font size in a wide grey box to accentuate the subject matter while your details are shown at the bottom in a small section. The box colour can be changed from grey and the template includes a secondary serif font option.

Academic Title Page

This title page is useful for academic works such as assignments, reports, theses or books. The headings can be used to neatly display the institute, course or subject matter of the work. It design is clean with the major feature being two horizontal lines highlighting the title. The template contains code for an alternate layout without a supervisor name and for an institution logo at the bottom of the page.

front page thesis latex

LaTeX Templates Information

General enquiries [email protected]

Most templates licensed under CC BY-NC-SA 4.0

LaTeX Templates is developed in New Zealand

© Creodocs Limited. All Rights Reserved.

Master Thesis Template (PoliTo)

A template for Master's / Bachelor's thesis at Polytechnic of Turin. It is compatible with the latest version of toptesi in Overleaf (2018) as well as the latest one in TeXLive 2019.

Master Thesis Template (PoliTo)

Get in touch

Have you checked our knowledge base ?

Message sent! Our team will review it and reply by email.

Email: 

Gallery — Thesis

Gallery Items tagged Thesis

Show all Gallery Items

Your thesis or dissertation is often the most important single piece of work you’ll produce as a student (whether it be your final year undergraduate research project or your complete Masters / PhD thesis). These templates, many provided by the university themselves as official layout guidelines, include sections for you to add all the relevant author information (your university, department, supervisor, year, etc) along with placeholder chapters for your introduction, background, method, results, conclusion / discussion, references and appendices.

template Master SSE - Hanze University of Applied Sciences

Related Tags

Get in touch.

Have you checked our knowledge base ?

Message sent! Our team will review it and reply by email.

Email: 

IMAGES

  1. Template for LaTeX PhD thesis title page

    front page thesis latex

  2. LaTeX Templates

    front page thesis latex

  3. How to Write a Thesis in LaTeX (Part 5): Customising Your Title Page

    front page thesis latex

  4. Latex Template

    front page thesis latex

  5. Latex Thesis Template For Concordia University Students

    front page thesis latex

  6. [Tex/LaTex] Help designing a Title Page for thesis

    front page thesis latex

VIDEO

  1. 6 Corrections on Bonafide Page

  2. Math Equations in LATEX|SowmyaSuku's Notions

  3. How to write thesis in LaTeX P1

  4. Write a summary in LaTeX

  5. writing thesis with Emacs+AucTex

  6. Sample Thesis in LaTeX (UMS)

COMMENTS

  1. How to Write a Thesis in LaTeX (Part 5): Customising Your Title Page

    In the previous post we looked at adding a bibliography to our thesis using the biblatex package.In this, the final post of the series, we're going to look at customising some of the opening pages. In the first video we made a rather makeshift title page using the \maketitle command and by using an \includegraphics command in the \title command. Although this works, it doesn't give us as much ...

  2. How to Write a Thesis in LaTeX (Part 1): Basic Structure

    The preamble. In this example, the main.tex file is the root document and is the .tex file that will draw the whole document together. The first thing we need to choose is a document class. The article class isn't designed for writing long documents (such as a thesis) so we'll choose the report class, but we could also choose the book class.. We can also change the font size by adding square ...

  3. How to customize my titlepage?

    51. The standard titlepage is quite simple. I am looking for a very complex titlepage and need help customizing my title page. Below a minimal working example: \usepackage[parts,pdfspacing,dottedtoc]{classicthesis} \frontmatter. \begin{document} \pagestyle{scrheadings} %this is the place to set up my cover sheet.

  4. Template for LaTeX PhD thesis title page

    Often universities provide official LaTeX templates for PhD theses. If your university doesn't, here is a template. The template includes the most common elements of a thesis title page: University's or institute's logo. Thesis title. Author's name. Degree the thesis is submitted for. Submission date.

  5. front page of thesis

    1. To produce front page of the thesis a separate .tex file should be created? After reading several already asked question regarding the same I found that for the front page a separate \begin{document} and \end{document} should be used. If this the case then I need to use another \begin{document} and \end{document} for the chapters of my ...

  6. How to Write a Thesis in LaTeX (Part 2): Page Layout

    In the first line we've entered a blank \fancyhead command which clears all the header fields. In the second line we've told LaTeX that we want the text "Thesis title" on the right-hand side of the header for the odd pages and the left for even pages. The third line clears the footer fields using a blank \fancyfoot command.

  7. Create a cover for my thesis

    The important option for geometry is pass, whereas showframe is just for showing that the cover page is centered on the page. If you already use geometry, just set its options and remove pass. A bird's eye view. The title page

  8. Writing a thesis in LaTeX

    The following article summarizes the most important aspects of writing a thesis in LaTeX, providing you with a document skeleton (at the end) and lots of additional tips and tricks. Document class. The first choice in most cases will be the report document class: 1. \documentclass[options]{report} See here for a complete list of options.

  9. How to Write a Thesis in LaTeX pt 5

    In this video series, we show you how to create a thesis using LaTeX. In this video we look at customising the title page and abstract.You can open the thesi...

  10. PDF Making an official front page for your master's thesis

    Making an official front page for your master's thesis Dag Langmyhr ([email protected])2nd May 2024 Abstract The LATEX package uiomasterfp gives you an official University of Oslo (UiO) front page for your master's thesis.1 It can also produce a front page for a UiO bachelor's thesis and various other kinds of documents.

  11. Writing a Thesis in LaTeX

    The guidelines for theses to be submitted to the University of Nottingham specify that: the document should be presented on single-sided a4 paper and typeset in a double-spaced size 10-12 font; the left-hand margin should be at least 1.5 inches (4cm) to allow for binding;

  12. How to create a custom front/title page of a thesis?

    To get two titlepages, we can simply do the \makeititle twice and change the language and title in between. This wouldn't work for the normal \maketitle command cause it is programmed to "forget" the \maketitle definition after it is used. Code: \documentclass[sve,a4paper]{article} \usepackage[exjobb]{KTHEEtitlepage}

  13. Formatting of theses and dissertations

    Latex template Among the available thesis and dissertation templates provided by the Graduate School is also a LaTeX template (ZIP archive). This template has been uploaded to Overleaf and placed in the Cornell template directory .

  14. Template for a Masters or Doctoral Thesis

    Abstract. This LaTeX template is used by many universities as the basis for thesis and dissertation submissions, and is a great way to get started if you haven't been provided with a specific version from your department. This version of the template is provided by Vel at LaTeXTemplates.com, and is already loaded in Overleaf so you can start ...

  15. thesis front page · uit-thesis

    The uit-thesis template uses the familiar \maketitle command (from the standard LaTeX book class) to typeset the front page. The following macros are used to specify the front page text: Required? Note that the macros above must be specified before \maketitle . Moreover, they should be specified right after \begin{document}, and before ...

  16. typography

    I'm looking for examples of Title Pages: complex - have different formatting; beautiful and awesome; ... \begin{abstract} An abstract is a brief summary of a research article, thesis, review, conference proceeding or any in-depth analysis of a particular subject or discipline, and is often used to help the reader quickly ascertain the paper's ...

  17. LaTeX Templates

    This title page template features a large title and subtitle surrounded by two curly brackets to bring focus to the title and add to the stylish design of the template. The author name is centered below the title and publisher information is seen at the bottom. This makes the template best suited to a book or other large work, but it can be ...

  18. Front Cover Page design(template) for Academic assignments with a

    The following Latex project for Front Cover page design is shared from my overleaf account:https://www.overleaf.com/read/gpssvfvkfjphUse the above link and m...

  19. Templates

    A simple and minimalistic template for La Trobe University assignments. Fill in the custom details in main.tex, then create and include pages. Simple template for the cover of academic documents such as dissertations, project reports or theses. A basic sample report title page for an assignment or a project in an university context.

  20. Help on creating a University thesis cover

    It takes an optional argument defining the thesis type (should be either doctoral or master ). The mandatory argument can be used to specify the specialty. If the value is security the "Doctoral Degree in Law and Security" is used. The other macro I defined is \mysupervisor to directly specify the supervisor.

  21. Master Thesis Template (PoliTo)

    Creative Commons CC BY 4.0. Abstract. A template for Master's / Bachelor's thesis at Polytechnic of Turin. It is compatible with the latest version of toptesi in Overleaf (2018) as well as the latest one in TeXLive 2019. Tags. International Languages University Thesis Italian Politecnico di Torino. Find More Modelli.

  22. Basic thesis template

    This LaTeX template includes a title page, a declaration, an abstract, acknowledgements, table of contents, list of figures/tables, a dedication, and example chapters and sections. This template was originally published on ShareLaTeX and subsequently moved to Overleaf in November 2019. This Thesis LaTeX template is an ideal starting point for ...

  23. Gallery

    Some graduate students in our lab have submitted their thesis to NYCU library with this template. This template supports English TOC & 中文目錄. You can change this by uncommenting a command. KUN-RU WU. Unofficial La Trobe University Template. This thesis is based on the classic thesis template made by André Miede (https://bitbucket.org ...