thanks for tips.
the other post refers to table of contents - i don't want to change the toc.
tried it anyway and there was no change.
thanks for the case sensitive, i missed that completely.
changed it but it still doesn't work exactly as i wish.
this works to remove dots and page numbers in all 3 lists
Code: Select all
% *************** Table of contents ***************
\pagestyle{headings}
\renewcommand\contentsname{Table of Contents}
\cftpagenumbersoff{chapter}
\cftpagenumbersoff{section}
\cftpagenumbersoff{subsection}
\cftpagenumbersoff{subsubsection}
\tableofcontents
% **************** List of Tables, Illustrations etc *****************
\renewcommand{\cftdotsep}{\cftnodots}
\cftpagenumbersoff{chapter}
\cftpagenumbersoff{section}
\cftpagenumbersoff{subsection}
\cftpagenumbersoff{subsubsection}
\clearpage \newpage
\listoffigures
\clearpage \newpage
\listoftables
this next one removes all dots, and page numbers only for the toc
Code: Select all
% *************** Table of contents ***************
\pagestyle{headings}
\renewcommand\contentsname{Table of Contents}
\cftpagenumbersoff{chapter}
\cftpagenumbersoff{section}
\cftpagenumbersoff{subsection}
\cftpagenumbersoff{subsubsection}
\tableofcontents
% **************** List of Tables, Illustrations etc *****************
\renewcommand{\cftdotsep}{\cftnodots}
\clearpage \newpage
\listoffigures
\clearpage \newpage
\listoftables
this final one removes dots only for the list of figures and list of tables (which i want), but doesn't remove numbers anywhere!
Code: Select all
% *************** Table of contents ***************
\pagestyle{headings}
\renewcommand\contentsname{Table of Contents}
\tableofcontents
% **************** List of Tables, Illustrations etc *****************
\renewcommand{\cftdotsep}{\cftnodots}
\cftpagenumbersoff{chapter}
\cftpagenumbersoff{section}
\cftpagenumbersoff{subsection}
\cftpagenumbersoff{subsubsection}
\clearpage \newpage
\listoffigures
\clearpage \newpage
\listoftables