Pregunté cómo agregar una sangría a una línea de contenido para un apéndice.aquí.
En mi estructura real estoy incluyendo los apéndices:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{tocloft}
\usepackage[title,toc,page]{appendix}
\begin{document}
\tableofcontents
\chapter{MyChapter}
\begin{appendices}
\addtocontents{toc}{\protect\setlength{\cftchapindent}{3em}}
\include{appendix_a}
\include{appendix_b}
\end{appendices}
\end{document}
Pero esto termina en:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
La sangría no funciona para la primera inclusión. ¿Hay alguna solución?
Respuesta1
Puedes solucionarlo tomando prestado el libro de Martin Scharrer.\immaddtocontents
macro:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{tocloft}
\usepackage[title,toc,page]{appendix}
\makeatletter
\newcommand\immaddtocontents[1]{{%
\let\protect\@unexpandable@protect
\immediate\write\@auxout{\noexpand\@writefile{toc}{#1}}%
}}
\makeatother
\begin{document}
\tableofcontents
\chapter{MyChapter}
\begin{appendices}
\immaddtocontents{\protect\setlength{\cftchapindent}{3em}}
\include{appendix_a}
\include{appendix_b}
\end{appendices}
\end{document}