diff options
author | EuAndreh <eu@euandre.org> | 2021-01-01 22:17:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-01 22:22:30 -0300 |
commit | 8344825a7b4d006fb6a163d87636b589d8af25cc (patch) | |
tree | 2f9bd12b7bc64c661f6d2332bbf618dcfce584b4 /music/marcha-dos-marinheiros.ly | |
parent | post.html: Add trailing '/' to source tag (diff) | |
download | euandre.org-8344825a7b4d006fb6a163d87636b589d8af25cc.tar.gz euandre.org-8344825a7b4d006fb6a163d87636b589d8af25cc.tar.xz |
Add support for "Music"
Diffstat (limited to '')
-rw-r--r-- | music/marcha-dos-marinheiros.ly | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/music/marcha-dos-marinheiros.ly b/music/marcha-dos-marinheiros.ly new file mode 100644 index 0000000..1de28d0 --- /dev/null +++ b/music/marcha-dos-marinheiros.ly @@ -0,0 +1,48 @@ +\version "2.20.0" + +\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 { } +}
\ No newline at end of file |