This repository has been archived on 2024-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
Praxisbericht-Template/pages/page-08-indices.tex

54 lines
1.5 KiB
TeX
Raw Permalink Normal View History

2023-09-15 13:30:07 +00:00
% =====================================================================
% this file contains calls the commands which auto generate tables of
% figures, contents, tables, etc.
% table of contents
\cleardoublepage
\addcontentsline{toc}{section}{Inhaltsverzeichnis}
\tableofcontents
2023-09-15 14:30:56 +00:00
\thispagestyle{fancy} % use custom fancy header and footer
2023-09-15 13:30:07 +00:00
\newpage
% figures
\cleardoublepage
\addcontentsline{toc}{section}{\listfigurename}
\listoffigures
2023-09-15 14:30:56 +00:00
\thispagestyle{fancy} % use custom fancy header and footer
2023-09-15 13:30:07 +00:00
\newpage
% tables
\cleardoublepage
\addcontentsline{toc}{section}{\listtablename}
\listoftables
2023-09-15 14:30:56 +00:00
\thispagestyle{fancy} % use custom fancy header and footer
2023-09-15 13:30:07 +00:00
\newpage
% code listings
% define custom german title for code lisitng
\def\listlistingname{Quelltextverzeichnis}
% add list of contents entry for code listing
\renewcommand\listoflistingscaption{\listlistingname}
\addcontentsline{toc}{section}{\listlistingname}
% print used listings
\listoflistings
\newpage
% nomenclature
2023-11-21 14:59:58 +00:00
\renewcommand{\nomname}{Nomenklatur}
2023-09-15 13:30:07 +00:00
\printnomenclature
\newpage
% define custom german title for glossary lisitng
\addcontentsline{toc}{section}{Glossar} % add table of contents entry
\section*{Glossar} % add unumbered title
\renewcommand{\glossarysection}[2][]{} % remove default title for section
2023-09-15 13:30:07 +00:00
\printglossaries
\newpage
%acronyms
% will be sorted automatically by alpabetic order
\cleardoublepage
\def\listacronymname{Abkürzungsverzeichnis}
\addcontentsline{toc}{section}{\listacronymname}
\printacronyms
\newpage