]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ambitus.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / ambitus.ly
1 \version "2.12.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 "
9 }
10
11 \layout {
12   \context {
13     \Voice
14     \consists "Ambitus_engraver"
15   }
16 }
17
18 <<
19   \new Staff \relative c'{
20     \time 2/4
21     c4 f'
22   }
23   \new Staff \relative c' {
24     \time  2/4
25     \key d \major
26     cis as'
27   }
28 >>