]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/break.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / break.ly
1
2 \version "1.9.1"
3
4 \header{
5 texidoc="
6 Breaks can be encouraged and discouraged using @code{\\break} and
7 @code{\\noBreak}."
8 }
9
10
11 \score{
12         \notes\relative c'' \context Voice{
13         \emptyText
14         c1 \noBreak c1 \noBreak \mark "nobreak" c1 \noBreak
15         c1 \break \mark "break" c1 \break \mark "break" c1 
16         }
17         \paper {
18             indent = 0.0
19             linewidth = 4.0\cm}
20 }