executablebooks / jupyter-book

Create beautiful, publication-quality books and documents from computational content.

Home Page:http://jupyterbook.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Display math in admonition

tyl012 opened this issue · comments

Describe the bug

issue
I tried to put some content with display math inside an admonition block, but the output html form is incorrect.

Reproduce the bug

I tried to put the following content

A linear map $f:\mathbb{C}\to\mathbb{C}$ is of the form
$$f\left(z\right)=az+b$$
where $a,b\in\mathbb{C}$.

in an admonition block

```{tip} 
A linear map $f:\mathbb{C}\to\mathbb{C}$ is of the form
$$
f\left(z\right)=az+b
$$
where $a,b\in\mathbb{C}$.
````

However, the output in html file is apparently incorrect, comparing the upper part and the middle one in the screenshot

issue_prtscr

The indentation of the line following the displayed part is wrong, and strange spacing was added around the inline math.
The lower part of the screenshot shows a simple fix of the issue when I add a line before the double dollar sign of the display math (adding a line after the display math works equally well)

```{tip} 
A linear map $f:\mathbb{C}\to\mathbb{C}$ is of the form

$$
f\left(z\right)=az+b
$$
where $a,b\in\mathbb{C}$.
```

List your environment

My environment is

Jupyter Book      : 1.0.0
External ToC      : 1.0.1
MyST-Parser       : 2.0.0
MyST-NB           : 1.0.0
Sphinx Book Theme : 1.1.2
Jupyter-Cache     : 1.0.0
NbClient          : 0.7.0

Thanks for opening your first issue here! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out EBP's Code of Conduct. Also, please try to follow the issue template as it helps other community members to contribute more effectively.

If your issue is a feature request, others may react to it, to raise its prominence (see Feature Voting).

Welcome to the EBP community! 🎉