]> 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 2ed191b0c4182d4668f6f1cb5bf7e3f55c8fc607..442c172727dcb3e7034e20a593908c97355b9d1f 100644 (file)
@@ -1,6 +1,6 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.35"
+\version "2.11.38"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
@@ -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
 }
 
-