]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/break.ly
49f7ddde61c9e40b5f1d28069cc8379dccc5774c
[lilypond.git] / input / regression / break.ly
1 \header{
2 texidoc="
3 Breaks can be encouraged and discouraged using @code{\break} and
4 @code{\noBreak}.  They are abbrevs for @code{\penalty} commands.
5 ";
6 }
7
8
9 \score{
10         \notes\context Voice{
11         \emptyText
12         c1 c1^"no break after 2nd note"  \noBreak c1 c1
13           
14           c1^"break after this" \break c1 c1 
15         }
16         \paper { linewidth = 4.0\cm;}
17 }