]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-scordatura.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / key-signature-scordatura.ly
1
2 \version "2.14.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 = #`(((0 . 3) . ,FLAT) ((1 .  2) . ,SHARP))
15     f8 a c e
16     \set Staff.keySignature = #`(((0 . 4) . ,DOUBLE-SHARP) ((1 .  2) . ,FLAT))
17     e a, g a
18 }
19