From 7c016c48b6356147c567a9222de45dd50dd8a405 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 3 Sep 2026 09:19:35 -0300 Subject: m --- src/content/music/marcha-dos-marinheiros.ly | 78 +++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 src/content/music/marcha-dos-marinheiros.ly (limited to 'src/content/music/marcha-dos-marinheiros.ly') diff --git a/src/content/music/marcha-dos-marinheiros.ly b/src/content/music/marcha-dos-marinheiros.ly new file mode 100644 index 0000000..48cc1c6 --- /dev/null +++ b/src/content/music/marcha-dos-marinheiros.ly @@ -0,0 +1,78 @@ +\version "2.20.0" +\pointAndClickOff +#(ly:set-option 'embed-source-code #t) + +\include "common.ly.include" +\include "guitar.ly.include" + +\header { + title = "Marcha dos Marinheiros" + composer = "Canhoto" + copyright = \copyright + tagline = \tagline +} + +globals = { + \clef "treble_8" + \key a \minor + \time 2/4 + \set fingeringOrientations = #'(left) + \tempo Adagio 4 = 70 +} + +upper = \relative c { + \globals +} + +lower = \relative c { + \globals + \set stringNumberOrientations = #'(down) + + d4~ d16 | + 4~ e16 | + d4~ d16 | + 4 a8 e | + + d'4~ d16 | + 4~ e16 e | + 8 | + a4~ a16 e' ees d | + + \repeat volta 2 { + \mark \markup { \musicglyph #"scripts.segno" } + 4 8 | + 4~ a16 | + 4 8 || + 4~ d16 d e f | + + d'8 c b a | + } + \alternative { + { + gis4~ gis16 d e f | + e8 d c b | + a4~ a16 e' ees d | + } + { + c'8 b a f | + e d c b | + a2 | + } + } +} + +staff = \new Staff << + \upper + \\ + \lower +>> + +\score { + \staff + \layout { } +} + +\score { + \unfoldRepeats \staff + \midi { } +} -- cgit v1.3