这是来自一个文件的示例,该文件曾经在 MiKTeX 下与 pdflatex 完美运行。但现在我收到有关文件未找到的错误。我最近确实更新了 MiKTeX,但不明白为什么这会带来任何变化。
\documentclass[pdftex]{article}
\usepackage{graphicx}
\usepackage{grffile}
\begin{document}
\includegraphics{../Pictures/s}
\end{document}
但是,如果我添加一个 graphicspath 命令,那么它就会突然起作用,即使 ../Pictures/s 与 graphicspath 无关!
\documentclass[pdftex]{article}
\usepackage{graphicx}
\usepackage{grffile}
\graphicspath{{c:/Users/helmeras_adm/Documents/Astronomy/Pictures/}}
\begin{document}
\includegraphics{../Pictures/s}
\end{document}
写入 \includegraphics{c:/Users/helmeras_adm/Documents/Astronomy/Pictures/s} 确实有效,但似乎带有相对路径名的 includegraphics 不起作用,除非我添加(看似不相关的)graphicspath。
我认为自己对 LaTeX 相当在行,但现在感觉自己很笨。如能得到任何帮助,我将不胜感激!谢谢!