我正在准备一篇只有一个附录部分的论文,大学提交指南有一些奇怪的要求。特别是因为只有一个附录,章节标题应该简单地写成“附录”(而不是“附录 A”),但如果我用 隐藏编号\chapter*{}
,该部分中的所有图片也会失去其部分标识符(图 1、图 2 等)。为了保持一致性,最好保留 A1、A2... 编号;我怎样才能让图片按其部分标记,同时隐藏标题中的部分编号?
答案1
您可以\stepcounter{chapter}
在以下时间之前发出\chapter*{Appendix}
:
\documentclass{report}
\usepackage[a6paper]{geometry} % Just to prduce smaller document for illustration
\begin{document}
\chapter{First}
\begin{figure}
\centering
\rule{4cm}{2cm}
\caption{First figure}
\end{figure}
\appendix
\stepcounter{chapter}
\chapter*{Appendix}
\addcontentsline{toc}{chapter}{Appendix} % To add Appendix to the TOC
\begin{figure}
\centering
\rule{4cm}{2cm}
\caption{Appendix figure}
\end{figure}
\end{document}