I am trying to change the name of the "Appendices" part in my Table of contents to the dutch word "Bijlagen".
So far I have this, but the word "Appendices" still appears in my table of contents:
\documentclass[11pt]{report}
\usepackage[toc,page]{appendix}
\renewcommand\appendixname{Bijlage}
\renewcommand\appendixpagename{Bijlagen}
\renewcommand\contentsname{Inhoudsopgave}
\begin{document}
\tableofcontents
\chapter{Eerste hoofdstuk}
\chapter{Tweede hoofdstuk}
\begin{appendices}
\renewcommand{\thechapter}{\arabic{chapter}}
\chapter{Eerste bijlage}
Text eerste bijlage.
\chapter{Tweede bijlage}
Text van tweede bijlage.
\end{appendices}
\end{document}
\appendixtocnameas well. E.g.,\renewcommand\appendixtocname{Bijlagen}. (See also page 3 of the user guide of theappendicespackage.) – Mico Sep 09 '15 at 09:40