]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/transposition.ly
release: 1.3.126
[lilypond.git] / input / test / transposition.ly
index d2b9011647641e56fbe0f681fa393ddc1c2361a0..40cedf07c45de7ce2d5101f05bf1fa2e1925b9f2 100644 (file)
@@ -6,7 +6,7 @@ I have extend Mats' patches to allow accidental transposition:
                = \transpose d =>
         \keysignature gis;
 
-As you can see in output the example file "test.ly" there are a few problems left:
+As you can see in output =  the example file "test.ly" there are a few problems left:
 - key undo (already in the Todo)
 - "wrong" transposition: e.g. \transpose d of fis-major = gis-major (better as-major?).
        The solution gis=as etc. would concern both note and key transposistion
@@ -15,29 +15,29 @@ Eric
 %}
 
 \header{
-title =         "Test it";
-description =   "Transposition Test file";
-enteredby =     "Eric Bullinger";
-copyright =     "public domain";
+title =         "Test it";
+description =   "Transposition Test file";
+enteredby =     "Eric Bullinger";
+copyright =     "public domain";
 }
 
 
-\version "1.0.1";
+\version "1.3.117";
 
-vOne = \melodic \relative c''{
+vOne =  \notes \relative c''{
         \clef"violin";
-        \key d;
+        \key d \major;
         \time 2/4 ;
         d4 d |       
-        \key fis;
+        \key fis \major;
         fis4 fis |         
-        \key es;
+        \key es \major;
         c4 c |
 }
 
-vTwo = \melodic \relative c''\transpose d' { \vOne }
+vTwo =  \notes \transpose d' { \vOne }
 
-vThree = \melodic \relative c''{
+vThree =  \notes \relative c''{
         \clef"violin";
         \keysignature fis cis;
         \time 2/4 ;
@@ -48,10 +48,10 @@ vThree = \melodic \relative c''{
         cis4 ais4 |
 }
 
-vFour = \melodic \relative c''\transpose d' \vThree
+vFour =  \notes \transpose d' \vThree
 
 \score {
-  \type StaffGroup <
+  \context StaffGroup <
          \vOne
          \vTwo
          \vThree