]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Imported Upstream version 2.12.3
[lilypond.git] / input / lsr / specifying-context-with-beatgrouping.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "rhythms, tweaks-and-overrides"
7
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 más
12 altos:
13
14 "
15   doctitlees = "Especificar el contexto con beatGrouping"
16
17   texidoc = "
18 By specifying the context, the effect of @code{beatGrouping} can be
19 limited to the context specified, and the values which may have been
20 set in higher-level contexts can be overridden.  The @code{\\set}
21 commands must be placed after all @code{\\time} commands:
22
23 "
24   doctitle = "Specifying context with beatGrouping"
25 } % begin verbatim
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 beatGrouping = #'(1 3 3)
40         f8 f f f f f f
41       }
42     }
43   >>
44 }