You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first reason is that IEEEeqnarray is not covered in LaTeX.sublime-syntaxhttps://github.com/sublimehq/Packages/blob/master/LaTeX/LaTeX.sublime-syntax. Even after adding it (currently, it seems cumbersome to extend a syntax definition -- perhaps IEEEeqnarray should be included in the syntax definition shipped with Sublime Text?), additional care would have to be taken of the alignment parameter of IEEEeqnarray.
This commit
1. adds support for `\begin{IEEEeqnarray}` math environments.
specified by: https://moser-isi.ethz.ch/docs/typeset_equations.pdf
inspired by: SublimeText/LaTeXTools#1413
2. fixes `meta.environment.math.block` scope by removing incomplete `.be`.
3. fixes `\\end` scope using `keyword.control.flow.end.latex`.
This commit...
1. adds support for `\begin{IEEEeqnarray}` math environments.
specified by: https://moser-isi.ethz.ch/docs/typeset_equations.pdf
inspired by: SublimeText/LaTeXTools#1413
2. fixes `meta.environment.math.block` scope by removing incomplete `.be`.
3. fixes `\end` scope using `keyword.control.flow.end.latex`.
The math live preview does not work for the
IEEEeqnarray
environment which is commonly used for multiline equations (http://moser-isi.ethz.ch/docs/typeset_equations.pdf).The first reason is that
IEEEeqnarray
is not covered inLaTeX.sublime-syntax
https://github.com/sublimehq/Packages/blob/master/LaTeX/LaTeX.sublime-syntax. Even after adding it (currently, it seems cumbersome to extend a syntax definition -- perhapsIEEEeqnarray
should be included in the syntax definition shipped with Sublime Text?), additional care would have to be taken of the alignment parameter ofIEEEeqnarray
.This topic was touched upon in #883 and #936.
The text was updated successfully, but these errors were encountered: