I’d like to have nested enumerate environments like this:
1 (a) foo
(b) bar
(c) baz
Instead of:
1
(a) foo
(b) bar
(c) baz
I’m aware it’s possible to remove the newline between parent and nested enumerates by editing the tm file outside TeXmacs:
<\enumerate-numeric>
<item><\enumerate-alpha>
<item>foo
<item>bar
<item>baz
</enumerate-alpha>
<item> ...
</enumerate-numeric>
However, within TeXmacs, it doesn’t allow me to delete this newline, not even in source code editing mode. Is it possible to disable this enforced newline behavior or define a new environment that behaves differently?