A few nits.
[opus_libre.git] / scores / etoilesanscouleur / mesures.ly
blob74d05cfa493615e7e5a898de755fcb4ec1508c1e
1 %-- Étoile sans couleur -- mesures.ly -----------------------------%
2 % (c) 2011 Valentin Villenave <valentin@villenave.net>
4 Mesures = {
5 \tempo "Adagio" 4 = 60
6 \time 7/16
7 \partial 16 s16
8 %% Why 7/16 to begin with?
9 %% 'cause I'm mean, that's why.
10 R1*7/16*4
11 \time 3/4
12 %% This was originally intended to be
13 %% constrained with 6-9-11-14 rules,
14 %% but it had to be softened in order
15 %% for the dramatic progression to work.
16 s2.*2 \bar "||"
17 s2.*22 \bar "||"
18 s2.*19 \bar "||"
19 s2.*19 \bar "||"
20 \tempo "Quasi doppio tempo" 2 = 52~60
21 \time 3/2
22 %% Well, look at that: 9-11-14! \o/
23 s1.*9 \bar "||"
24 s1.*11 \bar "||"
25 s1.*14 \bar "||"
26 \tempo "Presto" 4 = 160~176
27 \time 3/4
28 %% 49 is 6+9+11+14+9 (not necessarily in that order)
29 s2.*49 \bar "||"
30 \tempo "Tempo I" % Should probably be even calmer.
31 s2.*31 \bar "||"
32 s2.*20 \bar "||"
33 s2. \bar "|."
36 %- Beaming rules --------------------------------------------------%
38 %%% Default LilyPond beaming is pretty dumb and ugly.
39 %%% (Or perhaps I may have a peculiar taste.)
40 %%% OTOH, I'm not sure I'll want these settings for
41 %%% other scores yet to come. Thus, I'm just overwriting
42 %%% the modern-time-signature-settings locally here,
43 %%% without merging these changes into the master branch.
45 #(define-public modern-time-signature-settings
46 (append
48 ((3 . 2) .
49 ((beamExceptions . ((end . (((1 . 12) . (3 3 3 3 3 3))))))))
50 ((3 . 4) .
51 ((beamExceptions . ((end . (((1 . 8) . (2 2 2))))))))
53 modern-time-signature-settings))
55 %------------------------------------------------------------------%