diff options
| author | John MacFarlane <[email protected]> | 2025-08-11 17:35:56 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-08-11 17:40:41 -0700 |
| commit | 0bbbdbcdb6282c7f63bdc9617455ec088fe7779b (patch) | |
| tree | 0e1bd192bb2b687d1d205eab3898d6f27ae81135 /test/command/macros.md | |
| parent | 6b2f66507a04b9071fdc2580488594f050ff4a83 (diff) | |
LaTeX reader/writer: change handling of math environments.
Certain environments in LaTeX will trigger math mode and can't
occur within math mode: e.g., `align` or `equation`. Previously
we "downshifted" these, parsing an `align` environment as a
Math element with `aligned`, and an `equation` environment as a
regular display math element. With this shift, we put these in
Math inlines but retain the original environments.
This works because:
1) texmath handles these environments just fine,
2) and so does MathJax;
3) when writing LaTeX we detect these environments in Math elements
and emit them verbatim instead of putting them in `$..$` or
`$$..$$`.
Closes #9711. Closes #9296.
Diffstat (limited to 'test/command/macros.md')
| -rw-r--r-- | test/command/macros.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/macros.md b/test/command/macros.md index 86f10ea1b..d90498e35 100644 --- a/test/command/macros.md +++ b/test/command/macros.md @@ -61,9 +61,9 @@ x &= y\\ ^D \(5-67\) -\[\begin{aligned} +\begin{align} x &= y\\ -\end{aligned}\] +\end{align} \emph{hi} |
