In my contents appears the abstract, my list of figures and tables, then the introduction and my sections. By defaults the sections and all relate with it (number of section, page number of the section and the dots) appears in bold, also have more vertical space between the sections.
I need that in the TOC the sections, the number of section, the page number of the section and the dots appear without bold and decrease the vertical space between sections, this last I can do it with the command \renewcommand{\cftbeforesecskip}{0em} but still continued with the bold problem.
There is an example of my document,
Code: Select all
\documentclass{article}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{caption}
\captionsetup[figure]{format=hang,labelsep=endash}
\captionsetup[table]{format=hang,labelsep=endash,singlelinecheck=false}
\usepackage[titles,subfigure]{tocloft}
\usepackage{subfig}
\renewcommand{\cfttabpresnum}{Table }
\renewcommand{\cftfigpresnum}{Figure }
\renewcommand{\cfttabaftersnum}{ - }
\renewcommand{\cftfigaftersnum}{ - }
\renewcommand{\cfttabnumwidth}{4.7em}
\renewcommand{\cftfignumwidth}{4.7em}
\renewcommand{\cfttabindent}{0em}
\renewcommand{\cftfigindent}{0em}
\renewcommand{\cftsubsecindent}{0em}
\renewcommand{\cftsubsubsecindent}{0em}
\renewcommand{\cftsecdotsep}{\cftdotsep}
\renewcommand{\cftbeforesecskip}{0em}
\begin{document}
\tableofcontents
\newpage
\section*{Abstract}
\addcontentsline{toc}{section}{Abstract}
\newpage
\listoftables
\addcontentsline{toc}{section}{List of Tables}
\newpage
\listoffigures
\addcontentsline{toc}{section}{List of Figures}
\newpage
\section{Introduction}
\section{Section one}
\subsection{Subsection of the section one}
\subsubsection{subsubsection of the section two}
\section{Section two}
\subsection{Subsection of the section two}
\subsubsection{subsection of the section two}
\section*{References}
\addcontentsline{toc}{section}{References}
\end{document}