vim-markdown-composer
vim-markdown-composer copied to clipboard
Support LaTeX aligned environment
Simple LaTeX equations are handled correctly
$$
a = b
$$
But aligned environment is not:
$$
\begin{aligned}
a & = b \\
c & = d \\
\end{aligned}
$$

I need this too.
Even in markdown files this happens. While
$$
a = b
$$
is good,
$$
a = b\\
c = d\\
$$
gives the same thing back, but it should be equivalent to a non-numbered align in markdown, like shown in @nadya-p 's snapshot.
(I do know that in pure LaTeX indeed \\ are ignored in displaymath of $$ type.)
Any update on this?
Okay. I want to add that
$$
a = b\\\ c=d
$$
is working to give the non-numbered align correctly. I wonder why \\\ is needed?
Also, adding the newline breaks the equation.
This is basically enough for me, because I can get around these changes. Having them converted to the usual case would be a bonus however!