[Tex/LaTex] Acknowledgement page + report

numberingsectioningstarred-version

I'm writing a report and I want to place the Acknowledgement page without \section because it will number it 0.1

I tried to place it in another TeX document and use \input in the main document, but it did not work.

Best Answer

You can use the starred version of \section, \section*, to produced a non-numbered section as in the following example:

\documentclass{report}
\begin{document}
\section*{Acknowledgement}% This section is not numbered
\chapter{Chapter name}
\section{Section name}% This section is numbered
\end{document}

If you want to add the starred section to the table of contents you will have to replace

\section*{Acknowledgement}

with

\section*{Acknowledgement}\addcontentsline{toc}{section}{Acknowledgement}