Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AsciiMath syntax in ipython notebook #4052

Closed
MySchizoBuddy opened this issue Aug 17, 2013 · 2 comments
Closed

AsciiMath syntax in ipython notebook #4052

MySchizoBuddy opened this issue Aug 17, 2013 · 2 comments
Milestone

Comments

@MySchizoBuddy
Copy link

Mathjax already contains support for asciimath syntax beside the latex syntax. AsciiMath syntax isn't enabled in the /static/notebook/js/mathjaxutils.js. This is easily done by adding

MathJax.Hub.Config({
     asciimath2jax: {
         delimiters: [['`','`']]
     }
});

to mathjaxutils.js file. This allows asciimath syntax to be surrounded by back ticks `

Further detail is avialable on mathjax documentation http://docs.mathjax.org/en/latest/asciimath.html

@ellisonbg
Copy link
Member

Our choice to use only LaTeX mode was deliberate. This makes it possible to convert to LaTeX without any problems, which is a big part of IPython.nbconvert. I don't see us enabling asciimath.

@Carreau
Copy link
Member

Carreau commented Aug 17, 2013

Moreover backticks are already taken by markdown.
Closing.

@Carreau Carreau closed this as completed Aug 17, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants