I need to eliminate the dots that appear in \listoffigures and \listoftables results - is there an easy way to do that?
EDIT:
I think I need to actually eliminate the dots. Modifying @dotsep via
\begin{document}
\renewcommand{\@dotsep}{10000}
...
does not appear to rectify the problem with revtex - I still get
! Illegal unit of measure (mu inserted)
for each figure, which ends up placing a whole bunch of ptmu's where the dots would normally appear.
sample:
\documentclass[aps,amsmath,amssymb,11pt,nofootinbib]{revtex4-1}
\usepackage{tikz,graphicx,hyperref,slashed,stmaryrd,bbold,eepic,pst-all,pstricks-add,multirow,listings}
\begin{document}
% with or without % \renewcommand{\@dotsep}{10000} % doesn't work
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
%...later, some figures and tables ala:
\section{a section}
\subsection{another section}
\begin{table}[t]
\caption[ShortCaption]{BlahBlahBlahCaption}
\begin{center}
\begin{tabular}{|c|c|c|}\hline
some & data & here \\ \hline
\end{tabular}
\end{center}
\label{tab_A}
\end{table}
\newpage
\section{yet another section}
\begin{figure}[t]
\begin{center}
\includegraphics[width=\textwidth]{a_png.png}
\caption[Short]{Longer.}
\label{fig_A}
\end{center}
\end{figure}
\end{document}

revtexwas crutial. You should always clarify in your questions, at least, the document class used. – Gonzalo Medina Dec 06 '11 at 21:59revtex4class doesn't seem to support\listoftablesor\listoffigures. Please post a complete minimal version of your code (simply add to the snippet you just posted\begin{document},\end{document}and how you are producing the lists). – Gonzalo Medina Dec 06 '11 at 22:13