I want to use hidden bullet list for local customized paragraph space, but the indent can’t be omitted, is there any workaround? Thank!
#lorem(5)
#lorem(5)
#set list(marker: none)
- #lorem(5)
- #lorem(5)
I want to use hidden bullet list for local customized paragraph space, but the indent can’t be omitted, is there any workaround? Thank!
#lorem(5)
#lorem(5)
#set list(marker: none)
- #lorem(5)
- #lorem(5)
In this case you just need to set:
#set list(marker: none, body-indent: 0em)
where body-indent
represents the spacing between the marker and the body of each item.
I believe body-indent
is the parameter that you are looking for:
#set list(marker: none, body-indent: 0pt)
- #lorem(5)
- #lorem(5)
Thank you for pointing this out.