Ambitus
Appearance
	
	
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.0"
\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'
    }
  }
>>