我怎样才能引用位于我的主目录中的文件(例如\includegraphics{}
)(我在 Linux 上)?
\documentclass{article}
\usepackage{graphicx}
\begin{document}
not working: $\sim$/foo.png
%%\includegraphics{~/foo.png}
not working either: \$HOME/foo.png
%%\includegraphics{$HOME/foo.png}
\end{document}
答案1
\includegraphics{foo}
如果您的主目录在您的TEXINPUTS
路径中,则会起作用,或者\includegraphics{\string~/foo}
应该在大多数系统上起作用。