From: fred Date: Tue, 26 Mar 2002 22:28:31 +0000 (+0000) Subject: lilypond-1.3.62 X-Git-Tag: release/1.5.59~2081 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f01eef91d191fbbd3d0c0fbec5c0cb53e3288104;p=lilypond.git lilypond-1.3.62 --- diff --git a/input/bugs/dots.fly b/input/bugs/dots.fly index 4372115e20..e69de29bb2 100644 --- a/input/bugs/dots.fly +++ b/input/bugs/dots.fly @@ -1,2 +0,0 @@ - -\context Voice { } diff --git a/input/bugs/dots.ly b/input/bugs/dots.ly new file mode 100644 index 0000000000..6dfd11ae45 --- /dev/null +++ b/input/bugs/dots.ly @@ -0,0 +1,3 @@ +\score { +\notes\context Voice { } +} diff --git a/input/bugs/dotted-collision.ly b/input/bugs/dotted-collision.ly new file mode 100644 index 0000000000..e56cd2c6d2 --- /dev/null +++ b/input/bugs/dotted-collision.ly @@ -0,0 +1,58 @@ +\header{ +enteredby = "Donat Wullschleger"; +} + +\version "1.3.59"; + +\include "paper16.ly"; +\include "deutsch.ly"; + +righthandfirstvoice = \notes \relative c'' + \context Voice = upper { + \key b \major; + \time 6/8; + + r8. r8. r8. r8. | + r4. r4. | + r2. | + + \bar "|."; +} + +lefthandfirstvoice = \notes \relative c + \context Voice = upper { + \voiceone + \key b \major; + \clef bass; + + as4. [g8 a16 h c8] | + as4. [g8 a16 h c8] | + as4. [g8 a16 h c8] | +} + +lefthandsecondvoice = \notes \relative c + \context Voice = lower { + \voicetwo + r2. | + r4. r4. | + r8. r8. r8. r8. | +} + +\score{ + \context PianoStaff \notes < + \context Staff = top < + \righthandfirstvoice + > + \context Staff = bottom < + \lefthandfirstvoice + \lefthandsecondvoice + > + > + + \paper{ + \translator{ + \OrchestralScoreContext + } + + } +}