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