Skip to content

Instantly share code, notes, and snippets.

@lucasgonze
Created November 18, 2011 08:31
Show Gist options
  • Save lucasgonze/1375903 to your computer and use it in GitHub Desktop.
Save lucasgonze/1375903 to your computer and use it in GitHub Desktop.
Lilypond code for "Pompey Ran Away"
\version "2.14.2"
\header {
copyright = "public domain"
title = "Pompey Ran Away"
subtitle = "from \"A SELECTION of Scotch, Englith, Irith, and Foreign AIRS\"... 1782"
enteredby = "Lucas Gonze <[email protected]>"
source = "http://soupgreens.com/2011/08/11/legible-sheet-music-for-pompey-ran-away/"
}
patternA = { b'4 b'8 a'8 g'4 }
patternB = { e'8 g'8 fis'8 d'8 g'4 }
patternC = { d''8 b'8 c''8 a'8 g'4 }
patternD = { e'8 a'8 a'8 fis'8 g'4 }
\score {
{
\key g \major
\time 3/4
\repeat volta 2 {
\patternA | \patternB |
\patternA | \patternB |
} \break
\patternC | \patternD | \patternC | \patternB | \break
\patternD | \patternB | \patternD | \patternB | \break
}
}
% -----------------------------------------------
% Typeset using Lilypond
% Copyright c. 2011 by Lucas Gonze <[email protected]>
% Hereby donated to the public domain.
%
% The source manuscript that I worked from is a PDF scan at imslp of Volume 1 of James Aird's 1782 music book "A SELECTION of Scotch, Englith, Irith, and Foreign AIRS Adapted to the FIFE, VIOLIN, or GERMAN-FLUTE" : http://erato.uvt.nl/files/imglnks/usimg/4/4c/IMSLP98437-PMLP202254-aird_selection_of_scotch_air_1_1782.pdf
% -----------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment