Hello,
i have a custom header in my latex document.
when i use the glossaries-package and create a glossary than the header will not shown at the beginning of the glossary-chapter. how can i modify my code that my header will be also at the beginning of the glossary-chapter shown?
thats the code i use:
\usepackage[
nonumberlist, %keine Seitenzahlen anzeigen
%acronym, %ein Abkürzungsverzeichnis erstellen
toc, %Einträge im Inhaltsverzeichnis
numberedsection=autolabel % label für das Glossarverzeichnis vergeben
]{glossaries}
....
\begin{document}
...
\begin{appendix} % Hier beginnt der Anhang
\printglossary[title=Glossar, toctitle=Glossar] %style=altlist,
\thispagestyle{fancy}
\end{appendix}
\end{document}
as you can see on the code: even the "\thispagestyle{fancy}"-statement does not solve my problem.
i am looking forward for you help.
greetings.
Document Classes ⇒ Header will not shown in glossary
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Header will not shown in glossary
Hi Peter,
try this order:
Stefan
try this order:
Code: Select all
\cleardoublepage
\thispagestyle{fancy}
\printglossary[title=Glossar, toctitle=Glossar]
LaTeX.org admin
Re: Header will not shown in glossary
thanks for your try but it doesnt work 
maybe you or sb else has some other ideas?
Greetings, peter

maybe you or sb else has some other ideas?
Greetings, peter
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Header will not shown in glossary
Hi Peter,
then try this line inside your preamble:
Stefan
then try this line inside your preamble:
Code: Select all
\renewcommand*\glossarypreamble{\thispagestyle{fancy}}
LaTeX.org admin
Re: Header will not shown in glossary
great, it works.
thanks alot for your help.
greetings, peter
thanks alot for your help.
greetings, peter