]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-endings-in-score-context.ly
6dfd211618f59d993064af8a974d34d6197c7829
[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.13.1"
4
5 \header {
6   lsrtags = "rhythms"
7
8 %% Translation of GIT committish: 43774ddb81b9017802da04ba2862cae4586935b2
9   texidoces = "
10 Las reglas de final de barra especificadas en el contexto
11 @code{Score} se aplican a todos los pentagramas, pero se pueden
12 modificar tanto en los niveles de @code{Staff} como de
13 @code{Voice}:
14
15 "
16   doctitlees = "Finales de barra en el contexto Score"
17
18 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
19   texidocde = "
20 Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken
21 sich auf alle Systeme aus, können aber auf @code{Staff}- und
22 @code{Voice}-Ebene neu verändert werden:
23
24 "
25   doctitlede = "Balkenenden auf Score-Ebene"
26
27   texidoc = "
28 Beam-ending rules specified in the @code{Score} context apply to all
29 staves, but can be modified at both @code{Staff} and @code{Voice}
30 levels: 
31
32 "
33   doctitle = "Beam endings in Score context"
34 } % begin verbatim
35
36 \relative c'' {
37   \time 5/4
38   % Set default beaming for all staves
39   #(score-override-auto-beam-setting '(end * * 5 4) 3 8)
40   #(score-override-auto-beam-setting '(end * * 5 4) 7 8)
41   <<
42     \new Staff {
43       c8 c c c c c c c c c
44     }
45     \new Staff {
46       % Modify beaming for just this staff
47       #(override-auto-beam-setting '(end * * 5 4) 6 8 'Staff)
48       #(revert-auto-beam-setting '(end * * 5 4) 7 8 'Staff)
49       c8 c c c c c c c c c
50     }
51     \new Staff {
52       % Inherit beaming from Score context
53       <<
54         {
55           \voiceOne
56           c8 c c c c c c c c c
57         }
58         % Modify beaming for this voice only
59         \new Voice {
60           \voiceTwo
61           #(override-auto-beam-setting '(end * * 5 4) 6 8)
62           #(revert-auto-beam-setting '(end * * 5 4) 7 8)
63           a8 a a a a a a a a a
64         }
65       >>
66     }
67   >>
68 }
69