Theses, Books, Title pagesMasters/Doctoral Thesis Header Issues

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
mgo4107
Posts: 11
Joined: Sun Oct 04, 2020 7:02 pm

Masters/Doctoral Thesis Header Issues

Post by mgo4107 »

After solving the issue - PAGEBREAK after Chapter - in Masters/Doctoral Thesis with


\documentclass{book}
\begin{document}
\chapter{Heading on the page}
Text

\begingroup
% no newpage
\let\cleardoublepage\relax
%\renewcommand{\cleardoublepage}{}
\chapter{Heading one the same page}
Text
\endgroup

\chapter{Heading after at least one page break}
Text
\end{document}



%headsepline, % Uncomment to get a line under the header
is not working anymore.

and how can I disable e.g. Chapter 5. Examples in the header.I just want on every "normal" page with exception of TOC, Nomenclature etc.) a line as header separator and just on the right side the page number.

BTW: You can the roman page number for TOC etc. be changed from e.g. ii to II (UPPERCASE)?

Many thanks for your help.
Cheers Michael

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Bartman
Posts: 366
Joined: Fri Jan 03, 2020 2:39 pm

Masters/Doctoral Thesis Header Issues

Post by Bartman »

Please use the code button or the code tags for multi-line source code.

Off-topic:
mgo4107 wrote:BTW: You can the roman page number for TOC etc. be changed from e.g. ii to II (UPPERCASE)?
That would also be a topic of its own.

Add

Code: Select all

% source: book.cls
\makeatletter
\renewcommand\frontmatter{%
    \cleardoublepage
  \@mainmatterfalse
  \pagenumbering{Roman}}% changed
\makeatother
to the preamble.
Post Reply