我在图形标题中收到 underfull badness 10000 和 3009 的错误,但无法找出原因。这是我在标题中写的内容:
\begin{figure}[h]
\centering
\includegraphics[scale=0.5]{images/gis image.png}
\caption{1,2 and 3 $\sigma$ ellipses. Background image (HMC\_11W14\_nd5) in QGIS. Available HiRISE digital terrain models (DTMs): DTEEC\_004935\_1965\_004494\_1986\_L01, DTEEC\_009345\_1935\_003454\_1995\_L01, DTEEC\_346425\_1965\_035358\_1965\_L01, DTEEC\_037070\_1935\_034323\_1995\_L01, DTEEC\_034599\_1965\_023567\_1965\_L01, DTEEC\_045355\_1935\_053962\_1995\_L01, ExoArgyre\_7\_ABEE\_1m.}
答案1
以合适的方式排版这样的标题基本上是不可能的。
我建议使用较短的标题并在其外面添加有关图像的数据。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htp]
\centering
\includegraphics[width=0.5\textwidth]{example-image}
\caption{1, 2 and 3 $\sigma$ ellipses.}
\medskip
\begin{tabular}{@{}l@{}}
Background image (HMC\_11W14\_nd5) in QGIS. \\
Available HiRISE digital terrain models (DTMs): \\
DTEEC\_004935\_1965\_004494\_1986\_L01, \\
DTEEC\_009345\_1935\_003454\_1995\_L01, \\
DTEEC\_346425\_1965\_035358\_1965\_L01, \\
DTEEC\_037070\_1935\_034323\_1995\_L01, \\
DTEEC\_034599\_1965\_023567\_1965\_L01, \\
DTEEC\_045355\_1935\_053962\_1995\_L01, \\
ExoArgyre\_7\_ABEE\_1m.
\end{tabular}
\end{figure}
\end{document}