pipeband-music/template/drums.ly

66 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-01-07 14:47:02 +01:00
\version "2.19.0"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.bass.ily"
\include "./notes.tenor.ily"
\include "./notes.side.ily"
2016-01-07 14:47:02 +01:00
\layout {
indent = 5.0
short-indent = 2.0
}
2016-01-07 14:47:02 +01:00
\score {
\new StaffGroup <<
\new PipeBandDrumStaff = "side" \with {
instrumentName = \markup{ \instrumentSide }
shortInstrumentName = \markup{ \shortInstrumentSide }
} {
2016-01-07 14:47:02 +01:00
\global
2016-02-19 11:57:29 +01:00
\sideglobal
2016-01-07 14:47:02 +01:00
<<
2016-11-07 09:27:20 +01:00
\new NullVoice = "format" {
}%End of Format
\new DrumVoice = "side" {
}%End of side
2016-01-07 14:47:02 +01:00
>>
}
\new PipeBandDrumStaff = "tenor" \with {
instrumentName = \markup{ \instrumentTenor }
shortInstrumentName = \markup{ \shortInstrumentTenor }
} {
2016-02-19 11:57:29 +01:00
\tenorglobal
2016-01-07 14:47:02 +01:00
}
\new PipeBandDrumStaff = "bass" \with {
instrumentName = \markup{ \instrumentBass }
shortInstrumentName = \markup{ \shortInstrumentBass}
} {
\bassglobal
}
2016-01-07 14:47:02 +01:00
>>
\header {
title = \title
subtitle = \subtitle
2016-01-07 14:47:02 +01:00
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 }}#} )
}
}
}
2016-02-19 11:57:29 +01:00
}