Latex图片等文件目录引用问题

相对路径

首先保证图片在工作目录下,如 D:\Latex\my work\ccc\my article\experiment\Observer
D:\Latex\my work\ccc\my article\为工作目录

示例插入图片

\begin{figure}[!htb]
\centering
\includegraphics[width=\hsize]{experiment/Observer/图片名.png}
\caption{ }
\label{ }
\end{figure}

绝对路径

图片可不在工作目录下,如D:\Latex\my work\ccc\CCC-LaTeX-v2.1\CCC-LaTeX-v2.1
工作目录 D:\Latex\my work\ccc\my article\

示例插入图片

\begin{figure}[!htb]
\centering
\includegraphics[width=\hsize]{D:/Latex/my work/ccc/CCC-LaTeX-v2.1/CCC-LaTeX-v2.1/图片名.png}
\caption{ }
\label{ }
\end{figure}

也可用\graphicspath{{路径名/}}
这样可直接用{图片名.png}引用图片

【注】

1、目录最好不要出现中文
2、如果目录中文件名带空格也会出现问题,具体还不清楚怎么解决。

你可能感兴趣的:(Latex图片等文件目录引用问题)