]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/manually-controlling-beam-positions.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / manually-controlling-beam-positions.ly
index dd27995e1173ec6608854cfd2ca88f9713dfef75..8fe39d8f220d8fe3c229a0286714a7e4a8710385 100644 (file)
@@ -1,13 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "tweaks-and-overrides, connecting-notes, rhythms"
+  lsrtags = "connecting-notes, rhythms, tweaks-and-overrides"
 
   texidoc = "
 Beam positions may be controlled manually, by overriding the
@@ -20,15 +20,12 @@ 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
 }
-
-