如何创建致谢部分?

如何创建致谢部分?

我正在尝试添加类似的致谢部分。我尝试过“致谢”和“致谢”环境(如互联网上所见),但 LaTeX 无法识别它。

答案1

大多数课程都没有提供致谢环境。我按照以下方式对论文致谢:

\chapter*{Acknowledgements}
\thispagestyle{empty}

I like to acknowledge ...

\clearpage

这会在自己的页面上添加一个没有页码的章节式标题。我也不想给它添加页码。之后使用刷新页面\clearpage,以防万一。

如果您撰写论文或其他类似文章的文档,请使用\section*而不是\chapter*并跳过其他命令。

答案2

在基于章节的文档中:

\cleardoublepage% especially in a document where chapters start at right-hand pages
\phantomsection% for an anchor if you use hyperref
\addtocontents{toc}{chapter}{Acknowledgements}% if you wish to have a TOC entry
\chapter*{Acknowledgements}% for the actuall unnumbered heading
\thispagestyle{empty}% or plain etc.
\markboth{Acknowledgements}{Acknowledgements}% relevant depending on page style
    % or if it's more than one page

与 类似\section*,如果需要,则作为部分。省略上面不需要的行。

您可能会看到,宏名称为致谢可能会很好,并且使用它,即

\newcommand*{\ackname}{Acknowledgements}

答案3

\section*{Acknowledgement}

I offer my sincerest gratitude to my right arm, .....

In a chapter-based document, simply use:

\chapter*{Acknowledgement}

I offer my sincerest gratitude to my right arm, .....

相关内容