如何在文档类“回忆录”中添加“致谢”?

如何在文档类“回忆录”中添加“致谢”?

我在用

\documentclass[11pt,a4paper,oneside]{memoir}

写一篇论文,并想补充

acknowledgements

但我不能这样做。我的计划是把这个放在

abstract

并且之前

contents

请帮忙!

答案1

这只是使用\section*{\ackname}命令将标题和itemize列表插入文档。由于没有关于格式要求的实际信息,所以我保持简单。(当然,我不会这样使用它,更不用说名字了 ;-))

\documentclass[11pt,a4paper,oneside]{memoir}


\usepackage{blindtext}

\newcommand{\ackname}{Acknowledgements}

\begin{document}

\begin{abstract}
\blindtext
\end{abstract}

\clearpage
\thispagestyle{empty}
\section*{\ackname}

I would like to thank

\begin{itemize}
\item Monty Python
\item Sauron
\item Gandalf
\item Frodo
\item Samwise
\item Darth Vader
\end{itemize}

\clearpage % For letting the acknowledgements appear on a separate page


\tableofcontents


\chapter{First really, really important stuff}
\section{Real important stuff}
\subsection{Not that important stuff}

\end{document}

在此处输入图片描述

相关内容