]> git.donarmstrong.com Git - lilypond.git/blob - input/test/break.ly
4f8e9f972e8fbae3f7ff678332bc55ba4c0bf95a
[lilypond.git] / input / test / 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 }