includegraphics 图像分辨率停止工作

includegraphics 图像分辨率停止工作

使用 texlive 2016 和 TeXstudio 2.12.6,以下示例有效:

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[resolution=300]{figure.png}
\end{document}

然后我这样做了:

tlmgr update --self
tlmgr update --all

现在,同样的例子会出现以下错误:

! Package keyval Error: resolution undefined.

我怎样才能弄清楚发生了哪些变化以及在哪些包中发生了变化?

答案1

pdftex.def解析键是“出现”但不受支持且未记录的大量键之一。作为将支持带回“内部”到 LaTeX 团队的graphics过程的一部分,这些不同的键被删除,.def一些然后在核心中重新引入graphics(并记录)。resolution目前不支持该密钥:团队需要找到将其添加到主体的充分理由graphics

相关内容