如何将一行中过长的图题居中?或者至少让其他行中的文本与“Slika 1:”之后的文本对齐。目前看起来像这样
答案1
使用caption
包裹。
\documentclass{article}
\usepackage[justification=centering]{caption}% or e.g. [format=hang]
\begin{document}
\begin{figure}
\centering
\rule{1cm}{1cm}
\caption{This caption is very long---in fact, it is so long that it doesn't fit on one line}
\end{figure}
\end{document}