]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multiple-time-sig-settings.ly
Merge branch 'master' into lilypond/translation
[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, notes should be beamed as indicated
7 by the markups.
8 "
9 }
10
11 \relative c' {
12   \overrideTimeSignatureSettings
13       #'Score
14       #'(4 . 4)  % time signature fraction
15       #'(1 . 4)  % base moment fraction
16       #'(1 1 1 1)    % beatStructure
17       #'()       % beamExceptions
18   \overrideTimeSignatureSettings
19       #'Score
20       #'(3 . 4)  % time signature fraction
21       #'(1 . 4)  % base moment fraction
22       #'(1 1 1)    % beatStructure
23       #'()       % beamExceptions
24   \time 4/4
25   c8^\markup {"Beam by 1/4"} c c c c c c c |
26   \time 3/4
27   c8^\markup {"Beam by 1/4"} c c c c c |
28   \revertTimeSignatureSettings #'Score #'(4 . 4)
29   \revertTimeSignatureSettings #'Score #'(3 . 4)
30   \time 4/4
31   c8^\markup {"Beam by 1/2"} c c c c c c c |
32   \time 3/4
33   c8^\markup {"Beam by 3/4"} c c c c c |
34 }