]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ambitus.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / ambitus.ly
1 \header {
2     texidoc = "Ambituses indicate pitch ranges for voices.
3
4 Accidentals only show up if they're not part of key
5 signature. @code{AmbitusNoteHead} grobs also have ledger lines.
6
7 "
8 }
9 \version "2.12.0"
10
11 \layout {
12     ragged-right = ##t
13     \context {
14         \Voice
15         \consists Ambitus_engraver
16     }
17 }
18
19 \relative
20 <<
21     \new Staff {  \time  2/4 c4 f' }
22     \new Staff \relative {
23         \time  2/4
24         \key d \major
25         cis as'
26     }
27 >>