Re: [O] Table columns verbatim export

2014-10-31 Thread Nick Dokos
Michael Bach  writes:

> Hi,
>
> I am looking for a way to format table columns to be verbatim for the
> (latex) export.  The reason is that in the following table, the numpy
> `A[0]` will be interpreted as a footnote without a matching description
> and export will fail.
>
> || matlab| r   | numpy   |
> | element access | A(1, 1)   | A[1, 1] | A[0, 0] |
> | row access | A(1, 1:2) | A[1, ]  | @@latex: A[0]@@|

is one way - there are probably others.

Nick





[O] Table columns verbatim export

2014-10-31 Thread Michael Bach
Hi,

I am looking for a way to format table columns to be verbatim for the
(latex) export.  The reason is that in the following table, the numpy
`A[0]` will be interpreted as a footnote without a matching description
and export will fail.

|| matlab| r   | numpy   |
| element access | A(1, 1)   | A[1, 1] | A[0, 0] |
| row access | A(1, 1:2) | A[1, ]  | A[0]|

I had a look into the manual and maybe relatedly found section 3.5.3
"Emacs Lisp forms as formulas" with string manipulation, e.g. wrapping
== or ~~ around the string, but I am really just concerned with export.

Is there an obvious way I am missing?

Thanks and Best Regards,
Michael