-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsee-you-soon.ly
76 lines (59 loc) · 1.35 KB
/
see-you-soon.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
\version "2.18.2"
\header {
title = "До скорой встречи"
}
global = {
\time 4/4
\compressFullBarRests
\improvisationOn
}
chordNames = \chordmode {
\global
\germanChords
aes1 f:min bes ees aes f:min g g
f:m g c:m c:m f:m bes ees c f:m g c:m aes f:m aes g g
aes f:min bes ees aes f:m g g
aes f:min bes ees aes f:m g g
}
melody = \relative c'' {
\global
\key aes \major
a1 a1 a1 a1 a1 a1 a1 a1 % \repeat percent 7 { a1 }
\break
\mark \markup { \musicglyph #"scripts.segno" \circle 1 \circle 3 \circle 6 }
%\mark \markup { \musicglyph #"scripts.segno" }
%\bar "[|:"
%\mark \markup { \circle 2 \circle 4 \circle 5 }
\repeat volta 6
{
\repeat percent 8 { a8[a a a] a8[a a a] }
\break
\repeat percent 8 { a8[a a a] a8[a a a] }
\break
\bar "[|:"
%\repeat percent 8 { a8[a a a] a8[a a a] }
%\bar ":|]"
%\mark \markup { \circle 3 }
\break
}
\alternative
{
{ \repeat percent 8 { a8[a a a] a8[a a a] } }
{
\mark \markup { \circle 3 }
\repeat percent 8 { a8[a a a] a8[a a a] }
}
}
\mark \markup { \musicglyph #"scripts.segno" }
\bar ":|]"
}
\score {
<<
\new ChordNames \chordNames
%\new FretBoards \chordNames
\new Staff { \melody }
%\addlyrics { \words }
>>
\layout { }
%\midi { }
}