]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-scordatura.ly
release: 1.3.145
[lilypond.git] / input / regression / key-signature-scordatura.ly
1
2 \header { texidoc = "Key signatures can be set per pitch
3 individually. This can be done bby setting @code{Staff.keySignature}
4 directly.";
5
6 }
7 \score { \notes
8 \relative c'
9 \context Staff {
10   \property Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
11   f8 a c e
12   \property Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
13   e a, g a
14 }
15 }