]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.5.8
authorfred <fred>
Wed, 27 Mar 2002 02:00:10 +0000 (02:00 +0000)
committerfred <fred>
Wed, 27 Mar 2002 02:00:10 +0000 (02:00 +0000)
input/bugs/markup-definition.ly [new file with mode: 0644]
input/bugs/mmrest-collide.ly [new file with mode: 0644]
input/bugs/partial-beam.ly [new file with mode: 0644]

diff --git a/input/bugs/markup-definition.ly b/input/bugs/markup-definition.ly
new file mode 100644 (file)
index 0000000..6703aed
--- /dev/null
@@ -0,0 +1,26 @@
+\version "1.3.148"
+\header {
+
+texidoc="
+The definition of markup is incomplete.
+
+Ideally, either the input is valid, and all information therein is
+used, or it is invalid, and an error message is produced."
+
+}
+
+
+\score { \notes \relative c' {
+    f_#'(lines "one" ( "tow"))
+
+    % FIXED:three ignored
+    f_#'(lines "one" ( "two" "three" ))        
+
+    % right way of using multiple markups
+    f_#'(lines "one" ((bold italic) "towo"))
+    
+    % italic ignored.
+    % possibly explicit relaxed code for chords stuff, must check
+    f_#'(lines "one" (bold italic "towo"))
+    
+  }}
diff --git a/input/bugs/mmrest-collide.ly b/input/bugs/mmrest-collide.ly
new file mode 100644 (file)
index 0000000..d78913c
--- /dev/null
@@ -0,0 +1,18 @@
+\version "1.3.148"
+\header {
+texidoc="multi-measure-rests (bar 2) should `collide' (ie, not clash)
+ with notes, just as normal rests (bar 1)."
+}
+
+\score {
+  \notes\context Staff <
+     \context Voice=one \relative c''{
+       d d d d
+       d d d d
+     } 
+     \context Voice=two {
+       r1
+       R
+     } 
+  >
+}
\ No newline at end of file
diff --git a/input/bugs/partial-beam.ly b/input/bugs/partial-beam.ly
new file mode 100644 (file)
index 0000000..44898ea
--- /dev/null
@@ -0,0 +1,28 @@
+\version "1.3.148"
+%docme -- geen id, lijkt ok?
+
+\include "paper20.ly"
+Sopnotes = \notes {
+       \time 4/4
+       \key g \major
+       \clef treble
+       \partial 8 * 3
+       e'8 f'8 g'8 |
+       d'8 d'16 d'16 e'8. e'16 g'8 g'8 f'8 f'8
+}
+
+\score {
+       \notes
+       <
+               \context Staff="sop"
+               <
+                   \Sopnotes
+               >
+       >
+       \paper {
+                \translator {
+                 \StaffContext 
+                        autoBeamSettings \override #'(end * * * * ) = #(make-moment 1 8)
+               }
+       }
+}