Created
September 18, 2015 02:00
-
-
Save Technicus/df8503e47df30dc55e72 to your computer and use it in GitHub Desktop.
This file contains hidden or 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" | |
| \header { | |
| dedication = "Description" | |
| title = "Title" | |
| subtitle = "Subtitle" | |
| subsubtitle = "Subsubtitle" | |
| instrument = "Instrument" | |
| composer = "Composer" | |
| arranger = "Arranger" | |
| poet = "Poet" | |
| meter = "Meter" | |
| piece = "Piece" | |
| opus = "Opus" | |
| copyright = "Copyright" | |
| tagline = "Tagline" | |
| } | |
| global = { | |
| \key c \major | |
| \time 4/4 | |
| } | |
| classicalGuitar = \relative c' { | |
| \global | |
| % Music follows here. | |
| } | |
| \score { | |
| \new StaffGroup \with { | |
| \consists "Instrument_name_engraver" | |
| instrumentName = "Classical guitar" | |
| } << | |
| \new Staff \with { | |
| midiInstrument = "acoustic guitar (nylon)" | |
| } { \clef "treble_8" \classicalGuitar } | |
| \new TabStaff \with { | |
| stringTunings = #guitar-tuning | |
| } \classicalGuitar | |
| >> | |
| \layout { } | |
| \midi { | |
| \tempo 4=100 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment