我使用的是经典的 2 列 acmart 模板,也可以在 overleaf 上找到。代码如下:
\documentclass[sigconf]{acmart}
\usepackage{hyperref}
\usepackage{xcolor}
\newcommand{\MYhref}[3][blue]{\href{#2}{\color{#1}{#3}}}
%% \BibTeX command to typeset BibTeX logo in the docs
\AtBeginDocument{%
\providecommand\BibTeX{{%
\normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}
\begin{document}
\begin{figure}[h]
\resizebox{\columnwidth}{!}{%
\includegraphics{myimg.png}%
}
\caption{mycaption}
\label{polls}
\end{figure}
\end{document}
我收到了错误
Reference 'polls' on page 3 undefined
我已经以这种方式在文档中插入了其他图像,因此文档中还有其他列大小的图像,我收到此错误真是出乎意料。如果我这样做
\begin{figure*}[h]
\resizebox{\columnwidth}{!}{%
\includegraphics{myimg.png}%
}
\caption{mycaption}
\label{polls}
\end{figure*}
图像出现了,但是,由于 的存在*
,它位于下一页的中央。我希望它像所有其他图形一样被框在列内。如果我更改输入文件或标题或其他内容,问题仍然存在。
我该如何解决这个问题?