]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/key-signature-scordatura.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / regression / key-signature-scordatura.ly
index 9fd0633c329f2137b114a46b0d3bd6345cd29dfa..cfad4a74bfd579fd63fef6a60f36581c37b26be0 100644 (file)
@@ -1,18 +1,19 @@
 
-\version "2.1.36"
+\version "2.10.0"
 
 \header { texidoc = "By setting @code{Staff.keySignature} directly,
 key signatures can be set invidually per pitch.
 "
 
+      }
+\layout {
+    ragged-right = ##T
 }
-\score { \notes
 \relative c'
-\context Staff {
-  \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
-  f8 a c e
-  \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
-  e a, g a
-}
+\new Staff {
+    \set Staff.keySignature = #`(((1 .  2) . ,SHARP) ((0 . 3) . ,FLAT))
+    f8 a c e
+    \set Staff.keySignature = #`(((1 .  2) . ,FLAT) ((0 . 4) . ,DOUBLE-SHARP))
+    e a, g a
 }