付録が含まれている場合、目次の付録行にインデントを追加します。

付録が含まれている場合、目次の付録行にインデントを追加します。

付録の目次行にインデントを追加する方法を尋ねましたここ

実際の構造では付録を含めています:

\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}

しかし、これは次のように終わります。

Contents

1 My Chapter                      3
Appendices                        5
A One appendix header             7
    B Another appendix header     9

最初の include ではインデントが機能しません。解決策はありますか?

答え1

マーティン・シャーラーの\immaddtocontents大きい:

\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}

ここに画像の説明を入力してください

関連情報