]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/manually-controlling-beam-positions.ly
LSR Updates
[lilypond.git] / Documentation / snippets / manually-controlling-beam-positions.ly
index 969c534f7d4a80d3513d590dc2598bad50b3bb05..24c8fbffe5e0ad2fb33a28ff86841e7e51d7b9fa 100644 (file)
@@ -1,9 +1,13 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.17.27"
 
 \header {
-  lsrtags = "rhythms, tweaks-and-overrides"
+  lsrtags = "connecting-notes, rhythms, tweaks-and-overrides"
 
   texidoc = "
 Beam positions may be controlled manually, by overriding the
@@ -16,14 +20,13 @@ Beam positions may be controlled manually, by overriding the
   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)
+  \override Beam.positions = #'(2 . 0)
   c8 c
   % from center to one above center (position 1)
-  \override Beam #'positions = #'(0 . 1)
+  \override Beam.positions = #'(0 . 1)
   c8 c
 }
-
-