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

Why doesn't \$ work?

+6
−0

Why isn't $1 rendering?

Both \$1 and $\$$1 failed!

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

0 comment threads

2 answers

+2
−0

Testing a fix:

$1 - that was written as \$1 .

I'm not fluent in MathJax, so I'll point to the PR and the associated issue for those who would like to take a closer look. I'm marking this status-complete based on those discussions; please let me know if there's still a problem.

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

1 comment thread

Still having trouble with $ (3 comments)
+8
−0

You need to use \\$, like this: \$1.

The reason is that MathJax is interpreted in the browser, while Markdown is interpreted in the server.

If you write \$, then Markdown sees the backslash and therefore puts the dollar sign literally into the output (which it would have done anyway), without the slash. That's what is served to the browser, where MathJax then sees it as starting math content.

If you write \\$, then Markdown sees the first backslash as escaping the second backslash, therefore the output contains \$. This gets sent to the browser where MathJax then interprets the single backslash as taking the dollar sign literally instead of interpreting it as starting or ending math content.

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

1 comment thread

Thanks. Can you pls elaborate why this hitch doesn't happen on Stack Exchange, as far as I know? (2 comments)

Sign up to answer this question »