我正在使用电子表格来计算表格中的一列整数。例如此样本我通过手动数行来计算总数。
是否有可能以编程方式计算行数,以便b4
在添加更多行时可以自动更新?
\begin{spreadtab}{{tabular}{l|l}}
& @ Foo \\
@ one & 5 \\
@ two & 9 \\
@ three & 13 \\
& sum(b2:b4)
\end{spreadtab}
答案1
摘自spreadtab
手册第 17 页
有时候,给单元格命名并在以后通过名称引用它更为方便,因为这样很难记住和更改单元格的坐标。宏函数“tag()”会给单元格所在的单元格命名。
\documentclass[12pt]{article}
\usepackage{spreadtab}
\begin{document}
\begin{spreadtab}{{tabular}{l|l}}
& @ Foo \\
@ one & 5tag(start) \\
@ two & 9 \\
@ three & 13 \\
@ four & 15tag(end) \\
& sum(cell(start):cell(end))
\end{spreadtab}
\end{document}