emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Latex package nicefrac for HTML export


From: Lawrence Bottorff
Subject: Re: [O] Latex package nicefrac for HTML export
Date: Sat, 20 Feb 2016 02:29:51 +0000

I found this and added this to my org file:

. . .
#+begin_html
<script type="text/x-mathjax-config">
        MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { var MML = MathJax.ElementJax.mml, TEX = MathJax.InputJax.TeX; TEX.Definitions.macros.bfrac = "myBevelFraction"; TEX.Parse.Augment({ myBevelFraction: function (name) { var num = this.ParseArg(name), den = this.ParseArg(name); this.Push(MML.mfrac(num,den).With({bevelled: true})); } }); });
    </script>
#+end_html
. . .

then this:

$\pi = \bfrac{C}{d}$

has the slanted fraction look in HTML.

On Fri, Feb 19, 2016 at 9:35 PM, Marcin Borkowski <address@hidden> wrote:

On 2016-02-19, at 22:26, Lawrence Bottorff <address@hidden> wrote:

> I've got Latex's *nicefrac *working fine for a Latex export. I've put
>
> #+LaTeX_HEADER: \usepackage{nicefrac}
>
> at the top of my file, and this inlined
>
> $\pi = \nicefrac{C}{d}$
>
> But for an HTML export, it's not seeing it, giving back π=\nicefracCd. Is
> there anything I can do to get my HTML export to handle nicefrac properly?

Quick googling reveals that MathJax doesn't seem to support \nicefrac.
If you don't need regular fractions (maybe you're writing a cookbook?),
in a pinch you can say

#+LaTeX_HEADER: \usepackage{nicefrac}   \let\frac=\nicefrac

and just use \frac.

> LB

Best,

--
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Faculty of Mathematics and Computer Science
Adam Mickiewicz University


reply via email to

[Prev in Thread] Current Thread [Next in Thread]