Theses, Books, Title pagesmasters-doctoral-thesis divide to two parts

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
Hesham
Posts: 6
Joined: Thu Apr 25, 2019 11:08 am

masters-doctoral-thesis divide to two parts

Post by Hesham »

Hi,
In the template (masters-doctoral-thesis) is it possible to divide the chapters to two parts. Like (Part 1) contains chapters from 1 to 4, and (Part 2) contains chapters from 4 to 8. This needs to be reflected in the table of contents, and two head line (part 1, part 2) with some few text after each one.
Thanks
Hesham

masters-doctoral-thesis
Parts

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

masters-doctoral-thesis divide to two parts

Post by user22741 »

Simply insert `\part`s :
\documentclass{MastersDoctoralThesis}

\begin{document}

\tableofcontents

\part{part I}

\chapter{1}

\chapter{2}

\chapter{3}

\chapter{4}

\part{part II}

\chapter{5}

\chapter{6}

\chapter{7}

\end{document}
Screen Shot 2019-04-25 at 13.24.46.png
Screen Shot 2019-04-25 at 13.24.46.png (18.7 KiB) Viewed 7111 times
Hesham
Posts: 6
Joined: Thu Apr 25, 2019 11:08 am

masters-doctoral-thesis divide to two parts

Post by Hesham »

Thanks, That was easy. Thanks for your time.
user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

masters-doctoral-thesis divide to two parts

Post by user22741 »

Was my pleasure! Happy TeXing!
user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

masters-doctoral-thesis divide to two parts

Post by user22741 »

Simply insert `\part`s :

Code: Select all

\documentclass{MastersDoctoralThesis}

\begin{document}

\tableofcontents

\part{part I}

\chapter{1}

\chapter{2}

\chapter{3}

\chapter{4}

\part{part II}

\chapter{5}

\chapter{6}

\chapter{7}

\end{document}
Post Reply