在图中使用 natwidth 和 natheight 时不显示图像

在图中使用 natwidth 和 natheight 时不显示图像

我在我的文档中使用了以下内容:

\usepackage{graphicx}
\begin{figure}[!t]
\centering
    \includegraphics[natwidth=436pt, natheight=385pt, width=65mm]{figure1.pdf}
\end{figure}

问题是我的图像(figure1.pdf)在运行后没有显示pdfLatex模式,因为我指定了自然大小。添加和natwidth=436pt, natheight=385pt的原因是因为我想基于此从我的 tex 文件中生成和natwidthnatheightdvips回答。请问我该如何解决这个问题?

答案1

如果我正确理解了你的问题,你有 pdf 图表,但你想dvi从编译中获得输出。

如果是这种情况,您可以尝试将图像从 pdf 转换为 eps,然后使用以下命令进行编译latex

pdftocairo -eps figure1.pdf figure1.eps

或者

pdf2ps figure1.pdf && ps2eps figure1.ps

然后,在你的 latex 文件中写入:

\includegraphics[width=65mm]{figure1.eps}

并编译latex myfile.tex得到.dvi

最终dvips myfile.dvi竞选.ps

另请参阅这个答案:无法确定图形的大小

相关内容