Skip to content

Instantly share code, notes, and snippets.

@SamWhited
Last active December 25, 2015 02:49
Show Gist options
  • Save SamWhited/6905336 to your computer and use it in GitHub Desktop.
Save SamWhited/6905336 to your computer and use it in GitHub Desktop.
Lilypond example
\version "2.16.2"
tuba = \relative c {
% Clef, key, midi instrument, etc. is set here
\clef bass
\key aes \major
\time 2/2
% The music...
R1*4 \bar "||:" \break
}
\score {
<<
% Add the staff to the score (and name it "tuba") here
\new Staff = "tuba" <<
\set Staff.instrumentName = #"Tuba"
\tuba
>>
>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment