]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/manually-controlling-beam-positions.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / manually-controlling-beam-positions.ly
index cef8e0f13cd007f3ec597f417d13085d7c8947ab..910266ba6b23dea530581c1e3aadd87ebc049696 100644 (file)
@@ -1,28 +1,28 @@
 %% 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.38"
+\version "2.12.0"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
- texidoc = "
+
+  texidoc = "
 Beam positions may be controlled manually, by overriding the
 @code{positions} setting of the @code{Beam} grob.
 
 
 
-" }
-% 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]
-  }
 
-}
+"
+  doctitle = "Manually controlling beam positions"
+} % begin verbatim
 
+\relative c' {
+  \time 2/4
+  % from upper staff-line (position 2) to center (position 0)
+  \override Beam #'positions = #'(2 . 0)
+  c8 c
+  % from center to one above center (position 1)
+  \override Beam #'positions = #'(0 . 1)
+  c8 c
+}