如何在 LaTeX 中的附录后撰写后记?

如何在 LaTeX 中的附录后撰写后记?

我在撰写博士论文时,对于某一章,我需要在附录后添加后记。我\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}

在此处输入图片描述

相关内容