kks32 / phd-thesis-template

A LaTeX / XeLaTeX / LuaLaTeX PhD thesis template for Cambridge University Engineering Department (CUED)
http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/ThesisStyle/
MIT License
820 stars 392 forks source link

Adding a chapter #222

Closed hk-singh closed 2 years ago

hk-singh commented 3 years ago

How do I add a new Chapter to the existing project folder?

GR8DAN commented 3 years ago

This seems too simple a question, I hope you didn't mean something else. Anyway, copy how Chapters 1 to 3 are added:

  1. Create a new folder/directory, e.g. called "Chapter4".
  2. Create a new LaTeX file in the new folder/directory, e.g. called "chapter4.tex".
  3. In "thesis.tex" after \include{Chapter3/chapter3} add (or uncomment) \include{Chapter4/chapter4}
  4. Add this LaTeX to the start of "chapter4.tex":
%!TEX root = ../thesis.tex \chapter{My fourth chapter title} %Rest of content