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:
John MacFarlane 2012-02-19 21:11:07 -08:00
parent 1ab21530b4
commit 24e3a65167

View file

@ -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