-
Notifications
You must be signed in to change notification settings - Fork 811
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
Align Environment can't work with latex_envs extnesion #720
Comments
I don't really follow what's changed from the first code example to the second? |
There is an extra whitespace. |
I have included a quick fix in commit a7b3168 lines 143-144 (the full PR #714 is pending for now - you may just copy the two lines). This is a bit ad-hoc for now. Actually the problem comes from the fact that I have to find a better way to do that because it might subsist other issues. Have a small idea of a way to go, but it will lead to refactor many things. |
This is solved in the |
The latex environments such as align,align*, aligned, split etc. can't work well in theorem, lemma etc. latex environments.
Such as
\begin{theorem} $$ \begin{aligned} f(x)&=\chi_{A_i}(x)\\ =&g(x) \end{aligned} $$ \end{theorem}
If we change code as the following:
\begin{theorem} $$ \begin{aligned} f(x)&=\chi_{ A_i}(x)\\ =&g(x) \end{aligned} $$ \end{theorem}
It works well.
The text was updated successfully, but these errors were encountered: