-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAllOfMe_test.ly
174 lines (161 loc) · 3.54 KB
/
AllOfMe_test.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
174
\version "2.18.2"
#(set-global-staff-size 18)
\include "jazzchords.ily"
\include "improviso.ily"
\include "jazzextras.ily"
\paper {
#(set-paper-size "letter")
% paper-height = 11\in
% paper-width = 8.5\in
indent = 0\mm
between-system-space = 2.5\cm
between-system-padding = #0
%%set to ##t if your score is less than one page:
ragged-last-bottom = ##f
ragged-bottom = ##f
markup-system-spacing = #'((basic-distance . 23)
(minimum-distance . 8)
(padding . 1))
}
title = #"All Of Me"
composer = #"-Simons & Marks"
meter = #" (Med. Swing)"
realBookTitle = \markup {
\score {
{
\override TextScript.extra-offset = #'(0 . -4.5)
s4
s^\markup {
\fill-line {
\fontsize #1 \lower #1 \rotate #7 \concat { " " #meter }
\fontsize #8
\override #'(offset . 7)
\override #'(thickness . 6)
\underline \larger \larger #title
\fontsize #1 \lower #1 \concat { #composer " " }
}
}
s
}
\layout {
\omit Staff.Clef
\omit Staff.TimeSignature
\omit Staff.KeySignature
ragged-right = ##f
}
}
}
\header {
title = \realBookTitle
tagline = ##f
}
theNotes = \relative c' {
\set Staff.midiInstrument = "flute"
\key c \major
\showStartRepeatBar \bar "[|:"
\repeat "volta" 2 {
c'4 g8 e ~ e2 ~
e2 \times 2/3 { c'4 d c }
b4 gis8 e ~ e2 ~
e1 \break
a4. g8 e2 ~
e4 dis e8 bes' a4
g2 f2 ~
f1 \break
e4. ees8 d2 ~
d2 e8 gis c4
d2 c2 ~
c1 \break
b4. bes8 a2 ~
a2 a8 d b4
a1
b1 \bar "||" \break
c4 g8 e ~ e2 ~
e2 \times 2/3 { c'4 d c }
b4 gis8 e ~e2 ~
e1 \break
a4. g8 e2 ~
e4 dis e8 bes' a4
g2 f2 ~
f1 \break
}
\alternative {
{
d'2 c4 b
d2. c4
b2 e,4 g4
b2. a4 \break
c2 a4 c
e2 e2
c1 ~
c1 \bar ":|][|:" \break
}
{
d2 c4 b
d2. c4
b2 e,4 g4
b2. a4 \break
c2 a4 c
e2 e2
c1
~c1
\bar ":|]"
}
}
}
theChords = \chordmode {
\repeat "volta" 2 {
c1:maj c1:maj e:7 e:7 |
a:7 a:7 d:m7 d:m7 |
e:7 e:7 a:m7 a:m7 |
d:7 d:7 d:m7 g:7 |
c1:maj c1:maj e:7 e:7 |
a:7 a:7 d:m7 d:m7 |
}
\alternative {
{
f1 f:m c2:maj e:m7 a1:7 |
d:m7 g:7 c2:6 ees:dim d2:m7 g:7 |
}
{
f1 f:m c2:maj e:m7 a1:7 |
d:m7 g:7 c1:6 c1:6 |
}
}
}
theWords = \lyricmode {
All of me
Why not take all of me
Can't you see
I'm no good with -- out you
Take my lips
I want to lose them
Take my arms
I ne -- ver use them
Your Good -- bye
Left me with eyes that cry
How can I go on dear with -- out you
% first repeat
You took the part
That once was my heart
So why not take all of me
% second repeat
You took the best
So why not take the rest
Ba -- by take all of me.
}
\score {
<<
\new ChordNames \theChords
\new Voice = soloist \theNotes
\new Lyrics \lyricsto soloist \theWords
>>
\layout {
\override Score.Clef #'break-visibility = #'#(#f #f #f) % make only the first clef visible
\override Score.KeySignature #'break-visibility = #'#(#f #f #f) % make only the first time signature visible
\override Score.SystemStartBar #'collapse-height = #1 % allow single-staff system bars
}
\midi {
\tempo 4 = 88
}
}