如何添加 pdf 图像

如何添加 pdf 图像

我正在尝试在我的tex文件中包含一个 pdf 图像,但是当我编译该tex文件时,控制台弹出以下错误消息:

!LaTeX 错误:无法确定 time_elapsed.pdf 中图形的大小(没有 BoundingBox)。

这是我的代码:

\begin{figure}
\centering
\includegraphics[scale=0.5]{time_elapsed.pdf}
\label{fig5}
\end{figure}

那么该如何解决这个问题呢?

答案1

尝试用 编译以下内容pdflatex。最简单的工作流程应该如下所示。

\documentclass[preview]{standalone}
\usepackage{graphicx}

\begin{document}
\includegraphics{example-image-a}% no need to explicitly specify the file extension.
\end{document}

您将获得如下输出。

在此处输入图片描述

有用的链接:

答案2

!LaTeX 错误:无法确定 time_elapsed.pdf 中图形的大小(没有 BoundingBox)。

这看起来非常像当您尝试包含纯 PostScript (.ps) 图像而不是封装的 PostScript (.eps) 时 latex 产生的错误。您确定使用 pdflatex 命令进行 TeX 处理吗?

相关内容