Skip to content

Instantly share code, notes, and snippets.

@Technicus
Created September 18, 2015 02:00
Show Gist options
  • Save Technicus/df8503e47df30dc55e72 to your computer and use it in GitHub Desktop.
Save Technicus/df8503e47df30dc55e72 to your computer and use it in GitHub Desktop.
\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