LaTeX reader: handle subequations as inline math environment.

Closes #7883.
This commit is contained in:
John MacFarlane 2022-02-02 10:41:46 -08:00
parent 2fa8308afa
commit 6ed8999f75

View file

@ -102,6 +102,7 @@ inlineEnvironments = M.fromList [
, ("dgroup*", mathEnvWith id (Just "aligned") "dgroup*")
, ("darray", mathEnvWith id (Just "aligned") "darray")
, ("darray*", mathEnvWith id (Just "aligned") "darray*")
, ("subequations", mathEnvWith id Nothing "subequations")
]
theoremstyle :: PandocMonad m => LP m Blocks