]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/manually-controlling-beam-positions.ly
LSR: update.
[lilypond.git] / input / lsr / manually-controlling-beam-positions.ly
index cef8e0f13cd007f3ec597f417d13085d7c8947ab..442c172727dcb3e7034e20a593908c97355b9d1f 100644 (file)
@@ -12,17 +12,13 @@ Beam positions may be controlled manually, by overriding the
 
 " }
 % begin verbatim
-\score { 
-    \context Voice \relative c {
-       %% from upper staffline (position 4) to centre (position 0)
-       \override Beam  #'positions = #'(2 . 0)
-        c'8[ c] 
-       
-       %% from center to one above centre (position 2)
-       \override Beam  #'positions = #'(0 . 1)
-        c[ c]
-  }
-
+\relative c {
+  \time 2/4
+  % from upper staffline (position 4) to centre (position 0)
+  \override Beam  #'positions = #'(2 . 0)
+  c'8 c
+  % from centre to one above centre (position 2)
+  \override Beam  #'positions = #'(0 . 1)
+  c c
 }
 
-