如何从 .cls 中包含相对放置的图像?

如何从 .cls 中包含相对放置的图像?

这是我的foo.cls

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{foo}[test]
\RequirePackage{graphicx}
\newcommand\printIt{\includegraphics{images/pic.pdf}}

该文件images/pic.pdf保留在 旁边foo.cls

然后,这是我的bar.tex,它位于其他目录中:

\documentclass{/code/foo/foo}
\begin{document}
\printIt
\end{document}

我越来越:

! LaTeX Error: File `images/pic.pdf' not found.

引用图片的正确方法是什么.cls

相关内容