The way I have it the abstract and acknowledgement sections display correctly on the toc (I used section*) but the includepdf page (letter to the dean) shows the section number with a big 0.1 at the start of the line. How do I get rid of this?
btw: This is my first attempt at a MWE. I wasn't sure what to do with the deanletter.pdf.
Code: Select all
\documentclass[a4paper,twoside,12pt]{report}
\usepackage[final]{pdfpages}
\usepackage[USenglish]{babel}
\title{Thesis Title}
\author{Me}
\begin{document}
\pagenumbering{roman}
\maketitle
\newpage
\setcounter{page}{1}
\includepdf[addtotoc={1,section,1,Letter to the Dean,letter}]{./sections/deanletter.pdf}
\section*{Abstract}
\addcontentsline{toc}{section}{\numberline{}Abstract}
This is the text of the abstract
\newpage
\section*{Acknowledgements}
\addcontentsline{toc}{section}{\numberline{}Acknowledgements}
Thanks etc.
\tableofcontents %Table of contents
\newpage
\pagenumbering{arabic}
\chapter{Introduction}
\end{document}