答案1
如果没有看到可行的示例,就很难提供帮助。
对于文章,您必须使用section
命令。
然而,对于报告和书籍来说,chapter
-commands 是首选。
文章类别
\documentclass{article}
\usepackage[page,toc]{appendix}
\begin{document}
\tableofcontents
\section{First Section}
\subsection{First Subsection}
\section{Second Section}
\begin{appendices}
\section{Some Appendix}
Here be the appendix
\end{appendices}
\end{document}
报告或书籍课程
\documentclass{report}
\usepackage[page,toc]{appendix}
\begin{document}
\tableofcontents
\chapter{First Chapter}
\section{First Section}
\chapter{Second Chapter}
\begin{appendices}
\chapter{Some Appendix}
Here be the appendix
\end{appendices}
\end{document}