警告:可能存在无描述的图像

警告:可能存在无描述的图像

我使用 TexLive 2017。我在我的 tex 中使用了以下一段代码。

\begin{figure}[t]
\centering
\begin{subfigure}{0.45\columnwidth}
\epsfig{file=fig/a.eps, width=1.0\columnwidth}
\caption{a}
\end{subfigure}
\begin{subfigure}{0.45\columnwidth}
\epsfig{file=fig/b.eps, width=1.0\columnwidth}
\caption{b}
\end{subfigure}
\vspace*{-5pt}
\caption{\bf a versus b}
\end{figure}

它会导致出现警告,提示“输入行上可能存在没有描述的图像...”。我想知道为什么会出现这个警告。

答案1

根据您引用的警告,我假设您使用了acmart文档类。

引自手册版本 1.56:

2.6 图片描述 Blockquote

一些 ACM 出版物的读者可能存在视觉障碍。这些读者可能会使用画外音软件大声朗读论文。为他们提供论文中使用的每幅图像的描述非常重要。该命令\Description[<short description>]{<long description>}应放在每个 figure 、 teaserfigure 或 marginfigure 环境中,以提供图形中使用的图像的描述。与\caption图像一起使用的 不同,\Description旨在代替图像 [...] 目前,缺少描述会在编译时生成警告。

相关内容