From: Mark Polesky Date: Sun, 17 Oct 2010 00:53:11 +0000 (-0700) Subject: vertical spacing: Revise/rename affected regtests. X-Git-Tag: release/2.13.36-1~15 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9a899d219c23b57780914debfca1624fdb2a469f;p=lilypond.git vertical spacing: Revise/rename affected regtests. --- diff --git a/input/regression/page-breaking-markup-padding.ly b/input/regression/page-breaking-markup-padding.ly new file mode 100644 index 0000000000..5603ecee9b --- /dev/null +++ b/input/regression/page-breaking-markup-padding.ly @@ -0,0 +1,18 @@ +\version "2.13.36" + +#(set-default-paper-size "a6") + +\book { + \header { + texidoc = "Padding between markups is honored by the page +breaker. This should take up two pages." + } + + \paper { + markup-markup-spacing = #'((padding . 300)) + } + + \markup "00" + \markup "01" + { c' } +} diff --git a/input/regression/page-breaking-markup-padding2.ly b/input/regression/page-breaking-markup-padding2.ly new file mode 100644 index 0000000000..c0350fbbd3 --- /dev/null +++ b/input/regression/page-breaking-markup-padding2.ly @@ -0,0 +1,18 @@ +\version "2.13.36" + +#(set-default-paper-size "a6") + +\book { + \header { + texidoc = "Padding between a markup and a system is honored by +the page breaker. This should take up two pages." + } + + \paper { + markup-system-spacing = #'((padding . 300)) + } + + \markup "00" + \markup "01" + { c' } +} diff --git a/input/regression/page-breaking-markup-padding3.ly b/input/regression/page-breaking-markup-padding3.ly new file mode 100644 index 0000000000..ee987989a8 --- /dev/null +++ b/input/regression/page-breaking-markup-padding3.ly @@ -0,0 +1,21 @@ +\version "2.13.36" + +#(set-default-paper-size "a6") + +\book { + \header { + texidoc = "Padding between a score and a markup is honored by +the page breaker. This should take up two pages." + } + + \paper { + score-markup-spacing = #'((padding . 300)) + } + + \markup "00" + \markup "01" + \score { + { c'1 \allowPageTurn } + } + \markup "02" +} diff --git a/input/regression/page-breaking-title-padding.ly b/input/regression/page-breaking-title-padding.ly deleted file mode 100644 index df9179f536..0000000000 --- a/input/regression/page-breaking-title-padding.ly +++ /dev/null @@ -1,18 +0,0 @@ -\version "2.13.36" - -#(set-default-paper-size "a6") - -\book { - \header { - texidoc = "Padding between titles is honoured by the page breaker. -This should take up two pages." - } - - \paper { - markup-markup-spacing = #'((padding . 300)) - } - - \markup "00" - \markup "01" - { c' } -} diff --git a/input/regression/page-breaking-title-padding2.ly b/input/regression/page-breaking-title-padding2.ly deleted file mode 100644 index ab7afb2c4f..0000000000 --- a/input/regression/page-breaking-title-padding2.ly +++ /dev/null @@ -1,18 +0,0 @@ -\version "2.13.36" - -#(set-default-paper-size "a6") - -\book { - \header { - texidoc = "Padding after titles is honoured by the page breaker. -This should take up two pages." - } - - \paper { - markup-system-spacing = #'((padding . 300)) - } - - \markup "00" - \markup "01" - { c' } -} diff --git a/input/regression/page-breaking-title-padding3.ly b/input/regression/page-breaking-title-padding3.ly deleted file mode 100644 index a79f9e6ccc..0000000000 --- a/input/regression/page-breaking-title-padding3.ly +++ /dev/null @@ -1,21 +0,0 @@ -\version "2.13.36" - -#(set-default-paper-size "a6") - -\book { - \header { - texidoc = "Padding before titles is honoured by the page breaker. -This should take up two pages." - } - - \paper { - score-markup-spacing = #'((padding . 300)) - } - - \markup "00" - \markup "01" - \score { - { c'1 \allowPageTurn } - } - \markup "02" -} diff --git a/input/regression/page-spacing-loose-lines-between.ly b/input/regression/page-spacing-loose-lines-between.ly index 3161a8bc85..acc55b9cab 100644 --- a/input/regression/page-spacing-loose-lines-between.ly +++ b/input/regression/page-spacing-loose-lines-between.ly @@ -1,9 +1,10 @@ \version "2.13.36" \header { - texidoc = "Loose lines between two systems don't confuse the layout engine. -In particular, they don't interfere with @var{system-system-spacing}, -which measures distances between spaceable staves." + texidoc = "Loose lines between two systems don't confuse the +layout engine. In particular, they don't interfere with +@code{system-system-spacing}, which controls the flexible spacing +between the two closest staves of consecutive systems." } \paper { diff --git a/input/regression/page-spacing-loose-lines-header-padding.ly b/input/regression/page-spacing-loose-lines-header-padding.ly index 2bd8730af8..7b7285c298 100644 --- a/input/regression/page-spacing-loose-lines-header-padding.ly +++ b/input/regression/page-spacing-loose-lines-header-padding.ly @@ -29,4 +29,4 @@ line, whether or not it is spaceable." \new Lyrics \lyricmode { foo } >> } -} \ No newline at end of file +} diff --git a/input/regression/page-spacing-top-markup-spacing.ly b/input/regression/page-spacing-top-markup-spacing.ly new file mode 100644 index 0000000000..63fffba04e --- /dev/null +++ b/input/regression/page-spacing-top-markup-spacing.ly @@ -0,0 +1,20 @@ +\version "2.13.36" + +#(set-default-paper-size "a6") + +\book { + + \header { + texidoc = "@code{top-markup-spacing} controls the spacing from +the top of the printable area (i.e. the bottom of the top margin) +to a title or markup, when it is the first item on a page." + title = "Title" + } + + \paper { + top-markup-spacing = #'((minimum-distance . 30)) + ragged-bottom = ##t + } + + { c'1 \pageBreak c'1 } +} diff --git a/input/regression/page-spacing-top-system-spacing.ly b/input/regression/page-spacing-top-system-spacing.ly index f489f7c09a..b93f29223b 100644 --- a/input/regression/page-spacing-top-system-spacing.ly +++ b/input/regression/page-spacing-top-system-spacing.ly @@ -16,4 +16,4 @@ non-title staff on every page." } { c'1 \pageBreak c'1 } -} \ No newline at end of file +} diff --git a/input/regression/page-spacing-top-title-spacing.ly b/input/regression/page-spacing-top-title-spacing.ly deleted file mode 100644 index 89502a7c8d..0000000000 --- a/input/regression/page-spacing-top-title-spacing.ly +++ /dev/null @@ -1,19 +0,0 @@ -\version "2.13.36" - -#(set-default-paper-size "a6") - -\book { - - \header { - texidoc = "@var{top-markup-spacing} controls the spacing -from the top margin to a title (or markup), provided that it is -the first system on a page." - title = "Title" } - - \paper { - top-markup-spacing = #'((minimum-distance . 30)) - ragged-bottom = ##t - } - - { c'1 \pageBreak c'1 } -} \ No newline at end of file diff --git a/input/regression/stem-length-estimation.ly b/input/regression/stem-length-estimation.ly index d6cc841931..11d1bdd7b7 100644 --- a/input/regression/stem-length-estimation.ly +++ b/input/regression/stem-length-estimation.ly @@ -6,12 +6,11 @@ This example should fit snugly on one page. " } -\paper { +\paper { #(set-paper-size "a6") tagline = ##f system-system-spacing #'padding = #1.20 -} - +} \new Voice { \voiceTwo diff --git a/input/regression/system-overstrike.ly b/input/regression/system-overstrike.ly index 1ef53125b0..1a304b3156 100644 --- a/input/regression/system-overstrike.ly +++ b/input/regression/system-overstrike.ly @@ -1,4 +1,5 @@ \version "2.13.36" + \header { texidoc = "By setting the padding between systems to a negative value, it is possible to eliminate the anti-collision constraints. @@ -7,8 +8,8 @@ value, it is possible to eliminate the anti-collision constraints. \book { \paper { - ragged-bottom =##t - system-system-spacing = #'((space . 1) (padding . -10)) + ragged-bottom = ##t + system-system-spacing = #'((space . 1) (padding . -10)) } {