LaTeX math environment fixes. Closes #423.
`aligned` is now used instead of the nonexistent `aligned*`. `multline` instead of the nonexistent `multiline`.
This commit is contained in:
parent
1ab21530b4
commit
24e3a65167
1 changed files with 8 additions and 8 deletions
|
@ -684,14 +684,14 @@ environments = M.fromList
|
|||
, ("equation*", mathEnv Nothing "equation*")
|
||||
, ("gather", mathEnv (Just "gathered") "gather")
|
||||
, ("gather*", mathEnv (Just "gathered") "gather*")
|
||||
, ("multiline", mathEnv (Just "gathered") "multiline")
|
||||
, ("multiline*", mathEnv (Just "gathered") "multiline*")
|
||||
, ("eqnarray", mathEnv (Just "aligned*") "eqnarray")
|
||||
, ("eqnarray*", mathEnv (Just "aligned*") "eqnarray*")
|
||||
, ("align", mathEnv (Just "aligned*") "align")
|
||||
, ("align*", mathEnv (Just "aligned*") "align*")
|
||||
, ("alignat", mathEnv (Just "aligned*") "alignat")
|
||||
, ("alignat*", mathEnv (Just "aligned*") "alignat*")
|
||||
, ("multline", mathEnv (Just "gathered") "multline")
|
||||
, ("multline*", mathEnv (Just "gathered") "multline*")
|
||||
, ("eqnarray", mathEnv (Just "aligned") "eqnarray")
|
||||
, ("eqnarray*", mathEnv (Just "aligned") "eqnarray*")
|
||||
, ("align", mathEnv (Just "aligned") "align")
|
||||
, ("align*", mathEnv (Just "aligned") "align*")
|
||||
, ("alignat", mathEnv (Just "aligned") "alignat")
|
||||
, ("alignat*", mathEnv (Just "aligned") "alignat*")
|
||||
]
|
||||
|
||||
letter_contents :: LP Blocks
|
||||
|
|
Loading…
Add table
Reference in a new issue