如何抑制圖形和表格標題中的連字符?

如何抑制圖形和表格標題中的連字符?

為了抑制我在命令\hyphenpenalty=10000中使用的節名稱中的連字符。\titleformat

有沒有類似的方法來抑制圖形和表格(和長表)標題中的連字符?

答案1

您在評論中添加的程式碼可以產生我認為您想要的效果。

該圖顯示了 a 中預設的連字符佈局,table然後longtable在聲明標題應該合理且沒有連字符後再次顯示相同的佈局(這使 TeX 別無選擇,只能過度拉伸Table和 數字之間的空間。)

在此輸入影像描述

\documentclass{article}

\usepackage{caption,longtable,ltcaption}
\setlength\textwidth{.4\textwidth}

\DeclareCaptionJustification{nohyphen}{\hyphenpenalty=10000}
\captionsetup{justification=nohyphen}

\begin{document}

\begin{table}
\centering
XXX
\caption{verylongwordverylongword verylongwordverylongword }
\end{table}

\begin{longtable}{ll}
aa&bb\\
\caption{verylongwordverylongword verylongwordverylongword }
\end{longtable}

\end{document}

相關內容