]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beam-endings-in-score-context.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / beam-endings-in-score-context.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
12   texidoces = "
13 Las reglas de final de barra especificadas en el contexto
14 @code{Score} se aplican a todos los pentagramas, pero se pueden
15 modificar tanto en los niveles de @code{Staff} como de
16 @code{Voice}:
17
18 "
19   doctitlees = "Finales de barra en el contexto Score"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken
25 sich auf alle Systeme aus, können aber auf @code{Staff}- und
26 @code{Voice}-Ebene neu verändert werden:
27
28 "
29   doctitlede = "Balkenenden auf Score-Ebene"
30
31
32
33 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
34   texidocfr = "
35 Les règles de ligature définies au niveau du contexte @code{Score}
36 s'appliqueront à toutes les portées.  Il est toutefois possible de
37 moduler au niveau @code{Staff} ou @code{Voice}@tie{}:
38
39 "
40   doctitlefr = "Définition de règles de ligature pour la partition"
41
42   lsrtags = "rhythms"
43   texidoc = "
44 Beat structure rules specified in the @code{Score} context apply to all
45 staves, but can be modified at both @code{Staff} and @code{Voice}
46 levels:
47 "
48   doctitle = "Beam endings in Score context"
49 } % begin verbatim
50
51
52 \relative c'' {
53   \time 5/4
54   % Set default beaming for all staves
55   \set Score.baseMoment = #(ly:make-moment 1 8)
56   \set Score.beatStructure = #'(3 4 3)
57   <<
58     \new Staff {
59       c8 c c c c c c c c c
60     }
61     \new Staff {
62       % Modify beaming for just this staff
63       \set Staff.beatStructure = #'(6 4)
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           \set Voice.beatStructure = #'(6 4)
77           a8 a a a a a a a a a
78         }
79       >>
80     }
81   >>
82 }