Last active
December 25, 2015 02:49
-
-
Save SamWhited/6905336 to your computer and use it in GitHub Desktop.
Lilypond example
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.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