]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Merge commit 'origin' into beamlets2
[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:
20 "
21   doctitle = "Specifying context with beatGrouping"
22 } % begin verbatim
23
24
25 \score {
26   \new Staff <<
27     \time 7/8
28     \new Voice {
29       \relative c'' {
30         \set Staff.beatGrouping = #'(2 3 2)
31         a8 a a a a a a
32       }
33     }
34     \new Voice {
35       \relative c' {
36         \voiceTwo
37         \set Voice.beatGrouping = #'(1 3 3)
38         f8 f f f f f f
39       }
40     }
41   >>
42 }