From: fred Date: Wed, 27 Mar 2002 02:00:10 +0000 (+0000) Subject: lilypond-1.5.8 X-Git-Tag: release/1.5.59~499 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ce247425c9d86c11d69fb22bad2de31371faca6b;p=lilypond.git lilypond-1.5.8 --- diff --git a/input/bugs/markup-definition.ly b/input/bugs/markup-definition.ly new file mode 100644 index 0000000000..6703aed5f9 --- /dev/null +++ b/input/bugs/markup-definition.ly @@ -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 index 0000000000..d78913c9f2 --- /dev/null +++ b/input/bugs/mmrest-collide.ly @@ -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 index 0000000000..44898ea28b --- /dev/null +++ b/input/bugs/partial-beam.ly @@ -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) + } + } +}