-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dushka-Ramic-Porch-Tango.ly
141 lines (127 loc) · 2.44 KB
/
Dushka-Ramic-Porch-Tango.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
\version "2.18.0"
\include "english.ly"
%\pointAndClickOff
\paper{
tagline = #ff
print-all-headers = ##t
#(set-paper-size "letter")
}
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
\markup{ \italic{ \date } }
%\markup{ Got something to say? }
global = {
\clef treble
\key a \minor
\time 4/4
\set Score.markFormatter = #format-mark-box-alphabet
}
%#################################### Melody ########################
%melody = \transpose c d \relative c' { %transpose for clarinet
first = { r8 e16 e e8 e f e f [e]| }
first_b = { r8 e''16 ^ Octave e e8 e f e f [e]| } % for octve part
second = { r8 d16 d d8 d e d e [d] }
third = { r8 a16 a a8 a b a b [a] }
melody = \relative c' {
\global
%\partial 16*3 a16 d f %lead in notes
\first
\first
r8 e16 e e8 e f e d [c]|
d16 c b8 (b2.)|
\second
\second
r8 d16 d d8 d e d c [d]|
e1
\first
\first
r8 e16 e e8 e a a a [g]
g4 f2.|
\third
%\time 3/4
r8 b4 a8 f4 d|
\time 4/4
\transpose c c'\third
%\time 3/4
r8 c'4 a8 e4 c|
%\time 4/4
\first
gs8 f e d c4 d
e1
r8 e16 e e8 e a^rit a a [g]|
g4 f2.|
%\time 3/4
r8 a16 a a8 a b a b [c]
r8 a16 a a8 a d c b [a]|
%\time 4/4
gs8 [f] e [d] c [d] b [c]
a1 \fermata \bar"||"
%****************** 8 va ***********************
\first_b
\first
r8 e16 e e8 e f e d [c]|
d16 c b8 (b2.)|
\second
\second
r8 d16 d d8 d e d c [d]|
e1
\first
\first
r8 e16 e e8 e a a a [g]
g4 f2.|
\third
%\time 3/4
r8 b4 a8 f4 d|
\time 4/4
\transpose c c'\third
%\time 3/4
r8 c'4 a8 e4 c|
%\time 4/4
\first
gs8 f e d c4 d
e1
r8 e16 e e8 e a^rit a a [g]|
g4 f2.|
%\time 3/4
r8 a16 a a8 a b a b [c]
r8 a16 a a8 a d c b [a]|
%\time 4/4
gs8 [f] e [d] c [d] b [c]
a1 \fermata
}
%################################# Lyrics #####################
%\addlyrics{ \set stanza = #"1. " }
%################################# Chords #######################
harmonies = \chordmode {
a1*3:m
e1*4:7
a1*4:m
d4*12:m
a4*8:m
e1*2:7
a1*2:m
\parenthesize d4*8:m
a4*4:m
e1:7
a1:m
}
\score {
% transpose score below
%\transpose c d
<<
\new ChordNames {
\set chordChanges = ##f
\harmonies
}
\new Staff \melody
%\new Staff \transpose c c'\melody
>>
\header{
title= "Porch Tango"
subtitle=""
composer= "Dushka Ramic"
instrument = "Violin"
arranger= ""
}
\midi{\tempo 4 = 120}
\layout{indent = 1.0\cm}
}