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.
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.
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}
\chapter* which I personally use for the acknowledgement in my thesis, but what to use depends on the style.
– Martin Scharrer
Jul 01 '11 at 12:43
\label{key}....\ref{key}. in this case I will encounter a problem which is LaTeX will refer to the section in higher order or the previous one.
–
Feb 03 '12 at 13:57