]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-scordatura.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / key-signature-scordatura.ly
1
2 \version "2.1.26"
3
4 \header { texidoc = "By setting @code{Staff.keySignature} directly,
5 key signatures can be set invidually per pitch.
6 "
7
8 }
9 \score { \notes
10 \relative c'
11 \context Staff {
12   \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
13   f8 a c e
14   \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
15   e a, g a
16 }
17 }
18