Theses, Books, Title pagesAdditional pages in the start/end of a thesis template

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Additional pages in the start/end of a thesis template

Post by Johannes_B »

Code: Select all

\cleardoublepage
\addtotoc{Pulications}
\lhead{Pulications}
\chapter{Publications} 
first publication here
\cleardoublepage
\lhead{Figures}
\listoffigures
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

PhDToBE
Posts: 10
Joined: Tue Mar 28, 2017 3:29 pm

Additional pages in the start/end of a thesis template

Post by PhDToBE »

For some reason that's showing two listings in the toc.

But this simply worked:

Code: Select all

\cleardoublepage
\chapter{Publications} 
first publication here
\cleardoublepage
I'm still confused about the algorithms issue, it's not indexing properly, the page is toc is linked to the list of tables which is right after algorithms, do you recommend another package?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Additional pages in the start/end of a thesis template

Post by Johannes_B »

You need to clear the page, use lhead, add the toc entry and then output the list.

By now i am pretty confused, as there are different topics going on in one thread.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
PhDToBE
Posts: 10
Joined: Tue Mar 28, 2017 3:29 pm

Additional pages in the start/end of a thesis template

Post by PhDToBE »

Code: Select all

\cleardoublepage
\lhead{\emph{List of Algorithms}}
\listofalgorithms 
\addtotoc{List of Algorithms} % Add the "Abstract" page entry to the Contents
\cleardoublepage
This did the trick. All problems solved. Thanks a lot!

I'm just being a little greedy here with one last question. Is it possible to add foreign languages in the current settings with pdflatex?

Code: Select all

% Masters/Doctoral Thesis 
% LaTeX Template
% Version 1.43 (17/5/14)
\documentclass[11pt, oneside]{Thesis} % The default font size and one-sided printing (no margin offsets)
If not I will have to go down the \usepackage{pdfpages} route.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Additional pages in the start/end of a thesis template

Post by Johannes_B »

First the toc entry, list afterwards!

Since your other language is arabic, use pdfpages
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
PhDToBE
Posts: 10
Joined: Tue Mar 28, 2017 3:29 pm

Additional pages in the start/end of a thesis template

Post by PhDToBE »

Thanks a lot Johannes
Post Reply