]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Doc -- index for rhythms.itely by Ralph Palmer
[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.12.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   lsrtags = "rhythms"
16   texidoc = "
17 By specifying the context, the effect of @code{beatGrouping} can be
18 limited to the context specified, and the values which may have
19 been set in higher-level contexts can be overridden.  The
20 @code{\set} commands must be placed @emph{after} all @code{\time}
21 commands:
22 "
23   doctitle = "Specifying context with beatGrouping"
24 } % begin verbatim
25
26
27 \score {
28   \new Staff <<
29     \time 7/8
30     \new Voice {
31       \relative c'' {
32         \set Staff.beatGrouping = #'(2 3 2)
33         a8 a a a a a a
34       }
35     }
36     \new Voice {
37       \relative c' {
38         \voiceTwo
39         \set Voice.beatGrouping = #'(1 3 3)
40         f8 f f f f f f
41       }
42     }
43   >>
44 }