]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/incipit.ly
* scripts/lilypond-book.py: make URL for printfilename option.
[lilypond.git] / input / test / incipit.ly
index 974ab04d5e0241fc0acb43664240f9ebbdd3f858..eda392a42b8b892d08a6b4f72d8cfdf7013dd106 100644 (file)
@@ -1,3 +1,4 @@
+\version "1.5.68"
 %{
  Test of how to make an ``incipit'' to indicate scordatora 
  tuning of a violin part, using the clefStyle property.
@@ -6,32 +7,42 @@
    /Mats B
 %}
 
-\version "1.3.59";
 
-incipit = \notes\relative c'{
-  <b1 fis' b d>
+
+violinincipit =  \notes\relative c''{
+  \clef "french"
+  \time 2/2
+  \property Staff.TimeSignature \override #'style = #'old
+  a4. b8 c4 fis |
+%  <b1 fis' b d>
+  \property Staff.TimeSignature \override #'style = #'C
 }
 
-emptyincipit = \notes{
- s1
+bcincipit =  \notes\relative c{
+  \clef bass
+  \property Staff.TimeSignature \override #'style = #'old
+  b2. cis4 | 
+  \property Staff.TimeSignature \override #'style = #'C
 }
 
-violin = \notes\relative c''{
-  \specialkey \keysignature f' fis'' g' gis'';
-  \time 2/2;
-  \clef "treble";
+violin =  \notes\relative c''{
+% Key signatures with different alterations in different octaves
+% are broken since 1.3.58!
+%  \specialkey \keysignature f' fis'' g' gis''
+  \key d \major
+  \time 2/2
+  \clef treble
 
-  \key;
   a4. b8 c4 fis |
-  gis~ gis8 fis16^\trill ()e b8 c \context Staff<{\voiceone a d}{\voicetwo es,4}>|
+  gis~ gis8 fis16^\trill ()e b8 c \context Staff<{\voiceOne a d}{\voiceTwo es,4}>|
 }
 
 BC  = \notes\relative c{
-  \key d \major;
-  \time 2/2;
-  \clef "bass";
+  \key d \major
+  \time 2/2
+  \clef "bass"
 
- \key;
+ \key \default
   b2. cis4 | 
   d e fis g |
 }
@@ -39,20 +50,19 @@ BC  = \notes\relative c{
 \score{
   <
     \context Staff = violin {\notes{
-      \property Staff.clefStyle = "transparent" 
-      \incipit \bar ".|"; \endincipit
+      \property Staff.Clef \override #'transparent = ##t
+      \violinincipit \bar ".|" 
+      \property Staff.Clef \revert #'transparent 
+      \endincipit
       \violin
     }}
     \context Staff = BC{\notes{
-      \property Staff.clefStyle = "transparent" 
-      \emptyincipit \bar ".|"; \endincipit
+      \property Staff.Clef \override #'transparent = ##t
+      \bcincipit \bar ".|" 
+      \property Staff.Clef \revert #'transparent 
+      \endincipit
       \BC
     }}
   >
-  \paper{
-    \translator{\StaffContext
-      timeSignatureStyle = "C";
-    }
-  }
 }