I'm using LaTeX and like to create an acknowledgement section using the report class such that is looks like the abstract and comes after it.
Asked
Active
Viewed 1e+01k times
19
Martin Scharrer
- 262,582
Dima
- 12,427
- 8
- 40
- 53
2 Answers
43
I went with:
\begin{abstract}
This is cool paper about vuvuzelas.
\end{abstract}
\renewcommand{\abstractname}{Acknowledgements}
\begin{abstract}
Thanks Mum!
\end{abstract}
This way both look similar and good.
Dima
- 12,427
- 8
- 40
- 53
37
\section*{Acknowledgements}
Thanks Mum.
Will Robertson
- 73,872
-
I was about to suggest that earlier then got called away from my computer. Some people (not I) would say that you should instead use
\section*{Acknowledgments}. – Mark Meckes Jul 30 '10 at 17:13 -
18
-
5
\newenvironment{acknowledgements} {\renewcommand\abstractname{Acknowledgements}\begin{abstract}} {\end{abstract}}– Will Robertson Feb 03 '18 at 11:04