9

Possible Duplicate:
List of Figures/Tables - eliminate dots?

I have created table of content in my thesis. How to remove the dots in each line?

2 Answers2

12

Simply use in the preamble

\usepackage[titles]{tocloft}

\renewcommand{\cftdot}{}
ag5170
  • 129
10

If you use a standard class you can manipulate the command \@dotsep:

\documentclass[english]{article}
\usepackage{babel,blindtext}
\makeatletter
\renewcommand\@dotsep{200}
\makeatother
\begin{document}
\tableofcontents
\Blinddocument

\end{document}

Of course with packages like tocloft there are other ways.

Marco Daniel
  • 95,681