From: Joe Neeman Date: Mon, 24 Aug 2009 21:03:21 +0000 (-0700) Subject: Add a regression test for bug 496. X-Git-Tag: release/2.13.4-1~146 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=20319bc0abdaacbd5e26882c88eea558de60e936;p=lilypond.git Add a regression test for bug 496. --- diff --git a/input/regression/page-breaking-good-estimation.ly b/input/regression/page-breaking-good-estimation.ly new file mode 100644 index 0000000000..4b4b3c4366 --- /dev/null +++ b/input/regression/page-breaking-good-estimation.ly @@ -0,0 +1,33 @@ +\version "2.13.4" + +\header { + texidoc = "The page breaking algorithm can handle clefs combined +with lyrics. That is, the Y-extent approximations are a little more +accurate than just using bounding boxes. In particular, everything +should fit on one page here." +} + +#(set-default-paper-size "a6") + +Melody = \relative c' { + c2 c | c c | c c | \break + c2 c | c c | c c +} +Words = \lyricmode{ + bla bla bla bla bla bla + bla bla bla bla bla bla +} +\book { + \score { + << + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + >> + } +}