]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/keys.ly
patch::: 1.3.113.jcn2
[lilypond.git] / input / test / keys.ly
index 8dc730e6b38e30c7b147d66d315e9367d71aa3b9..427cda90108bb5d93b4beb94903346b2c09866d6 100644 (file)
@@ -1,13 +1,26 @@
-\version "1.1.52";
+\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.
+";
+}
+
+\version "1.3.110";
 
-%{
-test key itemv breaking
-%}
 \score {
-  \notes
+  \notes \relative c''
   {
-    \key bes; c1 \key c \minor;  c1
+       \property Staff. createKeyOnClefChange = ##t  
+    \key bes \major; c2
+%    \key c \major; %  \minor;
+    \key es \major; %  \minor;
+    c2
     \break
-    \key bes \major; c1 \key d;\break c1
+    \key bes \major; % \major;
+    c2 \clef alto; c2   \key d \major; \clef treble; c2
+       \property Staff. keySignature = #'((2 . -1)  (6 . -1) (4 . -1))
+       e2
   }
 }