我用了
\begin{appendices}
\renewcommand\thetable{\thesection\arabic{table}}
\renewcommand\thefigure{\thesection\arabic{figure}}
\renewcommand\theequation{\thesection\arabic{equation}}
\setcounter{figure}{0}
\section{Independent Testing}
\end{appendices}
然后Appendix A
就出来了Appendices
如下的。如何放入ieAppendix A
中。Appendices
+Appendices => Appendix A
我尝试使用\subsection{Independent Testing}
,结果却.1 Independent Testing
出乎意料。
答案1
注意:我假设你正在使用 documentclass article
这里。
您的问题似乎是您希望在目录中附录的开头和附录部分之间有明显的区别。
要按照你想要的方式格式化目录,你需要重新定义目录的相当一部分appendices
包裹。我个人不了解这部分内容,但我可以为您的问题提供其他解决方案。
你可以告诉附录包不要将幻像部分“附录”添加到你的目录中,方法是不是将该命令包含\addappheadtotoc
在您的文档中。
或者,您可以在启动附录环境之前使用该命令\noappendicestocpagenum
删除幻影部分后面的数字。
以下是一个例子:
\documentclass{article}
\usepackage{appendix}
\begin{document}
\tableofcontents
\newpage
\section{Regular Section}
\subsection{Regular Subsection}
\newpage
\noappendicestocpagenum %Remove the page number from the table of contents header
\begin{appendices}
\addappheadtotoc %Comment this line to remove the Appendices header entirely
\section{Appendix Section}
\subsection{Appendix Subsection}
\section{Another Appendix Section}
\end{appendices}
\end{document}
其结果为: