我在撰写博士论文时,对于某一章,我需要在附录后添加后记。我\usepackage{appendix}
在 LaTeX 序言中使用了它。我想做的是:
\newpage
\appendix
\counterwithin{table}{section}
\centering \section{Appendix Tables} \label{sec:appendix}
....
....
\section{Postscript}
This is my postscript
我面临两个问题。首先,整个文本都居中了,并且节标题读起来像,B Postscript
而我只是想让它简单一点Postscript
。
答案1
\centering
对于未编号部分“问题”的建议Postscript
:
使用\begingroup\centering\section{...}\endgroup
或\section{\protect\centering Foo}
作为居中章节标题以及\section*{Postscript}
无编号章节标题。
如果使用该包appendix
(如 OP 所示),\begin{appendices}...\end{appendices}
则使用 `\appendix.appendix` 会更舒服。
如果使用了book
或另一个带有 的类\chapter
,则章节应该使用appendix
,而不是sections
。
然而,在我看来,我不会将章节标题置于中心。
\documentclass{book}
\usepackage{appendix}
\usepackage{chngcntr}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\blinddocument
\clearpage
\begin{appendices}
\counterwithin{table}{section}
\counterwithout{section}{chapter}
\section{\protect\centering Appendix Tables} \label{sec:appendix}
....
....
\section*{Postscript}
This is my postscript
\end{appendices}
\end{document}