]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/manually-controlling-beam-positions.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / manually-controlling-beam-positions.ly
index 3cb6133cc3d7be3eb4c463e29da0850ae912a58f..fe444152341330962595b2cb43fd74a9d5b5ba16 100644 (file)
@@ -4,10 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
-  lsrtags = "rhythms, connecting-notes, tweaks-and-overrides"
+  lsrtags = "connecting-notes, rhythms, tweaks-and-overrides"
 
   texidoc = "
 Beam positions may be controlled manually, by overriding the
@@ -24,9 +24,9 @@ Beam positions may be controlled manually, by overriding the
 \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
 }