I come from this question: How can I automatically calculate sums in a LaTeX table?
I want to do the same but with "timing" calculations. So my example would look like this:
\documentclass{article}
\usepackage{spreadtab}
\begin{document}
\begin{spreadtab}{{tabular}{llll|l}}
@ a & @ xyz & @ duration & @ starttime & @ endtime \\
@ a1 & 5 & 00:03 & 00:00 & add(c2, d2) \\
@ a2 & 9 & 00:01 & (automatically value of previous endtime) & add(c3, d3) \\
% and so on
\end{spreadtab}
\end{document}
I have to do do dozens of These which will change from time to time, and i only want to change the Duration and every other will be calculated.
I would stronly prefere a solution without luaTeX.
