Jump to content

Ambitus

From LilyPond wiki
Revision as of 12:54, 6 December 2025 by Jean Abou Samra (talk | contribs) (Reverted edit by 85.208.84.179 (talk) to last revision by Lemzwerg)

Ambitus indicate pitch ranges for voices.

Accidentals only show up if they are not part of the key signature. AmbitusNoteHead grobs also have ledger lines.

\version "2.24"

\layout {
  \context {
    \Voice
    \consists "Ambitus_engraver"
  }
}

<<
  \new Staff {
    \relative c' {
      \time 2/4
      c4 f'
    }
  }
  \new Staff {
    \relative c' {
      \time  2/4
      \key d \major
      cis4 as'
    }
  }
>>