Theses, Books, Title pages ⇒ Title header chapter
Title header chapter
Here in the code the part of newpage, I want to head the name of the chapter and keep the number of the page in the header:
-----------------------------------------------------------------
\chapter{Some }
blablablablablablablabla
blablablablablablablablabla
blablablablablablablablabla
.....
\newpage
\strut
\addcontentsline{toc}{chapter}{\textbf{{Conclusion}}}
\begin{center}\LARGE\textbf{{Conclusion}}\end{center}
------------------------------------------------------------------------
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Title header chapter
\markboth{}{}
or even \markboth{Conclusion}{Conclusion}
at that place in the document.Stefan
Title header chapter
Thank you, it is work!Stefan Kottwitz wrote:You could use\markboth{}{}
or even\markboth{Conclusion}{Conclusion}
at that place in the document.
Stefan
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Title header chapter
\chapter*{Conclusion}
instead of \begin{center}\LARGE\textbf{{Conclusion}}\end{center}
and also remove the [t]\newpage[/t]. Some classes like scrbook or scrreprt also provide commands to make a chapter title without number but with entry to the table of contents and a running head (and commands to center the chapter title).