>>> "Uwe" == Uwe Brauer writes: > Hi > I would like to generate the following array environment with orgtbl. > \begin{equation*} > % BEGIN RECEIVE ORGTBL laplace > \begin{array}{|c|c|} > f(x) & \mathcal{L} \left\{ f(x) \right\} =F(s) \\ \hline > \end{array} > % END RECEIVE ORGTBL laplace > \begin{comment} > #+ORGTBL: SEND laplace orgtbl-to-latex :latex-default-table-mode math :environment array > | f(x) | \mathcal{L} \left\{ f(x) \right\} =F(s) | > \end{comment} > \end{equation*} > How can I achieve {|c|c|} and \hline when translating the table to > latex? I think I asked something similar a while ago and the correct answer seems to be: \begin{equation} \label{eq:myarray:1} \begin{array}{l|l|} % BEGIN RECEIVE ORGTBL test 17 & 8\\ \hline % END RECEIVE ORGTBL test \end{array} \end{equation} \begin{comment} #+ORGTBL: SEND test orgtbl-to-latex :lend "\\\\ \\hline" :environment array :splice t | 17 | 8 | \end{comment}