systemtechniklabor/htwsaar-i-mst-vorlage

Korrekte Kopfzeile bei mehrseitigem Table of Contents, List of Acronyms, etc.?

Opened this issue · 2 comments

In Abbreviations.tex wurde \markboth{Abkürzungsverzeichnis}{} eingefügt, damit die Kopfzeile auch bei mehrseitiger List of Acronyms korrekt ist. Prüfen, ob dies Nebenwirkungen hat.

Prüfen, ob dies auch auf Contents.tex zu übertragen ist und ob das dort auch in unterschiedlichen Szenarien funktioniert.

Wo sonst noch?

Contents.tex

%*******************************************************
% Table of Contents
%*******************************************************
\setcounter{tocdepth}{2} % <-- 2 includes up to subsections in the ToC
\setcounter{secnumdepth}{3} % <-- 3 numbers up to subsubsections

\pdfbookmark[0]{\contentsname}{toc}
\markboth{\contentsname}{} % NEU, FUNKTIONIERT DAS?
\tableofcontents 

% Die weiteren Verzeichnisse folgen am Ende des Dokuments 

Was ist mit ListOfs.tex?

%*******************************************************
% Verzeichnisse (Abbildungen, Tabellen, Listings, etc.)
%*******************************************************
\cleardoublepage
\markboth{Verzeichnisse}{} % NEU, GENERISCHE LÖSUNG FUNKTIONIERT DAS?
\begingroup
	\let\clearpage\relax
	\let\cleardoublepage\relax
	\listoffigures
	\listoftables
	%\addcontentsline{toc}{chapter}{\lstlistlistingname}
	\lstlistoflistings 
\endgroup