]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bend-bound.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / bend-bound.ly
1 \version "2.17.30"
2
3 \header {
4   texidoc = "Bends should not be effected by the full width of a
5 @code{NonMusicalPaperColumn}. The bends should have identical X
6 spans in the two examples.
7 "
8 }
9
10 music = \repeat unfold 16 { c''4\bendAfter #-4 }
11 sixteens = \repeat unfold 64 { c'16 }
12
13 \new Score {
14   << \music \sixteens >>
15 }
16
17 \new Score \with {
18   currentBarNumber = #200
19   barNumberVisibility = #(every-nth-bar-number-visible 1)
20   \override BarNumber.break-visibility = #end-of-line-invisible
21 } {
22   << \music \sixteens >>
23 }