]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
42e7613e1c08437057fb4c0e52874afe5f86aca0
[lilypond.git] / input / lsr / specifying-context-with-beatgrouping.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.12.0
4 \version "2.13.1"
5
6 \header {
7 %% Translation of GIT committish: 70f455b078620f842672c64c66d87a08158a24ac
8   texidoces = "
9 Mediante la especificación del contexto, el efecto de
10 @code{beatGrouping} puede limitarse al contexto especificado, y
11 sobreescribirse los valores establecidos en contextos de niveles
12 más altos.  Las instruccionees @code{\\set} se deben situar
13 @emph{después} de todas las instrucciones @code{\\time}:
14
15
16 "
17   doctitlees = "Especificar el contexto con beatGrouping"
18
19 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
20   texidocde = "
21 Wenn der Kontext angegeben wird, kann die Auswirkung von @code{beatGrouping}
22 auf den angegebenen Kontext beschränkt werden und die Werte, die in Kontexten
23 auf höhrer Ebene angegeben wurden, können verändert werden.  Der
24 @code{\\set}-Befehl muss @emph{nach} den @code{\\time}-Befehl geschrieben
25 werden:
26 "
27   doctitlede = "Den Kontext für beatGrouping angeben"
28
29
30 %% Translation of GIT committish: b3196fadd8f42d05ba35e8ac42f7da3caf8a3079
31   texidocfr = "
32 Le fait de spécifier un contexte à @code{beatGrouping} permet d'en 
33 limiter les effets.  Par voie de conséquence, il sera possible
34 d'outrepasser les règles définies à un niveau supérieur.  La commande
35 @code{\set} destinée à en modifier les valeurs doit se placer après la 
36 commande @code{\time} :
37
38 "
39   doctitlefr = "Spécification du contexte auquel s'appliquera beatGrouping"
40
41   lsrtags = "rhythms"
42   texidoc = "
43 By specifying the context, the effect of @code{beatGrouping} can be
44 limited to the context specified, and the values which may have
45 been set in higher-level contexts can be overridden.  The
46 @code{\\set} commands must be placed @emph{after} all @code{\\time}
47 commands:
48 "
49   doctitle = "Specifying context with beatGrouping"
50 } % begin verbatim
51
52
53 \score {
54   \new Staff <<
55     \time 7/8
56     \new Voice {
57       \relative c'' {
58         \set Staff.beatGrouping = #'(2 3 2)
59         a8 a a a a a a
60       }
61     }
62     \new Voice {
63       \relative c' {
64         \voiceTwo
65         \set beatGrouping = #'(1 3 3)
66         f8 f f f f f f
67       }
68     }
69   >>
70 }