-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrides-Waltz.ly
101 lines (91 loc) · 1.45 KB
/
Brides-Waltz.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
\version "2.18.0"
\language "english"
%\pointAndClickOff
\paper{
tagline = ##f
%#print-all-headers = ##t
#(set-paper-size "letter")
}
\header{
title= "The Bride's Waltz"
instrument = "Violin"
subtitle="(Played by Deborah Straus)"
instrument = "Violin"
composer= "Petru Zigeuuer"
%arranger= "Jeff Warschuer"
}
melody = \relative c' {
\clef treble
\key d \minor
\time 3/4
\set Score.markFormatter = #format-mark-box-alphabet
\repeat volta 2{
\mark \default
a'2.\upbow
d2.
\grace f16 e8-2 d cs d e f
e f d4 d
a2.
d2.
\grace f16 e8 d cs bf a g
a8 bf a4 a
a2.
d2.
\grace f16 e8 d cs d e f
e f d4 d
a'2 c4
b8 c a4 fs
a2.
<a d>2.
}
\repeat volta 2{
\mark \default
d4 a a
gs8 a f2
gs8 a f4 f
e8 f d2
a'2 d4
b8 c a4 gs
a2.~
a2.
d4 a a
gs8 a f2
gs8 a f4 f
e8 f d2
f4-3 e8 f d4
e4 d8 e cs4
d-1 d8 a f'-3 e
d4 d8 e f a
}
\repeat volta 2{
\mark \default
c8 b c b c b
c d c4 b
a8 gs a gs a gs
a b a4 gs
a4 a8 gs a f
f4 f8 e e d
gs b a2
a8 d a2
c8 b c b c b
c d c4 b
a8 gs a gs a gs
a b a4 gs
a4 a8 gs a f
f4 f8 e e d
}
\alternative { {d4 d8 e f a} {d,2.} }
}
harmonies = \chordmode {
}
\score {
<<
\new ChordNames {
\set chordChanges = ##f
\harmonies
}
\new Staff \melody
>>
\midi{\tempo 4 = 120}
\layout{indent = 1.0\cm}
}