How to add a vertical space after the title in the bibliography?

Hi everyone,

I’m using BibLaTex to make my bibliography and I don’t achieve to modify the vertical space between the title of the section and the references.

Does anyone of you know how to do it ?

Thanks in advance !

You can create a nested show-set rule to only target the heading of the bibliography. Since the headings use a block internally, you can add vertical space below the heading with the parameter below.

#show bibliography: it => {
  show heading.where(level: 1): set block(below: 1cm)
  it
}

It’s perfect, thanks !