]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beam-endings-in-score-context.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / beam-endings-in-score-context.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.4
5 \version "2.13.18"
6
7 \header {
8 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken
22 sich auf alle Systeme aus, können aber auf @code{Staff}- und
23 @code{Voice}-Ebene neu verändert werden:
24
25 "
26   doctitlede = "Balkenenden auf Score-Ebene"
27
28
29
30 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
31   texidocfr = "
32 Les règles de ligatures définies au niveau du contexte @code{Score}
33 s'appliqueront à toutes les portées.  Il est toutefois possible de
34 moduler au niveau @code{Staff} ou @code{Voice} :
35
36 "
37   doctitlefr = "Définition de règles de ligature pour la partition"
38
39   lsrtags = "rhythms"
40   texidoc = "
41 Beam-ending rules specified in the @code{Score} context apply to all
42 staves, but can be modified at both @code{Staff} and @code{Voice}
43 levels:
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 }