I have thesis template in latex which have pages in the beginning to setup the layout of the thesis. For example I have contents, list of table, list of figure, Notation and Acronyms. The first page of each content appears with the heading, and the other pages present the header for each type of content except Notation and Acronyms the second page of those contents appears with the header of "list of table". Can you help me please and thank you in advance.
Asked
Active
Viewed 1,284 times
2
-
\thispagestyle{...style name...} tags helps you to change the headers for a particular page alone... – MadyYuvi Aug 08 '17 at 06:13
-
I understand that your problem is not that there is nothing in the head line of the pages, but that your sections have the header "Notation" and "Acronyms", respectively, but the head line of the pages still reads "List of table", right? – Tiuri Aug 08 '17 at 06:44
-
Yes this right and all the header in the thesis is correct just the second page of the "Notation" and "Acronyms". – user3346768 Aug 08 '17 at 07:36
-
So what I should do and when can I make the change? – user3346768 Aug 08 '17 at 07:37
-
Yes this right Tiuri and all the header in the thesis is correct just the second page of the "Notation" and "Acronyms". – user3346768 Aug 08 '17 at 09:16
2 Answers
1
Depending on your thesis template, you might be able to explicitly set the header by using
\markboth{Acronyms}{Acronyms}
and
\markboth{Notation}{Notation}
at the start of the respective sections.
At least, it worked for me when I had the same problem.
0
please check fancyhdr package. Here is an example:
\documentclass{book}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\rightmark}
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\begin{document}
\chapter{Chapter title}
\section{section title}
\lipsum[1-20]
\end{document}
The answer was previously provided in here.
Piotr Ptak
- 41