]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/manually-controlling-beam-positions.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / manually-controlling-beam-positions.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "rhythms, tweaks-and-overrides"
7
8   texidoc = "
9 Beam positions may be controlled manually, by overriding the
10 @code{positions} setting of the @code{Beam} grob.
11
12
13
14
15 "
16   doctitle = "Manually controlling beam positions"
17 } % begin verbatim
18 \relative c' {
19   \time 2/4
20   % from upper staffline (position 4) to center (position 0)
21   \override Beam #'positions = #'(2 . 0)
22   c8 c
23   % from center to one above center (position 2)
24   \override Beam #'positions = #'(0 . 1)
25   c8 c
26 }
27