
為了抑制我在命令\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}