致谢/奉献问题

致谢/奉献问题

对于我的论文,在我的标题页(第一页)之后,在接下来的几页上,我想放一个

第 2 页:奉献精神

第 3 页:致谢

我尝试使用\begin{dedication}\end{dedication}\begin{acknowledgement}\end{acknowledgement}命令,但是它不起作用,所以我想我没有包或者我需要定义一个新的环境?

我该如何添加类似于下图的献词/致谢?

一些图像

目前我的代码大致如下:

\documentclass[11pt,a4paper]{report}
\usepackage{amsmath,amsfonts}
\usepackage{titling} % for useful adjustments to the titles
\usepackage{url} % for simple url formatting
% command to make the course info
\makeatletter
\newcommand{\myinfo}[2]{
  \gdef\@myinfo{%
  \begin{tabular}{ll}
  \textit{E-mail:} & \url{[email protected]}\\
  \textit{Course:} & #2\\
  \textit{Professor:} & #1
  \end{tabular}
  \par\vspace{12pt}
  \textsc{University}}
}
% add the extra information after the date
\postdate{\par\vspace{12pt}\@myinfo\end{center}}
\makeatother

\title{\textbf{Course Name}}
\author{My Name}
\myinfo{Professor Name}{Stats} % provide course and prof info
\date{\today}

\begin{document}

\maketitle



\end{document}

答案1

你不需要环境来完成这种事情。你可以添加

\clearpage
\thispagestyle{plain}
\par\vspace*{.35\textheight}{\centering Dedicated to my parents\par}
\chapter*{Acknowledgements}
A lot of people helped me.

这会将致谢页格式化为章节,但它不会出现在目录中,这可能正是您所需要的。或者,您可以手动格式化页面Acknowledgements,在这种情况下,您可以像对待献词页一样进行格式化(在它前面加上一个\clearpage)。

相关内容