From: fred Date: Wed, 27 Mar 2002 02:00:07 +0000 (+0000) Subject: lilypond-1.5.8 X-Git-Tag: release/1.5.59~502 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5ff18777440325837f82537d30fe34ba776926dc;p=lilypond.git lilypond-1.5.8 --- diff --git a/input/bugs/beaming.ly b/input/bugs/beaming.ly new file mode 100644 index 0000000000..54d1d38f9b --- /dev/null +++ b/input/bugs/beaming.ly @@ -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 index 0000000000..94ee08db13 --- /dev/null +++ b/input/bugs/braces.ly @@ -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 + > +}