在Latex / tex表格

时间:2015-05-01 18:31:29

标签: lua latex tex tabular

我有lua中的数据,可以访问LaTeX / TeX文档(它是一个数组)。 我尝试以LaTeX表格形式显示此数据。 我尝试了几种方法,但都失败了:(。这是一个例子:

\begin{tabular}{|c|c|c|}\hline 
A&B&C\\ \hline
2010 & 2,78 &\\ \hline
\luaexec{for i=1,nA do;
tex.print(i.."& "..data_a[1][i].." &"..data_a[2][i]..[[\\ \hline]]);
end;}
\end{tabular}

我有这个错误:“使用@@数组与其定义不匹配”。 基本上,除非我尝试在循环中放置换行符,否则一切都会有效。

欢迎任何想法!!

1 个答案:

答案 0 :(得分:0)

这很有用!

\begin{tabular}{|c|c|c|c|}\hline  A&B&C&D\\ \hline
\luaexec{for i=1,nA do; tex.print(i.."& "..data_a[1][i].." &"..data_a[2][i].."&\\\\ \\hline") end}
\end{tabular}