]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.11.62"
4
5 \header {
6   lsrtags = "rhythms"
7   texidoc = "
8 By specifying the context, the effect of @code{beatGrouping} can be
9 limited to the context specified, and the values which may have
10 been set in higher-level contexts can be overridden:
11 "
12   doctitle = "Specifying context with beatGrouping"
13 } % begin verbatim
14
15 \score {
16   \new Staff <<
17     \time 7/8
18     \new Voice {
19       \relative c'' {
20         \set Staff.beatGrouping = #'(2 3 2)
21         a8 a a a a a a
22       }
23     }
24     \new Voice {
25       \relative c' {
26         \voiceTwo
27         \set Voice.beatGrouping = #'(1 3 3)
28         f8 f f f f f f
29       }
30     }
31   >>
32 }