]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-rehearsal-mark.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / page-spacing-rehearsal-mark.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "The space taken up by rehearsal marks is correctly
5 accounted for, even though they live in the Score context."
6 }
7
8 #(set-default-paper-size "a6")
9
10 \book {
11   \paper {
12     oddHeaderMarkup = "header"
13     ragged-last-bottom = ##f
14   }
15   \score {
16     <<
17       \new Staff { \mark \markup \column { T A L L M A R K } c'1 \break
18                    \mark \markup \column { T A L L M A R K } c'1 }
19       \new Staff { c'1 \break c'1 }
20     >>
21   }
22 }