在我的一些长标题图表列表中,标题超出了页面的右上角,但并非所有图表都是如此。我尝试了以下解决方案:https://latex.org/forum/viewtopic.php?t=11021但不起作用( \usepackage[breaklinks]{hyperref})
答案1
打字机字体的文本通常不会换行。要换行,请使用\usepackage[htt]{hyphenat}
:
\documentclass{book}
\usepackage[htt]{hyphenat}
\begin{document}
\begin{figure}
\caption{some very very very very long caption with typewriter text \texttt{some\_long\_typewriter\_text}}
\end{figure}
\listoffigures
\end{document}