]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.62
authorfred <fred>
Tue, 26 Mar 2002 22:28:31 +0000 (22:28 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:28:31 +0000 (22:28 +0000)
input/bugs/dots.fly
input/bugs/dots.ly [new file with mode: 0644]
input/bugs/dotted-collision.ly [new file with mode: 0644]

index 4372115e2023a736d3671a4c868019c422cc14fe..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,2 +0,0 @@
-
-\context Voice { <f,4. c'' d e f>}
diff --git a/input/bugs/dots.ly b/input/bugs/dots.ly
new file mode 100644 (file)
index 0000000..6dfd11a
--- /dev/null
@@ -0,0 +1,3 @@
+\score {
+\notes\context Voice { <f,4. c'' d e f>}
+}
diff --git a/input/bugs/dotted-collision.ly b/input/bugs/dotted-collision.ly
new file mode 100644 (file)
index 0000000..e56cd2c
--- /dev/null
@@ -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
+   }
+
+ }
+}