From 8a45d4d3ce2df7ed3ec6995cf29ad203f195a99c Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Sun, 21 Feb 2016 09:24:11 +0100 Subject: [PATCH] Seems like nothing is included --- .gitignore | 3 -- hornpipes/the_walrus/drums.ly | 50 ++++++++++++++++++++++++++++ hornpipes/the_walrus/notes.tenor.ily | 6 ++++ hornpipes/the_walrus/tenor.ly | 20 +++++++++++ 4 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 hornpipes/the_walrus/drums.ly create mode 100644 hornpipes/the_walrus/notes.tenor.ily create mode 100644 hornpipes/the_walrus/tenor.ly diff --git a/.gitignore b/.gitignore index 69fd014..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +0,0 @@ -disk_errors/ -pdf/ -tmp/ diff --git a/hornpipes/the_walrus/drums.ly b/hornpipes/the_walrus/drums.ly new file mode 100644 index 0000000..4ad9532 --- /dev/null +++ b/hornpipes/the_walrus/drums.ly @@ -0,0 +1,50 @@ +\version "2.19.0" + +\include "config.ily" +\include "notes.bass.ily" +\include "notes.tenor.ily" +\include "notes.side.ily" + +\score { + \new StaffGroup << + \new PipeBandDrumStaff = "side" { + \global + \sideglobal + \set PipeBandDrumStaff.instrumentName = \markup{\instrumentSide} + \set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide} + + << + { }%Format + { }%Music + >> + } + \new PipeBandDrumStaff = "bass" { + \bassglobal + \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass } + \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass} + + } + \new PipeBandDrumStaff = "tenor" { + \tenorglobal + \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor } + \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor } + + } + >> + \header { + title = \title + meter = \meter + composer = \markup { + \column \right-align { + $(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} ) + $(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} ) + $(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} ) + } + \column \right-align { + $(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} ) + $(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} ) + $(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} ) + } + } + } +} diff --git a/hornpipes/the_walrus/notes.tenor.ily b/hornpipes/the_walrus/notes.tenor.ily new file mode 100644 index 0000000..f572169 --- /dev/null +++ b/hornpipes/the_walrus/notes.tenor.ily @@ -0,0 +1,6 @@ +% <> <> +% Tenor +\version "2.18.2" +composerTenor = "" +tenorA = \drummode { +} \ No newline at end of file diff --git a/hornpipes/the_walrus/tenor.ly b/hornpipes/the_walrus/tenor.ly new file mode 100644 index 0000000..a96bc97 --- /dev/null +++ b/hornpipes/the_walrus/tenor.ly @@ -0,0 +1,20 @@ +\version "2.18.2" + +\include "config.ily" +\include "notes.tenor.ily" + +\score { + \new PipeBandDrumStaff { + \global + << + {} + {} + >> + } + \header { + title = \title + meter = \meter + instrument = \instrumentTenor + composer = \composerTenor + } +} \ No newline at end of file