X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmanually-controlling-beam-positions.ly;h=8fe39d8f220d8fe3c229a0286714a7e4a8710385;hb=958e95822083954cad00e0a598eb9f12ceba67b9;hp=d9d292cb290f6042af25e22c2a9304d6d2e014ca;hpb=5b1f3adfe5e3561eaa0f9440e0697054084b7107;p=lilypond.git diff --git a/Documentation/snippets/manually-controlling-beam-positions.ly b/Documentation/snippets/manually-controlling-beam-positions.ly index d9d292cb29..8fe39d8f22 100644 --- a/Documentation/snippets/manually-controlling-beam-positions.ly +++ b/Documentation/snippets/manually-controlling-beam-positions.ly @@ -1,10 +1,10 @@ %% 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.16.0" +\version "2.18.0" \header { lsrtags = "connecting-notes, rhythms, tweaks-and-overrides" @@ -20,13 +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 }