-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGoldensteyn-Hora.ly
130 lines (111 loc) · 2.24 KB
/
Goldensteyn-Hora.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
\version "2.18.0"
\include "english.ly"
%\pointAndClickOff
% automatically converted from Montreal Hora.xml
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
\markup{ \italic{ \date } }
\paper{
tagline = ##f
print-all-headers = ##t
#(set-paper-size "letter")
}
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
%\markup{ \italic{ " Updated " \date } }
\midi{\tempo 4 = 120}
\layout {
\context {
\Score
autoBeaming = ##f
}
}
melody = \relative c' {
\clef "treble" \key g \minor \time 3/8 \repeat volta 2 {
fs8 [ g8 a8 ] | % 2
d,8.-> [ bf'16 a16 g16 ] | % 3
fs8 [ g8 a8 ] | % 4
d,8.-> [ bf'16 a16 g16 ] | % 5
fs8 [ g8 a8 ] |
d8. [ bf16 a16 g16 ] | % 7
fs8. [ ef16 d16 c16 ] | % 8
d4.
}
a'8 [ bf8 a8 ] |
bf8. [ a16 a16 g16 ] | % 11
g8. [ a16 bf16 d16 ] |
cs8. \startTrillSpan [ bf16 \stopTrillSpan a16 g16 ] | % 13
g8 [ a8 g8 ] | % 14
a8. [ g16 g16 fs16 ] | % 15
fs4. ~ | % 16
fs4. | % 17
a8 [ bf8 c8 ] | % 18
a8. [ bf16 a16 g16 ] |
fs8 [ g8 a8 ] |
fs8. [ d16 fs16 g16 ] | % 21
a8. [ g16 g16 fs16 ] | % 22
fs8. [ ef16 d16 c16 ] | % 23
d4. ~ | % 24
d4. | % 25
a'8 [ bf8 a8 ] | % 26
bf8. [ a16 a16 g16 ] | % 27
g8. [ a16 bf16 d16 ] | % 28
cs8. \startTrillSpan [ bf16 a16 \stopTrillSpan g16 ] | % 29
g8 [ a8 g8 ] |
a8. [ g16 g16 fs16 ] | % 31
fs4. ~ | % 32
fs4. | % 33
a8 [ bf8 c8 ] | % 34
bf8 [ c8 d8 ] | % 35
ef8 [ c8 a8 ] | % 36
fs8. [ g16 g16 a16 ] | % 37
| % 37
a8. [ g16 g16 fs16 ] | % 38
fs8. [ ef16 d16 c16 ] | % 39
d4. ~ |
d4. \bar "|."
}
harmonies = \chordmode {
d8*15
g8*3:m
d8*6
%b
g8*9:m
a8*3
g8*6:m
d8*6
a8*6:m
d8*18
g8*9:m
a8*9
d8*6
g8*6:m
c8*3:m
d8*15
}
\score {
<<
\new ChordNames {
\set chordChanges = ##f
\harmonies
}
\new Staff
\melody
>>
\header{
title= "Goldensteyn Hora"
subtitle=""
composer= ""
instrument = "Violin"
arranger= ""
}
\midi{\tempo 4 = 120}
\layout{indent = 1.0\cm}
}
%{ The score definition
\new Staff <<
\set Staff.
\context ChordNames = "PartPOneVoiceOneChords" \PartPOneVoiceOneChords
\context Staff <<
\context Voice = "PartPOneVoiceOne" { \PartPOneVoiceOne }
>>
>>
%}