長い表と図のキャプション

長い表と図のキャプション

表と図のキャプションを表のリストまたは図のリストに揃えるにはどうすればよいですか。問題は、図のリストと表のリストがページの余白の外側に出てしまうことです。

\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}

答え1

hyperref行をまたいで分割されるリンクをサポートしないドライバー (例 ) でパッケージを使用している場合はdvips、 オプションlinktocpageが役立ちます。このオプションは、ページ番号をリンクにして、タイトルから分割不可能なリンクを削除します。

デビッド・カーライルのサンプルファイル引用の修正:

\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}

結果

関連情報