]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/manually-controlling-beam-positions.ly
Add a TODO comment re grace note spacing.
[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.35"
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 \score { 
16     \context Voice \relative c {
17         %% from upper staffline (position 4) to centre (position 0)
18         \override Beam  #'positions = #'(2 . 0)
19          c'8[ c] 
20         
21         %% from center to one above centre (position 2)
22         \override Beam  #'positions = #'(0 . 1)
23          c[ c]
24   }
25
26 }
27
28