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