包含图形、自动调整图像并同时添加标题

包含图形、自动调整图像并同时添加标题

我必须添加一些图片来说明问题。因此我使用以下代码将它们自动缩放到文本宽度,效果非常好。但我该如何添加一些标题?(我必须标记和编号所有图片)?

我在谷歌上找到了一些解决方案(标题等),但据我所知,它们需要一个图形对象。所以我也尝试使用它来代替这个框,但我无法自动调整图像。

\begin{center}
  \makebox[\textwidth]{\includegraphics[width=\textwidth]{pstack}}
\end{center}

答案1

\usepackage{capt-of}
...

\noindent
\begin{minipage}{\textwidth}
  \includegraphics[width=\textwidth]{pstack}
  \captionof{figure}{foo}\label{bar}
\end{minipage}

或者

\begin{figure}[!htb]
  \includegraphics[width=\textwidth]{pstack}
  \caption{foobar}\label{barbaz}
\end{figure}

\makebox如果您的图像宽度相同,则不需要。

相关内容