]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/specifying-context-with-beatgrouping.ly
Add support for max-systems-per-page.
[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
16 \score {
17   \new Staff <<
18     \time 7/8
19     \new Voice {
20       \relative c'' {
21         \set Staff.beatGrouping = #'(2 3 2)
22         a8 a a a a a a
23       }
24     }
25     \new Voice {
26       \relative c' {
27         \voiceTwo
28         \set Voice.beatGrouping = #'(1 3 3)
29         f8 f f f f f f
30       }
31     }
32   >>
33 }