多图形目录

多图形目录

以下是我想做的事情。我正在编写一个包含许多图形的文档。为了管理这些图形,将不同类型的图形保存在不同的文件夹中对我来说非常方便。现在,在 .tex 文件中,我如何将图形路径更改为图形所在的文件夹。如果我的图形位于多个不同的文件夹中,那么我需要多次更改目录。您能建议如何做到这一点吗?

答案1

\graphicspath在序言中使用

例如:

\documentclass{article}
\usepackage{graphicx}

\graphicspath{{./img/}{./pictures/}}

\begin{document}
    \includegraphics{one}   %picture named one in directory img
    \includegraphics{two}   %picture named two in directory img
    \includegraphics{three} %picture named three in directory pictures
\end{document}

相关内容