为了在 LaTeX 中插入图像,我执行以下操作,但收到错误消息,提示未找到文件“me.jpg”。
我应该将图像文件保存在哪里才能执行此操作?
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics[width=0.2\textwidth]{me.jpg}
\caption{Some figure}
\end{figure}
\end{document}
答案1
如果它位于主 .tex 文件的同一目录中,LaTeX 会查找它me.jpg
。如果不在,则需要说明它在哪里。
我知道两种解决方案,第一个是me.jpg
在命令中包含路径includegraphics
,就像\includegraphics{/figures/me.jpg}
。
另一个选择是使用\graphicspath
序言中的命令声明文档的所有图形路径:
\graphicspath{{figures}{../myfigures}...}