How to control spacing between an outer enum and inner bullet list

I have a list like this:

+ Item 1

  - Subitem 1
  - Subitem 2

+ Item 2

  - Subitem 1
  - Subitem 2

How can I control the spacing between the outer Item(s) and inner Subitem 1? The spacing and leading parameters don’t work for them.

Hi @KS84, I have moved your question to the Questions category, please make sure to check the category when creating a topic :slight_smile: that also means that you can select an answer.

I also added some tags, as it makes your question easier to find.

1 Like

You mean this?

#show enum: it => {
  show list: x => v(1em) + x
  it
}

+ Item 1
  - Subitem 1
  - Subitem 2
+ Item 2
  - Subitem 1
  - Subitem 2

image

Yes! This is exactly what I was looking for. Thank you!

@SillyFreak thank you!

1 Like