I have a problem, with putting the list of abbreviations as an own chapter.
I create the list of abbreviation with the "acronym" environment:
Code: Select all
\chapter*{Abkürzungsverzeichnis}
\begin{acronym}
\acro{KDE}{K Desktop Environment}
\acro{SQL}{Structured Query Language}
\acro{Bash}{Bourne-again shell}
\end{acronym}
This is how i set up my header:
Code: Select all
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{
\markboth{\thechapter{} #1}{}
}
\fancyhf{}
\fancyhead[L]{\leftmark}
\fancyhead[C]{}
\fancyhead[R]{Seite \thepage}
\renewcommand{\headrulewidth}{0.4pt}
\fancypagestyle{plain}{%
}
anyone has other helpful suggestions? should i use something else then \chapter* ?