我有一个关于标题和章节文本格式的问题。例如,当我输入:
\begin{figure}
something
\caption{this is some caption text and it probably may be quite long.}
\end{figure}
那么结果是:
something
this is some caption text and it pro-
bably may be quite long.
单词“probably”被分割,新行中的文本左对齐。我想停止单词分割并将整个文本居中对齐。我知道我可以使用 mbox,但总是写它有点烦人,所以也许一些全局设置会更好。
答案1
加载caption
包
\usepackage[justification=centering]{caption}