В таблице содержания я хочу иметь Приложение A вместо главы A, Приложение B вместо главы B и показывать на. Я не могу показать это, когда использую \include{appendix}
. Ниже приведен мой код:
\documentclass{report}
\usepackage{tocloft,calc}
\renewcommand\cftchapaftersnum{}% adds dot after chapter title in ToC
\renewcommand\cftchapdotsep{\cftdotsep}% adds leader dots from chapter titles to page numbers
% chapter and chapter number rather than just number
\renewcommand{\cftchappresnum}{\chaptername\space}
\setlength{\cftchapnumwidth}{\widthof{\textbf{Appendix~999~}}}
\makeatletter
\g@addto@macro\appendix{%
\addtocontents{toc}{%
\protect\renewcommand{\protect\cftchappresnum}{\appendixname\space}%
}%
}
\makeatother
\begin{document}
\tableofcontents
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\include{chp1}
\include{chp2}
\appendix
\include{appendix} :
\end{document}
%chp1.txt is
\chapter{Introduction1}
%chp2.txt is
\chapter{Introduction2}
%appendix.txt is
% Appendix A
\chapter{}
\section{hello1}
In the ...
\section{hello2 }
% Appendix B
\clearpage
\newpage
\chapter{}
\section{bello1}
\section{bello2 }
%таблица вывода содержания
Contents
List of Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . .2
Chapter 1 Introduction1 . . . . . . . . . . . . . . . . . . . . . . . 3
Chapter 2 Introduction2 . . . . . . . . . . . . . . . . . . . . . . . 4
Chapter A . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5
A.1 hello1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
A.2 hello2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5
Chapter B . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
B.1 bello1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
B.2 bello2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
P.S. Я НЕ ищу решение с помощью \input{appendix}
for \include{appendix}
. Я уже пробовал это; хотя это работает для этого примера, это не решает мою настоящую проблему.
Желаемый вывод содержания:
Contents
List of Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . .2
Chapter 1 Introduction1 . . . . . . . . . . . . . . . . . . . . . . . 3
Chapter 2 Introduction2 . . . . . . . . . . . . . . . . . . . . . . . 4
Appendix A . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5
A.1 hello1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
A.2 hello2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5
Appendix B . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6
B.1 bello1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
B.2 bello2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
решение1
Перемещение \appendix
команды из основного файла в appendix.tex
— один из многих способов решения проблемы. (Самое сложное — воспроизвести проблему). Наличие нескольких \appendix
команд ничему не навредит, за исключением того, что chapter
каждый раз придется сбрасывать счетчик.
Все остальное то же самое, за исключением appendix.tex
:
\appendix
% Appendix A
\chapter{}
\section{hello1}
In the ...
\section{hello2 }
% Appendix B
\clearpage
\newpage
\chapter{}
\section{bello1}
\section{bello2 }