X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fmanually-controlling-beam-positions.ly;h=aa18cd1de11e86afe514363a1759955ccbd6812f;hb=ed4efaed0a8e9207c2b269412eded2e257094b46;hp=cb1db0d090312f8216a8e8feb230712b157b8e18;hpb=1b71244a169277f4aabbbd79a8d708c35d074438;p=lilypond.git diff --git a/input/lsr/manually-controlling-beam-positions.ly b/input/lsr/manually-controlling-beam-positions.ly index cb1db0d090..aa18cd1de1 100644 --- a/input/lsr/manually-controlling-beam-positions.ly +++ b/input/lsr/manually-controlling-beam-positions.ly @@ -1,27 +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. -%% Tags: rhythms, tweaks-and-overrides -\version "2.11.35" +\version "2.11.38" -\header { texidoc = " +\header { + lsrtags = "rhythms, tweaks-and-overrides" + + 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) + c c } -