]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/reverting-default-beam-endings.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond.git
[lilypond.git] / input / lsr / reverting-default-beam-endings.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"
7
8   texidoc = "
9 To typeset beams grouped @code{3-4-3-2} in 12/8 it is necessary first
10 to override the default beam endings  in 12/8, and then to set up the
11 new beaming endings: 
12
13 "
14   doctitle = "Reverting default beam endings"
15 } % begin verbatim
16 \relative c'' {
17   \time 12/8
18
19   % Default beaming
20   a8 a a a a a a a a a a a
21
22   % Revert default values in scm/auto-beam.scm for 12/8 time
23   #(revert-auto-beam-setting '(end * * 12 8) 3 8)
24   #(revert-auto-beam-setting '(end * * 12 8) 3 4)
25   #(revert-auto-beam-setting '(end * * 12 8) 9 8)
26   a8 a a a a a a a a a a a
27
28   % Set new values for beam endings
29   #(override-auto-beam-setting '(end * * 12 8) 3 8)
30   #(override-auto-beam-setting '(end * * 12 8) 7 8)
31   #(override-auto-beam-setting '(end * * 12 8) 10 8)
32   a8 a a a a a a a a a a a
33 }