I'm writting my PhD thesis and I'm facing several problems regarding the table of contents. One problem is that Contents itself appears in the table of contents and List of Figures and List of Tables appears duplicated. Anyone knows how to solve this problem?
The preamble of my tex file is the following:
Code: Select all
\documentclass[phd,12pt,twoside,a4paper]{report}
\usepackage[DF,newLogo]{uaThesis}
\usepackage[sectionbib]{chapterbib}
\usepackage{lettrine}
\usepackage{type1cm}
\usepackage{cite}
\usepackage{hyperref}
\usepackage{color}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[ansinew]{inputenc}
\usepackage{subfigure}
\usepackage{ulem}\normalem
\usepackage{multirow}
\usepackage{enumerate}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage[nottoc]{tocbibind}
\usepackage{booktabs}
\usepackage{revnum}
\usepackage{appendix}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{siunitx}
\usepackage{enumitem}
\usepackage[nottoc]{tocbibind}
\usepackage{microtype}
\usepackage{xcolor}
\hypersetup{
colorlinks=true,
linkcolor={blue!50!black},
citecolor={red!50!black},
urlcolor={green!50!black}
}
...
% Table of Contents:
\pagenumbering{roman}
\cleardoublepage
\tableofcontents
% List of Figures:
\cleardoublepage
\listoffigures
% List of Tables:
\cleardoublepage
\listoftables
Contents
Contents ----------------------- i
List of Figures ---------------- v
List of Figures ---------------- v
List of Tables ----------------- ix
List of Tables ----------------- ix
Regards.