]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-endings-in-score-context.ly
Doc-es: pre-merge update of texidoc committishes.
[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   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 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>  
18   texidocde = "
19 Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken
20 sich auf alle Systeme aus, können aber auf @code{Staff}- und 
21 @code{Voice}-Ebene neu verändert werden:
22
23 "
24   doctitlede = "Balkenenden auf Score-Ebene"
25
26   texidoc = "
27 Beam-ending rules specified in the @code{Score} context apply to all
28 staves, but can be modified at both @code{Staff} and @code{Voice}
29 levels: 
30
31 "
32   doctitle = "Beam endings in Score context"
33 } % begin verbatim
34
35 \relative c'' {
36   \time 5/4
37   % Set default beaming for all staves
38   #(score-override-auto-beam-setting '(end * * 5 4) 3 8)
39   #(score-override-auto-beam-setting '(end * * 5 4) 7 8)
40   <<
41     \new Staff {
42       c8 c c c c c c c c c
43     }
44     \new Staff {
45       % Modify beaming for just this staff
46       #(override-auto-beam-setting '(end * * 5 4) 6 8 'Staff)
47       #(revert-auto-beam-setting '(end * * 5 4) 7 8 'Staff)
48       c8 c c c c c c c c c
49     }
50     \new Staff {
51       % Inherit beaming from Score context
52       <<
53         {
54           \voiceOne
55           c8 c c c c c c c c c
56         }
57         % Modify beaming for this voice only
58         \new Voice {
59           \voiceTwo
60           #(override-auto-beam-setting '(end * * 5 4) 6 8)
61           #(revert-auto-beam-setting '(end * * 5 4) 7 8)
62           a8 a a a a a a a a a
63         }
64       >>
65     }
66   >>
67 }