图片标题对齐问题

图片标题对齐问题

我使用 IOP 模板撰写的论文中的图表标题有问题。我使用的是常用包\usepackage{graphicx}

LaTeX 命令是

\begin{figure}[!h]
\centering
\includegraphics[width= 7.5cm,height=6cm]{figures/fig1.pdf}
\includegraphics[width= 7.5cm,height=6cm]{figures/fig2.pdf}
\caption[width = \textwidth]{Bla bla bla}
\label{fig:1}
\end{figure}

这是相当标准的。我得到的结果是

在此处输入图片描述

如您所见,标题与图片不对齐,甚至与文本也不对齐。我该怎么办?

答案1

请尝试以下操作:

\usepackage{graphicx, caption}
\usepackage{lipsum} % for dummy text only

\begin{figure}[!h]
  \centering
  \captionsetup{width=\linewidth}
  \includegraphics[width= 7.5cm,height=6cm]{figures/fig1.pdf}
  \includegraphics[width= 7.5cm,height=6cm]{figures/fig2.pdf}
  \caption[Second figure]{\lipsum*[2]} 
  \label{fig:1}  
\end{figure}

相关内容