On Tuesday, 12 Apr 2016 at 20:15, Nicolas Goaziou wrote:
> You can write a custom back-end. All the TBLFM information is stored in
> the table element.
Thanks for the suggestion. I will explore this option.
--
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-705-g716e33
Hello,
Eric S Fraga writes:
> For pedagogical reasons, it would be nice to be able, in some case, to
> export a table (to LaTeX typically) with annotations (i.e. column and
> row labels) and, more importantly, the equations used to populate the
> table. Is this possible somehow?
>
> Obviously,
Okay, a start on this using hooks:
#+begin_src emacs-lisp
(defun esf/process-table-tblfm (backend)
"Process the TBLFM line to make it available for export as a verbatim block"
(while (re-search-forward "^ *#\\+TBLFM:" (point-max) t)
(replace-match ":")
(let ((start (point))
On Monday, 11 Apr 2016 at 13:22, Nick Dokos wrote:
> Bastien's table formulas tutorial does it this way:
>
> * Column formulas and field formulas
>
> Ok, so now we have this table:
>
> : | Student | Maths | Physics | Mean |
> : |--+---+-+--|
> : | Bertrand |13 | 09
Eric S Fraga writes:
> Hello,
>
> For pedagogical reasons, it would be nice to be able, in some case, to
> export a table (to LaTeX typically) with annotations (i.e. column and
> row labels) and, more importantly, the equations used to populate the
> table. Is this possible somehow?
>
> Obviousl
Hello,
For pedagogical reasons, it would be nice to be able, in some case, to
export a table (to LaTeX typically) with annotations (i.e. column and
row labels) and, more importantly, the equations used to populate the
table. Is this possible somehow?
Obviously, for the row/column labelling, I co