]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beam-endings-in-score-context.ly
9e12eb16105af04bc758bb9b174dd2189450ff41
[lilypond.git] / Documentation / snippets / 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 %% Translation of GIT committish: 21c8461ea87cd670a35a40b91d3ef20de03a0409
7   texidocfr = "
8 Les règles de ligatures définies au niveau du contexte @code{Score}
9 s'appliqueront à toutes les portées.  Il est toutefois possible de
10 moduler au niveau @code{Staff} ou @code{Voice} :
11
12 "
13   doctitlefr = "Définition de règles de ligature pour la partition"
14
15   lsrtags = "rhythms"
16
17 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
18   texidoces = "
19 Las reglas de final de barra especificadas en el contexto
20 @code{Score} se aplican a todos los pentagramas, pero se pueden
21 modificar tanto en los niveles de @code{Staff} como de
22 @code{Voice}:
23
24 "
25   doctitlees = "Finales de barra en el contexto Score"
26
27 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
28   texidocde = "
29 Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken
30 sich auf alle Systeme aus, können aber auf @code{Staff}- und
31 @code{Voice}-Ebene neu verändert werden:
32
33 "
34   doctitlede = "Balkenenden auf Score-Ebene"
35
36
37
38   texidoc = "
39 Beam-ending rules specified in the @code{Score} context apply to all
40 staves, but can be modified at both @code{Staff} and @code{Voice}
41 levels: 
42
43 "
44   doctitle = "Beam endings in Score context"
45 } % begin verbatim
46
47 \relative c'' {
48   \time 5/4
49   % Set default beaming for all staves
50   #(score-override-auto-beam-setting '(end * * 5 4) 3 8)
51   #(score-override-auto-beam-setting '(end * * 5 4) 7 8)
52   <<
53     \new Staff {
54       c8 c c c c c c c c c
55     }
56     \new Staff {
57       % Modify beaming for just this staff
58       #(override-auto-beam-setting '(end * * 5 4) 6 8 'Staff)
59       #(revert-auto-beam-setting '(end * * 5 4) 7 8 'Staff)
60       c8 c c c c c c c c c
61     }
62     \new Staff {
63       % Inherit beaming from Score context
64       <<
65         {
66           \voiceOne
67           c8 c c c c c c c c c
68         }
69         % Modify beaming for this voice only
70         \new Voice {
71           \voiceTwo
72           #(override-auto-beam-setting '(end * * 5 4) 6 8)
73           #(revert-auto-beam-setting '(end * * 5 4) 7 8)
74           a8 a a a a a a a a a
75         }
76       >>
77     }
78   >>
79 }
80