This is my second question. I am using the glossaries package and renamed the Glossary and Acronyms so that they read as "Glossar" and "Abkürzungsverzeichnis". This works well for in the actual document, however in the Table of Contents they are still named "Glossary" and "Acronyms" instead of the names given by me.
here's what I did:
Code: Select all
\documentclass[fontsize=12pt,a4paper,headsepline,titlepage,DIV=calc]{scrartcl}
\usepackage{appendix}
\usepackage[ngerman]{babel}
...
\usepackage[a4paper,left=40mm,right=20mm,top=25mm,bottom=25mm,headsep=5mm,footskip=15mm]{geometry}
...
\usepackage{ngerman}
...
\usepackage{tocloft}
...
\usepackage[pdfborder={0 0 0 }]{hyperref}
\usepackage[nonumberlist,acronym,toc]{glossaries}
\KOMAoptions{toc=listof}
\KOMAoptions{footsepline,footnotes=multiple,headings=normal}
\pagestyle{headings}
\addto\captionsngerman{
\renewcommand{\figurename}{Abbildung}
\renewcommand{\tablename}{Tabelle}
\renewcommand{\glossaryname}{Glossar}
\renewcommand{\acronymname}{Abk\"urzungsverzeichnis}
\renewcommand{\appendixtocname}{Anhang}
}
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
\renewcommand{\cftfignumwidth}{2.8cm}
\renewcommand{\cftfigpresnum}{Abbildung }
\renewcommand{\cfttabnumwidth}{1.9cm}
\renewcommand{\cfttabpresnum}{Tabelle }
\renewcommand{\glspostdescription}{}
\makeglossaries
\input{glossary}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\onehalfspacing
\begin{document}
\input{cover/cover}
\input{chapters/0000vorwort}
\newpage
\renewcommand{\thepage}{\Roman{page}}
\setcounter{page}{1}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
...
\printglossaries
\end{document}
Iulius