]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multiple-time-sig-settings.ly
Fix overrideTimeSignatureSettings multiple overrides work
[lilypond.git] / input / regression / multiple-time-sig-settings.ly
1 \version "2.13.33"
2
3 \header {
4   texidoc = "
5 Multiple overrides to the default time signature settings can be
6 added.  In this example, all notes should be beamed at 1/4.
7 "
8 }
9
10 \relative c' {
11   \overrideTimeSignatureSettings
12       #'Score
13       #'(4 . 4)  % time signature fraction
14       #'(1 . 4)  % base moment fraction
15       #'(1 1 1 1)    % beatStructure
16       #'()       % beamExceptions
17   \overrideTimeSignatureSettings
18       #'Score
19       #'(3 . 4)  % time signature fraction
20       #'(1 . 4)  % base moment fraction
21       #'(1 1 1)    % beatStructure
22       #'()       % beamExceptions
23   \time 4/4
24   c8 c c c c c c c |
25   \time 3/4
26   c8 c c c c c |
27   \time 4/4
28   c8 c c c c c c c |
29   \time 3/4
30   c8 c c c c c |
31 }