aboutsummaryrefslogtreecommitdiff
path: root/music/marcha-dos-marinheiros.ly
blob: 78411dab074d7e69190a80c9006963272d9158b2 (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 {
  title = "Marcha dos Marinheiros"
  composer = "Canhoto"
  copyright = \markup {
    \with-url #"https://creativecommons.org/licenses/by-sa/4.0/" \line {
      CC BY-SA 4.0
    }
  }
  tagline = \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 { }
}