如何在 LaTeX 中插入 pdf(作为图形文件)

如何在 LaTeX 中插入 pdf(作为图形文件)

我正在尝试将一些现成的图像 PDF 文件插入到我的 LaTeX 代码中。

(我使用 pdfLaTeX,我的经销商是 TeXnicCenter。)

但我会收到这个错误:

Package pdftex.def Error: File 'fig1.pdf' not found.

我已经尝试过将fig1not fig1.pdf、将.pdf.eps文件都放在给定的目录中,但什么都没改变。

我的代码是:

\documentclass[a4paper,10pt, reqno]{amsbook}
\usepackage{graphicx}
\graphicspath{F:/(some path here...)/pdfs/}
\DeclareGraphicsExtensions{.pdf,.eps}



\begin{document}

\begin{figure}[!htb]
\centering
\includegraphics[width=0.7\textwidth]{fig1.pdf}
\caption{Digraph.}
\label{fig:digraph}
\end{figure}

\end{document}

相关内容