抱歉,这个问题可能有点反问,
我有我的主要乳胶文件
C:/latex/thesis.tex
我将其他章节拆分到另一个章节文件夹中
C:/latex/chapters/
我的图片位于一个单独的文件夹中
C:/latex/images/
问题出在我的章节 tex 文件中,我无法找到我的图片。希望有人能告诉我找到图片的最佳方法是什么。
目前,我已经设定
%!TEX root = ../thesis.tex
每章开头的 .tex 文件
当我调用图像时:
\includegraphics[height=.4\textwidth]{images/general-scheduling}
我收到错误:
! LaTeX Error: File `images/general-scheduling' not found
答案1
我不太熟悉 Windows 相对路径,但在 UNIX 系统中你应该使用:
\includegraphics[height=.4\textwidth]{../images/general-scheduling}
LaTeX将会在错误的路径images/general-scheduling
中寻找图像。chapters/image/