]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/connecting/overriding-the-automatic-beamer.ly
LSR: automatic update.
[lilypond.git] / input / lsr / connecting / overriding-the-automatic-beamer.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 The auto-beamer, which can be overridden, will only engrave beams  that
6 end before encountering of 
7
8
9 * a rest,
10
11 * another, manually entered beam, or
12
13 * a bar line. 
14
15
16
17 The @code{autoBeaming} can also be turned off.
18
19
20
21 " }
22
23 \score{
24      \relative c''{
25         #(override-auto-beam-setting '(end * * * *)  1 2)
26         \time 2/4
27         % one beam per measure
28         c8 c c c
29         c16 c c c c c c c
30         % from here on consider ending beam every 1/4 note
31         #(override-auto-beam-setting '(end * * * *) 1 4)
32
33         c8 c c c
34         % manually override autobeam with weird beaming
35         c8  c[ c] c
36         c8 c c r
37         c8 c c4
38         r8 c c c
39         % no autobeaming
40         \set autoBeaming = ##f
41         c8 c c c
42     }
43  
44 }
45
46
47