I currently have my ToC formatted exactly as I need it except I need the word "Chapter" to appear before the chapter number.
i.e: I want to see Chapter 1: Title
instead of 1: Title.
After reading the PDF regarding the tocloft package it seems that the correct way to take care of this is with the command:
\renewcommand{\cftchappresnum}{Chapter }
citing pg. 11 of the document. When I do this I see no result; nothing in my document changes. I have seen others resolve this issue in a similar way so I am very perplexed as to why it is yielding me no result. Is it possible that the issue is that I am using the report class?
MWE:
\documentclass[12pt]{report}
\usepackage{amsmath, amsfonts, amssymb, amsthm, fancyhdr, enumerate, comment, titlesec, tocloft, lipsum, titletoc}
\begin{document}
\renewcommand{\contentsname}{~~~~~~TABLE OF CONTENTS}
\renewcommand{\cftpartdotsep}{\cftdotsep}
\renewcommand{\cftchapdotsep}{\cftdotsep}
\renewcommand{\cftchapleader}{\cftdotfill{\cftsecdotsep}}
\renewcommand{\cftchappresnum}{\chaptername~}
\setlength{\cftchapnumwidth}{6em}
\tableofcontents
\thispagestyle{fancy}
\chapter{First Chapter}
\chapter{Second Chapter}
\end{document}
\usepackage{tocloft} \renewcommand{\cftchappresnum}{\chaptername~} \setlength{\cftchapnumwidth}{6em}. – Werner Jul 24 '14 at 03:27titletoc(since it conflicts withtocloft). – Werner Jul 24 '14 at 04:24tocloftpackage and delete thetitletocpackage. Compile more than once, since the ToC depends on at least two compiles to start with. – Werner Jul 24 '14 at 04:47