]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/manually-controlling-beam-positions.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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.38"
4
5 \header {
6   lsrtags = "rhythms, tweaks-and-overrides"
7  texidoc = "
8 Beam positions may be controlled manually, by overriding the
9 @code{positions} setting of the @code{Beam} grob.
10
11
12
13 " }
14 % begin verbatim
15 \relative c {
16   % from upper staffline (position 4) to centre (position 0)
17   \override Beam  #'positions = #'(2 . 0)
18   c'8[ c]
19   % from centre to one above centre (position 2)
20   \override Beam  #'positions = #'(0 . 1)
21   c[ c]
22 }
23