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?
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?
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.