]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.41
authorfred <fred>
Tue, 26 Mar 2002 23:10:22 +0000 (23:10 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:10:22 +0000 (23:10 +0000)
Documentation/user/mudela-book.tely
Documentation/user/properties.itely
input/test/chord-tremolo.ly [new file with mode: 0644]
input/test/coda-kludge.ly
input/test/repeat.ly
input/test/stem-direction-down.ly
input/test/stem-direction.ly [new file with mode: 0644]

index 37299dc14e47335799bb5ff27964e685350452cb..8b8509d582cdb9412bd265d51c3aa89013f976c9 100644 (file)
@@ -191,7 +191,7 @@ be no empty lines between the normal text and the mudela
 environment. 
 
 You can also use @code{mudelafile} (on a separate line, FIXME), to
-include another file. Files with name ending with @code{.sly}
+include another file.
 
 @section Fontsize options You can use all lilypond fontsizes in
 mudela-book.  The default 16pt fontsize is probably to big to be
index 36dbac92daa588975a7cace60b5cc0f615e81cf4..3804e11ab8c293600f9f688b3d178a9699cd9364 100644 (file)
@@ -166,7 +166,7 @@ c''16 \property Staff.fontSize = -2 c''16
 Merge noteheads in collisions, even if they have a different number of
 dots. This normal notation for polyphonic guitar music.
 
-@mudelafile[verbatim]{force-hshift.sly}
+@mudelafile[verbatim]{force-hshift.ly}
 
 
 [FIXME: this should be moved]
diff --git a/input/test/chord-tremolo.ly b/input/test/chord-tremolo.ly
new file mode 100644 (file)
index 0000000..66d1189
--- /dev/null
@@ -0,0 +1,10 @@
+\score { 
+  \context Voice \notes\relative c {
+       \repeat "tremolo" 8 { c16 d16 }
+       \repeat "tremolo" 4 { c16 d16 }    
+  }
+  \paper {
+    linewidth=-1.0;
+  }  
+  \midi { }
+}
index 80920b1240dfab41e961feecf06e4cb16fd8834c..ea590a55ebcf17f5ab43d90f6c7270493f663a8c 100644 (file)
@@ -32,7 +32,7 @@ Hi,
                        c c c c
                        % coda-klugde: let volta span only one bar
                        \property Staff.voltaSpannerDuration = #(make-moment 1 1)
-                       \repeat semi 5 { d d d d }
+                       \repeat "volta" 5 { d d d d }
                                \alternative { { e e e e f f f f }
                        { g g g g } }
                }
index 2c1d01c95157b5d950a64428d484575c4a19df04..489fc8e238dafa4e8e4d000f16640039e6376bea 100644 (file)
@@ -2,7 +2,7 @@
        <
                  \context Staff \notes\relative c'{ 
                          c d e f
-                         \repeat semi 2 { g a b c }
+                         \repeat "volta" 2 { g a b c }
                          \alternative { { c b a g } { f e d c } }
                  }
                  \context Lyrics \lyrics {
index 3834e272bdf18c3160056a10668bc2b857f259f2..fb331e9674d1c1f47062c752222ae0e49a189712 100644 (file)
@@ -1,6 +1,6 @@
 \score{
        \notes\relative c{
-               \include "stem-direction.sly";
+           b''4 ~ b8()b8 e4 e,
        }
        \paper{
                stem_default_neutral_direction=-1.0;
diff --git a/input/test/stem-direction.ly b/input/test/stem-direction.ly
new file mode 100644 (file)
index 0000000..800185c
--- /dev/null
@@ -0,0 +1,10 @@
+\score { 
+  \context Voice \notes\relative c {
+    b''4 ~ b8()b8 e4 e,
+       
+  }
+  \paper {
+    linewidth=-1.0;
+  }  
+  \midi { }
+}