-----Paul RIVIER wrote: -----
> I take this opportunity to ask you if there is a
> work in progress to include a latex export as well.
I don't know of anybody that is working on this.
To generate LaTeX output for fractions and matrices,
load 'mactex-utilities':
(%i1) load("mactex-utilities")$
(%i2) tex(a/b);
$$\frac{a}{b}$$
(%o2) false
(%i3) tex(matrix([1,2],[3,4]));
$$\begin{pmatrix}1 & 2 \\ 3 & 4 \\ \end{pmatrix}$$
(%o3) false
Barton