blob: c175d9fad45bba3d5590ae4bb76c1dff927e111d (
about) (
plain) (
blame)
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
|
\version "2.20.0"
\pointAndClickOff
\header {
= "Choro da Saudade"
= "Agustín Barrios"
= \markup {
\with-url #"https://creativecommons.org/licenses/by-sa/4.0/" \line {
CC BY-SA 4.0
}
}
= \markup {
\with-url #"https://euandre.org/music.html" \line {
euandre.org/music.html
}
}
}
globals = {
\clef "treble_8"
\key d \major
\time 2/4
\set fingeringOrientations = #'(left)
\tempo 4 = 100
}
upper = \relative c {
\globals
}
lower = \relative c {
\globals
}
staff = \new Staff <<
\upper
\\
\lower
>>
\score {
\staff
\layout { }
}
\score {
\unfoldRepeats \staff
\midi { }
}
|