如何在 Latex 文章中添加致谢和证书

如何在 Latex 文章中添加致谢和证书

我正在写我的论文报告,我想在其中添加致谢和证书。我在文档类中使用 extarticle。我是 Latex 的新手,在这里发现了类似的问题创建未编号的章节/部分(并将它们添加到目录和/或页眉) 但在这个问题中,没有提到如何为文章添加证书和确认书。

我正在使用 texmaker 撰写报告。

答案1

您没有说明确认书或证书应该是什么样子。以下是您可能想要的两个猜测。一个是无编号部分,正如您引用但忽略的问题中所建议的那样。另一个是制定您自己的风格。

% ackprob.tex  SE 606496

\documentclass{extarticle}
\title{Dissertation}
\author{A. Student}

\begin{document}
\maketitle
\tableofcontents
\section*{Acknowledgements} % unnumbered section not in ToC
\addcontentsline{toc}{section}{Acknowledgements} % add to ToC
 I acknowledge \ldots  or

\begin
{center}
\large\textbf{Thanks}
%%%
\addcontentsline{toc}{section}{Thanks}  %% add to ToC
%%%
\end{center}
I acknowledge \ldots

\section{First section}

\end{document}

在此处输入图片描述

相关内容