texmaker 和 includegraphics 找不到文件

texmaker 和 includegraphics 找不到文件

我在 TeX 文档中包含图表时遇到了麻烦。我使用软件包并在序言中graphicx设置了。但是,\graphicspath

\includegraphics{smt.pdf}

给我一个文件未找到错误。我读过一些关于 pdflatex 工作目录的内容,但不知道如何在 texmaker 中更改它。我能找到的唯一与 pdflatex 相关的设置是

pdflatex -synctex=1 -interaction=nonstopmode %.tex

有人有解决方案吗?

编辑:MWE(希望这是正确的):

\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {c:/Users/../Graphs/} } 
\begin{document}

\includegraphics[scale=0.25]{leeftijd distributie.pdf} 

\end{document}

谢谢,德克

答案1

您的问题是由您调用的文件的文件名中的空格引起的。

正如解释的那样\input 或 \includegraphics 中的文件名中有空格",您应该在路径周围使用双引号符号。

\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {c:/Users/../Graphs/} } 
\begin{document}

\includegraphics[scale=0.25]{"leeftijd distributie.pdf"} 

\end{document}

相关内容