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