I asked how to add an indent to a toc line for an appendix here.
In my real structure I am including the appendices:
\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}
But this ends in:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
The indent does not work for the first include. Is there any solution?

\noindent– M S Feb 22 '19 at 12:57