Trying to use display math \[ \]
inside a starred enumerate*
environment gives an error
Bad math environment delimiter
or
Missing $ inserted.
I can imagine this is by design, and that the idea is that enumerate*
should only contain inline material. But I like \[ \]
inside enumerate*
; Is there any way to do this?
MWE
\documentclass{article}\usepackage[inline]{enumitem}\begin{document}\begin{enumerate*} \item Text \[ 0 = 1 \] % Bad math environment delimiter \item Text \[ 0_1 \] % Missing $ inserted.\end{enumerate*}\end{document}