值保存在文件中(value.txt
假設是 )。命令
\SI{\input{value.txt}}{\someunit}
給出錯誤:
Argument of \input has an extra }
如何從外部文件讀取數字並將其與 一起使用\SI
?
答案1
您必須使用 TeX 命令讀取該檔案:
\documentclass{article}
\usepackage{siunitx}
\def\inputval{0}
\newread\inputFile
\let\oldSI\SI
\renewcommand*{\SI}[3][]{%
\IfFileExists{#2}{
\openin\inputFile=#2
\read\inputFile to \inputval
\closein\inputFile
\oldSI[#1]{\inputval}{#3}
}{\oldSI[#1]{#2}{#3}}
}
\begin{document}
\SI{value.txt}{\metre} % use \SI like always, but with input file
\oldSI{5}{\metre} % \oldSI does work like the old \SI ;)
\end{document}
當然,這可以大大改進(檢查格式是否正確等),但這就是要走的路。