긴 테이블과 그림의 캡션

긴 테이블과 그림의 캡션

표 목록이나 그림 목록에 표와 그림 캡션을 정렬하려면 어떻게 해야 합니까? 문제는 그림 목록과 표 목록이 페이지 여백을 벗어나는 것입니다.

\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를 지원하지 않는 드라이버와 함께 패키지를 사용하는 경우 옵션이 도움이 됩니다. 페이지 번호를 링크로 만들고 제목에서 깨지지 않는 링크를 제거합니다.dvipslinktocpage

David Carlisle의 예제 파일수정 사항 인용:

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

결과

관련 정보