From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: MathJax SVG Date: Fri, 27 Jun 2014 11:58:45 -0400 Message-ID: <878uoiqr7u.fsf@alphaville.bos.redhat.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52811) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0YYP-00025T-1p for emacs-orgmode@gnu.org; Fri, 27 Jun 2014 11:59:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X0YYI-0000ST-0w for emacs-orgmode@gnu.org; Fri, 27 Jun 2014 11:59:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:34034) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0YYH-0000S8-R9 for emacs-orgmode@gnu.org; Fri, 27 Jun 2014 11:59:01 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X0YYG-0005u2-Sx for emacs-orgmode@gnu.org; Fri, 27 Jun 2014 17:59:00 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 Jun 2014 17:59:00 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 Jun 2014 17:59:00 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org John Tait 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