]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/key-signature-scordatura.ly
Doc-es: various updates.
[lilypond.git] / input / regression / key-signature-scordatura.ly
index f9101a4b11e649c7fa96fb8295f859388948928c..5954f2c0138970deebb741732ee8dc51917839fe 100644 (file)
@@ -1,18 +1,19 @@
 
-\version "2.1.22"
+\version "2.19.21"
 
-\header { texidoc = "By setting @code{Staff.keySignature} directly,
+\header { texidoc = "By setting @code{Staff.keyAlterations} 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
-}
+\relative
+\new Staff {
+    \set Staff.keyAlterations = #`(((0 . 3) . ,FLAT) ((1 .  2) . ,SHARP))
+    f'8 a c e
+    \set Staff.keyAlterations = #`(((0 . 4) . ,DOUBLE-SHARP) ((1 .  2) . ,FLAT))
+    e a, g a
 }