-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcaribbeansecondline.ly
95 lines (79 loc) · 1.42 KB
/
caribbeansecondline.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
\version "2.12.3"
\header {
title = "Caribbean Second Line"
composer = ""
tagline = "" %date of latest edits
copyright = \markup {\bold ""} %form
}
% music pieces
%part: leadsheet
leadsheet = {
\relative c' { \key bes \dorian \time 2/2
\mark \markup { \box "1" }
\repeat volta 2 {
c'1~ | c | des~ | des |
}
\break
\partial 8 bes8 |
\mark \markup { \box "2" \tiny " melody" }
\repeat volta 2 {
f'4 bes,8 ees r bes r ees | r des r ees des4-^ bes |
ees2. des8 bes | r2 r4. bes8 |
}
\break
\mark \markup { \box "3" \tiny "solo bkgd" }
\repeat volta 2 {
c4. c8 r2 | r4. c8~ c c c c | des4. aes8 r2 | r1 |
}
\break
\mark \markup { \box "bass" }
\clef bass
\repeat volta 2 {
bes,,4. f8~ f2 | bes4 f bes a | aes4. <ees ees'>8~ <ees ees'>2 | aes4 aes a r |
}
\break
}
}
%part: bass
bass = {
}
%part: words
words = \markup { }
%part: changes
changes = \chordmode { }
%layout
%#(set-default-paper-size "a5" 'landscape)
#(set-global-staff-size 17)
\book {
\header { poet = "Lead Sheet- C" }
\paper { page-count = 1 }
\score {
<<
\new Staff {
\leadsheet
}
>>
}
}
\book {
\header { poet = "Lead Sheet - Bb" }
\paper { page-count = 1 }
\score { \transpose c d
<<
\new Staff {
\leadsheet
}
>>
}
}
\book {
\header { poet = "Lead Sheet - Eb" }
\paper { page-count = 1 }
\score { \transpose c a,
<<
\new Staff {
\leadsheet
}
>>
}
}