我有一个名为(*.table-format!)的外部文件,其中包含其内容jobname.word.table
# aaa
# bbb
# x y type
3.1415927e+000 5.0000000e+000 i
2.0000000e+000 3.0000000e+000 i
(顺便说一句:我无法改变这种风格......)
我想读出值“5.0000000e+000”。
我可以用 来做那件事datatool.sty
吗?
我\DTLloaddb{test}{\jobname.aaa.table}
得到'\DTLloaddb{test}{\jobname.aaa.table}...'
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.aaa.table}
# aaa
# bbb
# x y type
3.1415927e+000 5.0000000e+000 i
2.0000000e+000 3.0000000e+000 i
\end{filecontents*}
\documentclass[]{article}
\usepackage{datatool}
\begin{document}
\section{Does not work}
%\DTLloaddb{test}{\jobname.aaa.table}
\end{document}