]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.5.8
authorfred <fred>
Wed, 27 Mar 2002 02:00:07 +0000 (02:00 +0000)
committerfred <fred>
Wed, 27 Mar 2002 02:00:07 +0000 (02:00 +0000)
input/bugs/beaming.ly [new file with mode: 0644]
input/bugs/braces.ly [new file with mode: 0644]

diff --git a/input/bugs/beaming.ly b/input/bugs/beaming.ly
new file mode 100644 (file)
index 0000000..54d1d38
--- /dev/null
@@ -0,0 +1,9 @@
+\header {
+texidoc="Automatic beamer behaves differently in different measuere locations."
+}
+\version "1.3.148"
+
+\score { \notes {
+
+       [\times 2/3 {c16 c c} c8]
+       [\times 2/3 {c16 c c} c8]}}
diff --git a/input/bugs/braces.ly b/input/bugs/braces.ly
new file mode 100644 (file)
index 0000000..94ee08d
--- /dev/null
@@ -0,0 +1,83 @@
+\version "1.3.148"
+
+
+\header {
+texidoc = "Braces at different sizes don't attach exactly to the staffs.
+Previously, some braces were too small, while others were too big; this was
+apparently caused by dvips + mf rounding.  Now, braces are just a bit
+too big."
+}
+
+\include "paper11.ly"
+\paper { linewidth = -1.0 }
+
+\score {
+  \context GrandStaff <
+    \context Staff = a \notes c''1
+    \context Staff = b \notes c''1
+  >
+}
+
+
+\include "paper13.ly"
+\paper { linewidth = -1.0 }
+
+\score {
+  \context GrandStaff <
+    \context Staff = a \notes c''1
+    \context Staff = b \notes c''1
+  >
+  \paper {
+    \translator {
+      \GrandStaffContext
+      SystemStartDelimiter \override #'weird = #-5
+    }
+  }
+}
+
+
+\include "paper16.ly"
+\paper { linewidth = -1.0 }
+
+\score {
+  \context GrandStaff <
+    \context Staff = a \notes c''1
+    \context Staff = b \notes c''1
+  >
+  \paper {
+    \translator {
+      \GrandStaffContext
+      SystemStartDelimiter \override #'weird = #5
+    }
+  }
+}
+
+
+\include "paper20.ly"
+\paper { linewidth = -1.0 }
+
+\score {
+  \context GrandStaff <
+    \context Staff = a \notes c''1
+    \context Staff = b \notes c''1
+  >
+  \paper {
+    \translator {
+      \GrandStaffContext
+      SystemStartDelimiter \override #'weird = #-7
+    }
+  }
+}
+
+
+\include "paper26.ly"
+\paper { linewidth = -1.0 }
+
+\score {
+  \context GrandStaff <
+    \context Staff = a \notes c''1
+    \context Staff = b \notes c''1
+    \context Staff = c \notes c''1
+    \context Staff = d \notes c''1
+  >
+}