From f01eef91d191fbbd3d0c0fbec5c0cb53e3288104 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 22:28:31 +0000 Subject: [PATCH] lilypond-1.3.62 --- input/bugs/dots.fly | 2 -- input/bugs/dots.ly | 3 ++ input/bugs/dotted-collision.ly | 58 ++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 input/bugs/dots.ly create mode 100644 input/bugs/dotted-collision.ly 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 + } + + } +} -- 2.39.5