We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If a space is included after \begin or \end and the following brace, the environment is not rendered.
Ex. \begin{equation} works, but \begin {equation} does not.
\begin{equation}
\begin {equation}
(I didn't see this addressed in the docs or in previous Github issues.)
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8" /> <script id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" ></script> </head> <body> <p> No spaces: </p> \begin{equation} y=mx+b \end{equation} <p> Space after begin: </p> \begin {equation} y=mx+b \end{equation} <p> Space after end: </p> \begin{equation} y=mx+b \end {equation} </body> </html>
The text was updated successfully, but these errors were encountered:
You are correct, the search pattern for the \begin command doesn't include spaces. I will look into fixing that.
\begin
Sorry, something went wrong.
Allow spaces after \begin, \end, and \ref when finding math delimiter…
fa7674d
…s. (mathjax/MathJax#2494)
I have made a PR to resolve the issue. Thanks for the report!
Merge pull request #534 from mathjax/issue2494
ba84604
Allow spaces after \begin, \end, and \ref when finding math delimiters. (mathjax/MathJax#2494)
Fixed in v3.1 released today.
No branches or pull requests
Issue Summary
If a space is included after \begin or \end and the following brace, the environment is not rendered.
Ex.
\begin{equation}
works, but\begin {equation}
does not.(I didn't see this addressed in the docs or in previous Github issues.)
Supporting information:
The text was updated successfully, but these errors were encountered: