snoopy831002 / nctu-thesis-latex

A LaTeX template for writing thesis in NCTU.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NCTU Thesis Template for LaTeX

nctu-thesis-latex is a LaTeX template forked from chiehmin/nctu-thesis. Some improvements are added and the format is fine-tuned to conform to the thesis specification[1] of National Chiao Tung University.

Sample

Structure

.
├── abstracts
│   ├── ch.tex   <- write Chinese abstract here
│   └── en.tex   <- write English abstract here
├── chapters
│   ├── introduction.tex   <-
│   ├── ......             <- thesis content goes here
│   └── conclusion.tex     <-
├── covers
│   ├── front.tex    <- no need for change except for customization
│   └── inside.tex   <- no need for change except for customization
├── figures
│   ├── logo.jpg
│   └── ......   <- put figures here
├── pdf
│   └── ......   <- put external PDF here
├── fonts
│   └── ......
├── reference.bib   <- manage BibTeX reference here
└── thesis.tex   <- main file for configurations

Configuration

The following configurations can all be done in thesis.tex.

  1. Fill in the thesis information.
\def\universityCh{國立交通大學}
\def\universityEn{National Chiao Tung University}
\def\collegeCh{資訊學院}
\def\collegeEn{College of Computer Science}
\def\instituteCh{資訊科學與工程研究所}
\def\instituteEn{Institute of Computer Science and Engineering}
\def\degree{Master in Computer Science}
\def\titleCh{基於卷積神經網路的論文自動生成技術}
\def\titleEn{A CNN-based Automatic Thesis Generation Technique}
\def\studentCh{王大明}
\def\studentEn{Ta-Ming Wang}
\def\advisorCh{吳小松}
\def\advisorEn{Xiao-Sung Wu}
\def\defenseYear{2017}\def\defenseYearROC{106}
\def\defenseMonth{9}\def\defenseMonthEn{September}
  1. There is a flag called paper which can help you switch the format between paper submission and electronic submission.
\settoggle{paper}{false} % set to true for paper submission
  • Paper submission
    • Margin: 2.5cm-2.5cm-3cm-2cm (except front cover)
    • Without watermark
    • With required documents (i.e., 論文審訂書, 圖書館電子授權書)
  • Electronic submission
    • Margin: 2.5cm-2.5cm-2.5cm-2.5cm
    • With watermark
  1. Update the content list once you made any change in chapters/.
\input{chapters/introduction.tex}
\input{chapters/background.tex}
\input{chapters/design.tex}
\input{chapters/implementation.tex}
\input{chapters/evaluation.tex}
\input{chapters/related_work.tex}
\input{chapters/discussion.tex}
\input{chapters/conclusion.tex}
  1. After oral defense, update the paths of required forms and documents.
\includepdf{pdf/certification.pdf}
\includepdf{pdf/authorization.pdf}

Environment

I have only tested this template on Overleaf with XeLaTeX engine. Local LaTeX environment may also work.

Reference

[1] 國立交通大學學位論文格式規範, https://goo.gl/hjESCa

About

A LaTeX template for writing thesis in NCTU.


Languages

Language:TeX 100.0%