\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[title,toc,titletoc,page]{appendix}
\begin{document}
\tableofcontents
\chapter{MyChapter}
\begin{appendices}
\chapter{Any appendix title}
\end{appendices}
\end{document}
I am not using \appendix because of the bug with \include (because in fact I am including all appendices and chapters). I like the default of this environment but I want to remove the "appendix" word in the toc (and only in the toc! I like it at within the appendix' header).
Currently:
Contents
1 MyChapter 3
Appendices 5
Appendix A Any appendix title 7
Expected:
Contents
1 MyChapter 3
Appendices 5
A Any appendix title 7
B ...
The indentation before A and B would be nice too.
