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}
------------------------------------------------------------------------
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- 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).