
Como posso fazer com que as legendas das tabelas e figuras estejam alinhadas na lista de tabelas ou lista de figuras, meu problema é que a lista de figuras e a lista de tabelas estão saindo das margens da página.
\documentclass[b5paper, 12pt]{report}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
% the table caption is long when it added to the list of tables.
\begin{table}%[position specifier]
\centering
\caption{Comparison with "Indirect Ident." method with a white noise disturbance}
\begin{tabular}{| l | l | l | l |l |}\hline
method& criterion& 25dB & 15dB & 10dB \\ \hline
\end{tabular}
\end{table}
\end{document}
Responder1
Se você estiver usando um pacote hyperref
com um driver que não suporta links que quebram linhas (por exemplo, dvips
), então a opção linktocpage
ajuda. Ele transforma o número da página em um link e remove o link inquebrável do título.
Arquivo de exemplo com David Carlislecitando correção:
\documentclass[b5paper, 12pt]{report}
\usepackage[
colorlinks,
linktocpage,
]{hyperref}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\begin{table}%[position specifier]
\centering
\caption{Comparison with ``Indirect Ident.'' method with a white noise
disturbance}
\begin{tabular}{| l | l | l | l |l |}\hline
method& criterion& 25dB & 15dB & 10dB \\ \hline
\end{tabular}
\end{table}
\end{document}