我有几个通过 读取的 CSV 文件DTLloaddb
。这些文件分散在多个文件夹中。到目前为止,DTLloaddb
似乎需要文件名的直接(绝对或相对)路径。这里有类似graphicspath
datatool 数据库的东西吗?
\documentclass{standalone}
\usepackage{datatool}
\begin{filecontents*}{someremotedir/data.csv}
x y
1 2
3 4
\end{filecontents*}
\begin{document}
\DTLloaddb[noheader=false]{coordinates1}{data.csv}
\end{document}