我正在尝试将 pdf 图像添加到我的文档中,但每次运行代码时,它都会抛出“缺少数字,视为零”错误。我怀疑这可能是因为图像的文件名包含下划线,但我不确定如何解决这个问题。我的代码如下:
\documentclass{article}
\usepackage{graphicx, underscore}
% File path to graphics
\graphicspath{{C:/Users/joshm/OneDrive/Documents/Research/Figures and Images/}}
\begin{document}
\begin{figure}[hp]
\includegraphics[width=\linewidth]{Tromas_Data_With_Model_Debug_(2).pdf}
\caption{A plot of Tromas' model arranged by leaf.}
\label{fig:cartoon}
\end{figure}
\end{document}