X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fmanually-controlling-beam-positions.ly;h=2b2a1e47dc4b44804dff5cc2e83ddc8a92b194b2;hb=92b2baf698f1b2b4ec7cc88c68e2a03a03e1d324;hp=2ed191b0c4182d4668f6f1cb5bf7e3f55c8fc607;hpb=70cc70f3a6183472b93fc4c2b4c60cc0375b6d64;p=lilypond.git diff --git a/input/lsr/manually-controlling-beam-positions.ly b/input/lsr/manually-controlling-beam-positions.ly index 2ed191b0c4..2b2a1e47dc 100644 --- a/input/lsr/manually-controlling-beam-positions.ly +++ b/input/lsr/manually-controlling-beam-positions.ly @@ -1,28 +1,27 @@ %% 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.35" +\version "2.11.55" \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 staffline (position 4) to center (position 0) + \override Beam #'positions = #'(2 . 0) + c8 c + % from center to one above center (position 2) + \override Beam #'positions = #'(0 . 1) + c8 c } -