-
Notifications
You must be signed in to change notification settings - Fork 1
/
Folmaszott-a-kakas.ly
111 lines (92 loc) · 1.54 KB
/
Folmaszott-a-kakas.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
\version "2.18.0"
\language "english"
%\pointAndClickOff
\paper{
tagline = ##f
print-all-headers = ##t
#(set-paper-size "letter")
}
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
%%\markup{ \italic{ " Updated " \date } }
melody = \relative c'' {
\clef treble
\key g \major
\time 4/4
\set Score.markFormatter = #format-mark-box-alphabet
%\partial 16*3 a16 d f %lead in notes
<<
{
g'4 fs e b
b'8 a4. g4 fs
e2 e4 r4
b'8 b4. c4 b
a4 d, b'8 a4.
g2 g4 r4
}
\\
{
g,4 fs e b
b'8 a4. g4 fs
e2 e4 r4
b'8 b4. c4 b
a4 d, b'8 a4.
g2 g4 r4
}
>>
\repeat volta 2{
\mark \default
<<
{
b'4 b c8 b4.
a8 a b fs-3 g-4 a4.
g4 fs8 fs e b4.
b'4 a g fs
e2 e4 r4
}
% \\arranger= "Szélrózsa"
{
b4 b c8 b4.
a8 a b fs g a4.
g4 fs8 fs e b4.
b'4 a g fs
e2 e4 r4
}
>>
}
% \alternative { { }{ } }
}
%************************Lyrics Block****************
%\addlyrics{ Doe a deer }
harmonies = \chordmode {
e4:m b:7 e:m e:m
d4 d g b:7
e1:m
g2 a4:m g
d1
g1
%b part
g1
d1
e4:m b:7 e2:m
g4 d e:m b:7
e:m
}
\score {
<<
\new ChordNames {
\set chordChanges = ##f
\harmonies
}
\new Staff
\melody
>>
\header{
title= "Folmaszott a kakas"
instrument= "Violin"
subtitle = ""
composer= "Rabatamasi"
arranger= ""
}
\midi{\tempo 4 = 120}
\layout{indent = 1.0\cm}
}