使用 \includegraphics 时出现错误“!缺少 $ 插入。”

使用 \includegraphics 时出现错误“!缺少 $ 插入。”

我使用以下代码来包含一个旋转的图形,但由于此错误而失败。我发现问题出在\includegraphics但我看不出出了什么问题。

\documentclass{article} 

\usepackage{graphicx}
\usepackage{rotating}

\begin{document} 

\graphicspath{ {D:\Update} } 
\begin{sidewaysfigure}
\centering
\includegraphics{figure1.png}
\end{sidewaysfigure}

\end{document} 

答案1

这是因为\Update此处将其解释为宏。
在 LaTeX 文档中,您需要在文件路径中使用/而不是\。还需要尾随,/因为稍后文件名将直接放在路径后面。

因此你应该\graphicspath像这样使用:\graphicspath{{D:/Update/}}

相关内容