]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beam-endings-in-score-context.ly
Revised autobeam settings patch and ran makelsr.py
[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.29
5 \version "2.13.29"
6
7 \header {
8 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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 Beat structure 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   \set Score.baseMoment = #(ly:make-moment 1 8)
53   \set Score.beatStructure = #'(3 4 3)
54   <<
55     \new Staff {
56       c8 c c c c c c c c c
57     }
58     \new Staff {
59       % Modify beaming for just this staff
60       \set Staff.beatStructure = #'(6 4)
61       c8 c c c c c c c c c
62     }
63     \new Staff {
64       % Inherit beaming from Score context
65       <<
66         {
67           \voiceOne
68           c8 c c c c c c c c c
69         }
70         % Modify beaming for this voice only
71         \new Voice {
72           \voiceTwo
73           \set Voice.beatStructure = #'(6 4)
74           a8 a a a a a a a a a
75         }
76       >>
77     }
78   >>
79 }