]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-scordatura.ly
MusicXML: src-dir rather than srcdir.
[lilypond.git] / input / regression / key-signature-scordatura.ly
1
2 \version "2.11.51"
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) . ,SHARP) ((0 . 3) . ,FLAT))
15     f8 a c e
16     \set Staff.keySignature = #`(((1 .  2) . ,FLAT) ((0 . 4) . ,DOUBLE-SHARP))
17     e a, g a
18 }
19