]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-scordatura.ly
release commit
[lilypond.git] / input / regression / key-signature-scordatura.ly
1
2 \version "2.8.0"
3
4 \header { texidoc = "By setting @code{Staff.keySignature} directly,
5 key signatures can be set invidually per pitch.
6 "
7
8       }
9 \layout {
10     ragged-right = ##T
11 }
12 \relative c'
13 \new Staff {
14     \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
15     f8 a c e
16     \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
17     e a, g a
18 }
19