-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathErdo.ly
122 lines (111 loc) · 1.58 KB
/
Erdo.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
\version "2.18.0"
\language "english"
%\pointAndClickOff
%moved \header into \score for includes to work
\paper{
tagline = ##f
print-all-headers = ##t
#(set-paper-size "letter")
}
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
%%\markup{ \italic{ " Updated " \date } }
common={
\clef treble
\key d \minor
\time 4/4
}
%\markup{ Got something to say? }
%#################################### Melody ########################
notes = \relative c' {
c4. f8 \tuplet 3/2 { e4 f2} |
g2 c2|
bf8 a g a g f4.|
c2 c4 r4|
c8 f4. e8 f4.|
g2 c|
bf8 a g a g f4.|
c2 c4 r4|
\tuplet 3/2 { c'4 c2 } \tuplet 3/2 { d4 bf2 }|
a8 g a bf d4 c
f,4. f8 g g4.
a8 g f e d4 c|
c4. f8 e f4.
g2 c
bf8 a g a g f4.
c2 c4 r|
}
melody=
<<
\common
% \transpose c c' \notes
\\
\notes
>>
%################################# Lyrics #####################
%\addlyrics{ Doe a deer }
%################################# Chords #######################
harmonies = \chordmode {
f1
c1
c2:7 f2
c1
f1
c1
c2:7 f2
c1
f2 b2
f2 b4 c4
f2 c2
f2 b4 c4
f1
c1
c2:7 f2
c1
%{
f1
c1
bes2
f2
c1
f1
c1
bes1
c1
f2
bes2
f2
bes4
c4
f1
c1
f1
c1
bes1
c1
%}
%old chords
%{
f1 c1 c2:7 f2
c1
f1 c1
c2:7 f2 c1 f2 b2 f2 b4 c4 f2 c2
f2 b4 c4 f1 c1 c2:7 f2 c1
%}
}
\score {
<<
\new ChordNames {
\set chordChanges = ##f
\harmonies
}
\new Staff \notes
>>
\header{
title= "Erdo"
instrument= "Violin"
subtitle= ""
arranger= ""
}
\midi{\tempo 4 = 120}
\layout{indent = 1.0\cm}
}