]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[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 \version "2.13.0"
4
5 \header {
6   texidoces = "
7 Mediante la especificación del contexto, el efecto de
8 @code{beatGrouping} puede limitarse al contexto especificado, y
9 sobreescribirse los valores establecidos en contextos de niveles más
10 altos:
11
12 "
13   doctitlees = "Especificar el contexto con beatGrouping"
14
15 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
16   texidocde = "
17 Wenn der Kontext angegeben wird, kann die Auswirkung von @code{beatGrouping}
18 auf den angegebenen Kontext beschränkt werden und die Werte, die in Kontexten
19 auf höhrer Ebene angegeben wurden, können verändert werden.  Der
20 @code{\\set}-Befehl muss @emph{nach} den @code{\\time}-Befehl geschrieben
21 werden:
22 "
23   doctitlede = "Den Kontext für beatGrouping angeben"
24
25   lsrtags = "rhythms"
26   texidoc = "
27 By specifying the context, the effect of @code{beatGrouping} can be
28 limited to the context specified, and the values which may have
29 been set in higher-level contexts can be overridden.  The
30 @code{\\set} commands must be placed @emph{after} all @code{\\time}
31 commands:
32 "
33   doctitle = "Specifying context with beatGrouping"
34 } % begin verbatim
35
36
37 \score {
38   \new Staff <<
39     \time 7/8
40     \new Voice {
41       \relative c'' {
42         \set Staff.beatGrouping = #'(2 3 2)
43         a8 a a a a a a
44       }
45     }
46     \new Voice {
47       \relative c' {
48         \voiceTwo
49         \set beatGrouping = #'(1 3 3)
50         f8 f f f f f f
51       }
52     }
53   >>
54 }