]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ambitus.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / ambitus.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "Ambitus indicate pitch ranges for voices.
5
6 Accidentals only show up if they're not part of key
7 signature.  @code{AmbitusNoteHead} grobs also have ledger lines.
8 The noteheads are printed in overstrike, so there's only one
9 visible; the accidentals are prevented from colliding. 
10 "
11 }
12
13 \layout {
14   \context {
15     \Voice
16     \consists "Ambitus_engraver"
17   }
18 }
19
20 <<
21   \new Staff \relative c'{
22     \time 2/4
23     c4 f'
24   }
25   \new Staff \relative c' {
26     \time  2/4
27     \key d \major
28     cis as'
29   }
30   \new Staff \relative c' {
31     \time 2/4
32     c4 cis
33   }
34 >>