对于我的实验室实验,我编写了用我的测量值进行计算的程序。目前,这些程序打印出终端中所有数据的简单摘要,如下所示:
U = 2.0 ± 0.1 V
I = 6.0 ± 0.2 A
因为我必须手写它们,所以我只会用它们来写带有文本中值的散文。
从现在开始,我们可以在计算机上创建我们的报告。我用 LaTeX 编写报告,并希望将程序的结果自动插入到文本中。这样,我可以重新运行程序,而无需将结果复制粘贴到文本中。由于测量和结果非常不同,我考虑使用模板语言。由于我已经使用 Python,所以我对 Jinja 的想法是这样的:
文章.tex
We measured the voltage $U = \unit{<< u_val >> \pm << u_err >>}{\volt}$ and the
current $I = \unit{<< i_val >> \pm << i_err >>}{\ampere}$. Then we computed the
resistance $R = \unit{<< r_val >> \pm << r_err >>}{\ohm}$.
All our measurements:
\begin{table}[h]
\begin{tabular}{rrr}
$U/\volt$ & $I/\ampere$ \\
\hline
%< for u, i in data: ->%
$<< u >>$ & $<< i >>$ \\
%< endfor ->%
\end{tabular}
\end{table}
程序.py
# Setting up Jinja
env = jinja2.Environment(
"%<", ">%",
"<<", ">>",
"[§", "§]",
loader=jinja2.FileSystemLoader(".")
)
template = env.get_template("article.tex")
# Measurements.
u_val = 6.2
u_err = 0.1
i_val = 2.0
i_err = 0.1
data = [
(3, 4),
(1, 4.0),
(5, 1),
]
# Calculations
r_val = u_val / i_val
r_err = math.sqrt(
(1/i_val * u_err)**2
+ (u_val/i_val**2 * i_err)**2
)
# Rendering LaTeX document with values.
with open("out.tex", "w") as f:
f.write(template.render(**locals()))
出.tex
We measured the voltage $U = \unit{6.2 \pm 0.1}{\volt}$ and the current $I =
\unit{2.0 \pm 0.1}{\ampere}$. Then we computed the resistance $R = \unit{3.1
\pm 0.162864974749}{\ohm}$.
All our measurements:
\begin{table}[h]
\begin{tabular}{rrr}
$U/\volt$ & $I/\ampere$ \\
\hline
$3$ & $4$ \\
$1$ & $4.0$ \\
$5$ & $1$ \\
\end{tabular}
\end{table}
结果看起来相当不错,只是一个数字需要四舍五入。
我的问题是:这是一个很好的方法,还是有更好的方法将数字输入文档?