]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/transposition.ly
* input/test/figured-bass-alternative.ly: fix accidental.
[lilypond.git] / input / test / transposition.ly
index 2271026b718c08562d2a5a0d4b8c018330782260..79007d0df9569e44e69cd8196b9adb74a648c78d 100644 (file)
@@ -1,64 +1,75 @@
+
+\version "1.9.6"
+
+\header{ texidoc = "@cindex Transposition
+Transposition test file."
+}
+
+
 %{
 Hi all,
 
 I have extend Mats' patches to allow accidental transposition:
-        \keysignature bes es fis;
-               = \transpose d =>
-        \keysignature gis;
+        \keysignature bes es fis
+               = \transpose c' d =>>
+        \keysignature gis
 
 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?).
+- "wrong" transposition: e.g. \transpose c' d of fis-major = gis-major (better as-major?).
        The solution gis=as etc. would concern both note and key transposistion
 
 Eric
+
+- Note that transpose eses of fis-major = as-major 
+- Note also that key signatures specified with \property keySignature 
+  are not transposed!
+
+  /Mats B, March 21, 2001
 %}
 
-\header{
-title =         "Test it";
-description =   "Transposition Test file";
-enteredby =     "Eric Bullinger";
-copyright =     "public domain";
-}
 
 
-\version "1.0.20";
 
-vOne = \notes \relative c''{
-        \clef"violin";
-        \key d;
-        \time 2/4 ;
+vOne =  \notes \relative c''{
+        \clef"violin"
+        \key d \major
+        \time 2/4 
         d4 d |       
-        \key fis;
+        \key fis \major
         fis4 fis |         
-        \key es;
+        \key es \major
         c4 c |
 }
 
-vTwo = \notes \transpose d' { \vOne }
+vTwo =  \notes \transpose c d { \vOne }
 
-vThree = \notes \relative c''{
-        \clef"violin";
-        \keysignature fis cis;
-        \time 2/4 ;
+vThree =  \notes \relative c''{
+        \clef"violin"
+%        \keysignature fis cis
+       \property Staff.keySignature = #'((0 . 2)(3 . 2))
+        \time 2/4 
         d4 d |       
-        \keysignature bes es fis;
+%        \keysignature bes es fis
+       \property Staff.keySignature = #'((3 . 2)(2 . -2)(6 . -2))
         fis4 fis |         
-        \keysignature fis cis gis dis ais eis;
+%        \keysignature fis cis gis dis ais eis
+       \property Staff.keySignature = #'((2 . -2)(5 . -2)(1 . 2)(4 . 2)(0 . 2)(3 . 2))
         cis4 ais4 |
 }
 
-vFour = \notes \transpose d' \vThree
+vFour =  \notes \transpose c d \vThree
 
 \score {
-  \context StaffGroup <
-         \vOne
-         \vTwo
-         \vThree
-         \vFour
-  >
-        \paper { linewidth= 130.\mm; }
+  \context StaffGroup <<
+         \new Staff \vOne
+         \new Staff \vTwo
+         \new Staff \vThree
+         \new Staff \vFour
+  >>
+        \paper { linewidth= 130.\mm raggedright = ##t }
 }
 
 
 
+