Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Meta

Comments on Mathjax does not render new lines

Parent

Mathjax does not render new lines

+9
−0

I can't make a new-line in MathJax.

Markup:

$$1 + 2 \\ 3$$

Result:

$$1 + 2 \ 3$$

It's supposed to look something like this (but centred):

$1 + 2$
$3$

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

General comments (3 comments)
Post
+7
−0

Tl;dr, Markdown and LaTeX don't like each other

The problem lies in a conflict between the Markdown and MathJax parsers. The Markdown parser runs first[1] and uses \ as an escape character, and so \\ becomes a single backslash. The MathJax parser then only sees that single backslash, which means it won't create the newline.

This also breaks some other formulations, for example, sets:

$\{1,2,3\}$

Expected result: $\{1,2,3\}$
Actual result: ${1,2,3}$

The Markdown parser turns \{ into a literal {.

A list of backslash-escaped characters can be found here.

Workarounds

There are two ways to get around this problem.

Firstly, you can wrap the code in HTML tags. This will prevent the Markdown renderer from parsing the inside of it. Taking the earlier example, we would type

<p>$\{1,2,3\}$</p>

which turns into

$\{1,2,3\}$

You could also escape your backslashes if it comes before a markdown escape character. This method is more annoying, however, as it will break compatibility with pure LaTeX.

The previous example would be written as either \\{1,2,3\\} (escaping the backslash) or \\\{1,2,3\\\} (escaping both the backslash and braces), and a newline would be written as \\\\.

(You can use \\\ if the character following it isn't a Markdown escape character)

Note: MathJax 3 has issues with \\

If the above doesn't work, then it might be a problem with MathJax. Try using the \displaylines environment (Note: it uses three backslashes instead of two, or you can use \cr)

<p>$$\displaylines{123 \\\ 321}$$</p>

or

<p>$$\displaylines{123 \cr 321}$$</p>

will give you

$$\displaylines{123 \cr 321}$$


  1. Technically, the Markdown parser runs server side and gives the parsed document to the client, which runs MathJax on it, but all that matters here is the order. ↩︎

History
Why does this post require moderator attention?
You might want to add some details to your flag.

2 comment threads

`array` and `align` environment (9 comments)
General comments (8 comments)
General comments
wizzwizz4‭ wrote over 3 years ago

Shouldn't the Markdown parser treat $ and $$ specially, then?

Moshi‭ wrote over 3 years ago

@wizzwizz4 Maybe? The parser Codidact uses wasn't meant for latex and so doesn't have that sort of ability.

wizzwizz4‭ wrote over 3 years ago

If (if) we're modifying the Markdown parser, I wonder whether replacing MathJax with KaTeX would be a good idea, too.

Moshi‭ wrote over 3 years ago · edited almost 3 years ago

@wizzwizz4 KaTeX is great, but it sadly still isn't as good as MathJax in terms of features. If you want though, you could make a new meta post to discuss that change

celtschk‭ wrote over 3 years ago

One possibility to fix this is before passing it to MarkDown to pass it through another code which escapes all backslashes occurring inside MathJax expressions. That code would only have to detect the configured MathJax triggers (i.e. the dollar signs, and whatever else MathJax is configured to interpret as formula delimiters), but otherwise would be agnostic towards MathJax syntax (its only job would be to escape things that should not be interpreted by MarkDown so that MathJax can see them).

Wolgwang‭ wrote over 2 years ago

Nothing seems to work :-( I am trying to create new line in array and align environment.

Moshi‭ wrote over 2 years ago

Wolgwang‭ Could you post what you're trying? (Preferably in a new thread) I'll try to see what's wrong.

Wolgwang‭ wrote over 2 years ago

Moshi‭ I have created a new thread.