Last active
February 4, 2020 03:47
-
-
Save eduardoklosowski/ab5f11eb6ce7d3ac6ed6357686f2e153 to your computer and use it in GitHub Desktop.
Estrutura de arquivo do LilyPond para violino - https://www.hacklily.org/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\version "2.18.2" | |
\language "portugues" | |
\header { | |
dedication = ##f | |
title = "Escala de Dó Maior" | |
subtitle = ##f | |
subsubtitle = ##f | |
instrument = ##f | |
composer = ##f | |
arranger = ##f | |
poet = ##f | |
meter = ##f | |
piece = ##f | |
opus = ##f | |
copyright = ##f | |
tagline = ##f | |
} | |
\paper { | |
#(set-paper-size "a4") | |
indent = 0 | |
} | |
violin = \relative do' { | |
\clef treble | |
\key do \major | |
\numericTimeSignature | |
\time 4/4 | |
\tempo "Moderato" 4=108 | |
\repeat volta 2 { | |
do1 re mi fa sol la si do | |
do si la sol fa mi re do | |
} | |
} | |
verseOne = \lyricmode { | |
\set stanza = "1." | |
Dó Ré Mi Fá Sol Lá Sí Dó | |
Dó Sí Lá Sol Fá Mi Ré Dó | |
} | |
\score { | |
\new Staff \violin | |
\addlyrics { \verseOne } | |
\layout { } | |
} | |
\score { | |
\unfoldRepeats \new Staff \with { | |
midiInstrument = "violin" | |
} \violin | |
\midi { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment