Jump to content

Changing the staff size

From LilyPond wiki
Revision as of 14:15, 12 January 2026 by Lemzwerg (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The simplest way to resize staves is to use

 #(set-global-staff-size size)

To resize an individual staff’s size, you can use the properties staff-space and fontSize.

\version "2.24"

<<
  \new Staff \relative c'' {
    \dynamicDown c8\ff c c c c c c c
  }
  \new Staff \with {
    fontSize = #-3
    \override StaffSymbol.staff-space = #(magstep -3)
  } \relative c {
    \clef bass c8 c c c c\f c c c
  }
>>