Gostaria de ter uma lista de tabelas e figuras com seus números de página.
Usando:
\listoffigures
\listoftables
produzirá uma lista como abaixo:
List of Tables
Table# Caption ................. Page#
Table# Caption ................. Page#
Mas eu gostaria de ter:
List of Tables
Table# .......................... Page#
Table# .......................... Page#
Agradeço qualquer ajuda.
Responder1
Um hack rápido com redefinição de \caption
.
Se o \ifnumberonly
teste booleano for verdadeiro, então o conteúdo usual da legenda será exibido no corpo, mas omitido no Lof
ouLoT
Diga \numberonlytrue
para ativar a exibição 'fácil' no LoT
ou \numberonlyfalse
para o conteúdo normal.
\documentclass{book}
\usepackage{pgffor}
\usepackage{xparse}
\newif\ifnumberonly
\numberonlytrue
\makeatletter
\let\caption@@orig\caption
\RenewDocumentCommand{\caption}{som}{%
\IfBooleanTF{#1}{%
\caption@@orig*{#3}%
}{%
\ifnumberonly
\caption@@orig[]{#3}
\else
\IfValueTF{#2}{%
\caption@@orig[#2]{#3}
}{%
\caption@@orig{#3}
}%
\fi
}%
}
\makeatother
\begin{document}
\listoftables
\listoffigures
\foreach \x in {1,...,20}{%
\begin{figure}
\caption{Figure \x\ but you won't see this}
\end{figure}
\begin{table}
\caption{Table \x\ but you won't see this}
\end{table}
}
\end{document}