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