for example, if I used default setting, it will be like this
1.Intro............................... 1
Now, our theis requirement is extending the dot line to page number.
1.Intro.................................1
I checked tocloft file, but I didnot find answer. Can you help me to solve it, please?
Thank you.
Page Layout ⇒ listoftable extend dots to page numbers
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: listoftable extend dots to page numbers
Hi,
which document class are you using?
which document class are you using?
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: listoftable extend dots to page numbers
using
\documentclass[12pt,letterpaper]{report}
thank you
\documentclass[12pt,letterpaper]{report}
thank you
listoftable extend dots to page numbers
You could try playing with \cftdotsep and \cftsetpnumwidth:
Code: Select all
\documentclass[12pt,letterpaper]{report}
\usepackage{tocloft}
\cftsetpnumwidth{-0.3mm}
\renewcommand\cftdotsep{1}
\begin{document}
\tableofcontents
\section{Introduction}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: listoftable extend dots to page numbers
thank you, let me try 
