]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/keys.ly
Doc-es: various updates.
[lilypond.git] / input / regression / keys.ly
index 86b207e0d1b8288e85d3f97434c7dfea4b205442..209a3469f1f075e24cff45e16b2c590ea5e0d507 100644 (file)
@@ -1,29 +1,31 @@
-#(ly:set-option 'old-relative)
-\version "1.9.1"
+
+\version "2.19.21"
 \header{
 texidoc="
-Key signatures appear on key  changes. They may also
-appear without barlines.  The restoration accidentals are not printed at
-the start of the line. If @code{createKeyOnClefChange} is set, they're
-also created on a clef change.
+Key signatures may appear on key changes, even without a barline.  
+In the case of a line break, the restoration accidentals are printed at 
+end of a line. If @code{createKeyOnClefChange} is set, key signatures
+are created also on a clef change.
 "
 }
 
 
 
-\score {
-  \notes \relative c''
-  {
-       \property Staff. createKeyOnClefChange = ##t  
-    \key bes \major c2
-%    \key c \major %  \minor
+\paper {
+    ragged-right = ##T
+}
+
+\relative
+{
+    \set Staff.createKeyOnClefChange = ##t  
+    \key bes \major c'2
+                               %    \key c \major %  \minor
     \key es \major %  \minor
     c2
     \break
     \key bes \major % \major
     c2 \clef alto c2   \key d \major \clef treble c2
-       \property Staff. keySignature = #'((2 . -1)  (6 . -1) (4 . -1))
-       e2
-  }
+    \set Staff.keyAlterations = #`((4 . ,FLAT) (6 . ,THREE-Q-SHARP) (2 . ,SEMI-FLAT))
+    e2
 }