John Tait <johngt...@gmail.com> writes: > Hi > > I'd like to use org-mode and MathJax to produce maths in SVG format. > > MathJax's CSS maths is wonderful but I need SVG for a specific purpose > (printing). > > If I have a simple file like below, can I configure MathJax to render SVG? >
Haven't tried but does http://docs.mathjax.org/en/latest/options/SVG.html help? > Thanks > > John > > #+TITLE: Maths test > > #+LATEX_HEADER: \usepackage{amsmath} > > #+TEX > > $$\begin{matrix} > a & b & c \\ > d & e & f \\ > g & h & i > \end{matrix}$$ > > #+END_TEX You'll need to fix the example a bit though: #+begin/end_latex. I would also recommend \[ and \] for display math delimiters: double dollar signs should not be used. Nick