]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/break.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / break.ly
index e00197442b358a8df7703e8ee7b552be261899a1..0a77a285594afe197de6bfa63347ef1b95372c42 100644 (file)
@@ -1,19 +1,20 @@
-\version "1.5.68"
+
+\version "1.9.1"
 
 \header{
 texidoc="
 Breaks can be encouraged and discouraged using @code{\\break} and
-@code{\\noBreak}.  They are abbrevs for @code{\\penalty} commands.
-"
+@code{\\noBreak}."
 }
 
 
 \score{
-       \notes\context Voice{
+       \notes\relative c'' \context Voice{
        \emptyText
-       c1 c1^"no break after 2nd note"  \noBreak c1 c1
-         
-         c1^"break after this" \break c1 c1 
+       c1 \noBreak c1 \noBreak \mark "nobreak" c1 \noBreak
+       c1 \break \mark "break" c1 \break \mark "break" c1 
        }
-       \paper { linewidth = 4.0\cm}
+       \paper {
+           indent = 0.0
+           linewidth = 4.0\cm}
 }