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

Inline mathjax in image caption renders as display #2601

Open
2 tasks done
TomClabault opened this issue Jul 25, 2024 · 3 comments
Open
2 tasks done

Inline mathjax in image caption renders as display #2601

TomClabault opened this issue Jul 25, 2024 · 3 comments

Comments

@TomClabault
Copy link

Have you checked that your issue isn't already filed?

  • I read through FAQ and searched through the past issues, none of which addressed my issue.
  • Yes, I have checked that this issue isn't already filed.

Bug description

Inline mathjax in image caption renders as display

How to reproduce the bug

<div class="caption">
    Inline $$Mathjax$$ isn't inline.
</div>

Error messages and logs

No response

What operating system are you using?

Windows

Where are you seeing the problem on?

Running locally with Docker

More info

Expected result:
Should render all 4 words on the same line

Result observed:
image

Note that this isn't really only related to image captions. Having the Mathjax code in a simple <div> with no class renders the same (although not centered within the page).

@m-julian
Copy link
Contributor

@TomClabault From the mathjax documentation :

The default math delimiters are $$...$$ and \[...\] for displayed mathematics, and \(...\) for in-line mathematics. Note in particular that the $...$ in-line delimiters are not used by default. That is because dollar signs appear too often in non-mathematical settings, which could cause some text to be treated as mathematics unexpectedly.

The $$...$$ should be used for displayed mathematics, which are on separate lines. You should be able to use $...$ or \(...\) for the in-line mathematics. Can you try these instead?

@CodeLikeAGirl29
Copy link

The issue you're encountering happens because $$ in MathJax is used for display math, not inline math. To render inline math in MathJax, you should use single dollar signs $...$ instead of double dollar signs $$...$$.

Here’s how to fix it:

<div class="caption">
    Inline $Mathjax$ isn't inline.
</div>

If you want to configure MathJax to recognize $$ for inline math as well, you'll need to adjust the MathJax configuration. Add the following configuration in your MathJax setup:

MathJax = {
  tex: {
    inlineMath: [['$', '$'], ['\\(', '\\)']],
    displayMath: [['$$', '$$'], ['\\[', '\\]']]
  }
};

This config ensures that $...$ is used for inline math and $$...$$ for display math.

#hacktoberfest

@TomClabault
Copy link
Author

Looks good and simple, waiting on #2795 to try this out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants