在 ACM 类中将图形缩放到列宽

在 ACM 类中将图形缩放到列宽

我目前正在使用 ACM 2 列类文件 ( \documentclass[sigconf]{acmart}) 撰写一篇论文。我以以下方式包含一列图形 (jpeg、png):

\begin{figure}
\includegraphics[height=1in, width=1in]{figures/example}
\caption{This is the caption}
\end{figure}

不幸的是,我的图太小了。我怎样才能将其缩放到列宽但保持纵横比(这样它就不会扭曲)同时又符合 ACM 规则?

答案1

编辑:在 Zarko 评论之后:

\begin{figure}
\includegraphics[width=\columnwidth]{figures/example}
\caption{This is the caption}
\end{figure}

您可以省略书写高度

相关内容