]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-endings-in-score-context.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / beam-endings-in-score-context.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.12.0"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoces = "
9 Las reglas de final de barra especificadas en el contexto
10 @code{Score} se aplican a todos los pentagramas, pero se pueden
11 modificar tanto en los niveles de @code{Staff} como de
12 @code{Voice}:
13
14 "
15   doctitlees = "Finales de barra en el contexto Score"
16
17   texidoc = "
18 Beam-ending rules specified in the @code{Score} context apply to all
19 staves, but can be modified at both @code{Staff} and @code{Voice}
20 levels: 
21
22 "
23   doctitle = "Beam endings in Score context"
24 } % begin verbatim
25
26 \relative c'' {
27   \time 5/4
28   % Set default beaming for all staves
29   #(score-override-auto-beam-setting '(end * * 5 4) 3 8)
30   #(score-override-auto-beam-setting '(end * * 5 4) 7 8)
31   <<
32     \new Staff {
33       c8 c c c c c c c c c
34     }
35     \new Staff {
36       % Modify beaming for just this staff
37       #(override-auto-beam-setting '(end * * 5 4) 6 8 'Staff)
38       #(revert-auto-beam-setting '(end * * 5 4) 7 8 'Staff)
39       c8 c c c c c c c c c
40     }
41     \new Staff {
42       % Inherit beaming from Score context
43       <<
44         {
45           \voiceOne
46           c8 c c c c c c c c c
47         }
48         % Modify beaming for this voice only
49         \new Voice {
50           \voiceTwo
51           #(override-auto-beam-setting '(end * * 5 4) 6 8)
52           #(revert-auto-beam-setting '(end * * 5 4) 7 8)
53           a8 a a a a a a a a a
54         }
55       >>
56     }
57   >>
58 }