附录部分目录中的附录

附录部分目录中的附录

我有一篇非常简单的文章,内容如下:

\documentclass{article}
\usepackage{appendix}

\begin{document} 
\tableofcontents

\appendixtitleon
\appendixtitletocon
\section{Writing}
\begin{appendices}
\section{First appendix}
\subsection{First}
\subsection{Second}
\section{Second appendix}
\subsection{First}
\subsection{Second}
\end{appendices}

\end{document}

这将产生以下输出:enter image description here

这几乎就是我想要的,除了,我实际上希望附录归入目录中的附录部分(所有内容都缩进一个级别)。输出将如下所示: enter image description here

答案1

添加[toc]选项:

\documentclass{article}
\usepackage[toc]{appendix}

\begin{document}

\tableofcontents

\appendixtitleon
\appendixtitletocon
\section{Writing}
\begin{appendices}
\section{First appendix}
\subsection{First}
\subsection{Second}
\section{Second appendix}
\subsection{First}
\subsection{Second}
\end{appendices}

\end{document}

enter image description here

相关内容