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