-
Notifications
You must be signed in to change notification settings - Fork 2
/
los_chucos_suaves.ly
executable file
·173 lines (143 loc) · 2.93 KB
/
los_chucos_suaves.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
\version "2.12.3"
\header {
title = "Los Chucos Suaves"
composer = "Lalo Guerrero"
tagline = "7/13/10" %date of latest edits
copyright = \markup {\bold ""} %form
}
%place a mark at bottom right
markdownright = { \once \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT \once \override Score.RehearsalMark #'direction = #DOWN }
% music pieces
%part: melody
melody = {
\relative c' { \key g \minor
\mark \default %A
\repeat volta 2 {
g'4 bes d c8 bes | r c r d r bes~ bes4 |
g bes d8 c r ees | r d r c r a~ a4 |
a bes c bes8 a | r bes r c r a~ a4 |
\times 2/3 { r4 a bes } c8 d r bes |
r a r g~ g4 r8 g ^\markup { \tiny \italic "2nd x only" } |
}
\break \mark \default %B
\repeat volta 2 {
d'4 d d c8 ees | r d r c r a r a |
c4 c c bes8 d | r c r bes r g r g |
bes4 bes bes a8 c | r bes r a~ a4 r8 fis |
d4 fis a c8 bes | r a r g~ g4 r8 g^\markup { \tiny \italic "1st x only" } |
}
}
}
%part: bass
bass = {
\relative c { \key g \minor
\mark \default %A
\repeat volta 2 {
g4 r bes d | g, r bes d | g, r bes d | a r c ees |
a, r c ees | a, r c ees | a, r c ees | g, r bes d |
}
\break \mark \default %B
\repeat volta 2 {
g, r bes d | a r c ees | a, r c ees | g, r bes d |
g, r bes d | a r c ees | a, r c ees | g, r bes d |
}
}
}
%part: words
words = \markup { }
%part: changes
changes = \chordmode {
%A
g1:m | g:m | g:m | a:dim |
a:dim | a:dim | a:dim | g:m |
g:m | a:dim | a:dim | g:m
g:m | a:dim | a:dim | g:m
}
%layout
#(set-default-paper-size "a5" 'landscape)
\book {
\header { poet = "Melody - C" }
\paper { page-count = 1 }
\score {
<<
\new Staff {
\melody
}
>>
}
}
\book {
\header { poet = "Melody - Bb" }
\paper { page-count = 1 }
\score { \transpose c d
<<
\new Staff {
\melody
}
>>
}
}
\book {
\header { poet = "Melody - Eb" }
\paper { page-count = 1 }
\score { \transpose c a,
<<
\new Staff {
\melody
}
>>
}
}
\book {
\header { poet = "Bass - C" }
\paper { page-count = 1 }
\score {
<<
\new ChordNames { \set chordChanges = ##t \changes }
\new Staff { \clef bass
\bass
}
>>
}
}
\book {
\header { poet = "Bass - Eb" }
\paper { page-count = 1 }
\score { \transpose c a'
<<
\new ChordNames { \set chordChanges = ##t \changes }
\new Staff { \clef treble
\bass
}
>>
}
}
\book { \header { poet = "Score" }
\paper { #(set-paper-size "a4")
page-count = "unset" }
\score {
<<
\new ChordNames { \set chordChanges = ##t \changes }
\new Staff {
\melody
}
\new Staff { \clef bass
\bass
}
>>
}
}
\book { \header { poet = "MIDI" }
\score {
<< \tempo 4 = 200
\unfoldRepeats \new Staff { \set Staff.midiInstrument = #"alto sax"
\melody
}
\unfoldRepeats \new Staff { \set Staff.midiInstrument = #"tuba"
\bass
}
>>
\midi { }
}
}
%}