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