CMPD: Removed STB with full unisons

This commit is contained in:
Eric Teunis de Boone 2019-12-18 00:28:01 +01:00
parent aff6acd64c
commit 998910338d
3 changed files with 68 additions and 72 deletions

View File

@ -1,36 +0,0 @@
\version "2.18.2"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.side.ily"
markTextEol = #(define-music-function (parser location text) (string?) #{
\once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
\once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
\mark \markup $text
#})
\score {
\new PipeBandDrumStaff {
\global
\sideglobal
<<
{
\repeat volta 2 {\part \line \markTextEol "Fine" \break }
\part \line \markTextEol "D.C. al Fine" \bar "||"
}
{
\removeWithTag #'tutti { \snareA s8 }
\removeWithTag #'tutti { \snareBAhigh }
}
>>
}
\header {
title = #(string-append title " (high)" )
meter = \meter
instrument = \instrumentSide
composer = \composerSide
}
}

View File

@ -1,36 +0,0 @@
\version "2.18.2"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.side.ily"
markTextEol = #(define-music-function (parser location text) (string?) #{
\once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
\once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
\mark \markup $text
#})
\score {
\new PipeBandDrumStaff {
\global
\sideglobal
<<
{
\repeat volta 2 {\part \line \markTextEol "Fine" \break }
\part \line \markTextEol "D.C. al Fine" \bar "||"
}
{
\removeWithTag #'tutti { \snareA s8 }
\removeWithTag #'tutti { \snareBA }
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
}
}

View File

@ -0,0 +1,68 @@
\version "2.19.0"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.bass.ily"
\include "./notes.tenor.ily"
\layout {
indent = 5.0
short-indent = 2.0
}
\score {
\new StaffGroup <<
\new PipeBandDrumStaff = "tenor" \with {
instrumentName = \markup{ \instrumentTenor }
shortInstrumentName = \markup{ \shortInstrumentTenor }
} {
\tenorglobal
\global
<<
{
\line \break
\line \break
\bar "||"
\line \break
\line \break
\bar "|."
}%Format
{
\tenorA
\tenorA
\tenorBA
\tenorBB
}%Music
>>
}
\new PipeBandDrumStaff = "bass" \with {
instrumentName = \markup{ \instrumentBass }
shortInstrumentName = \markup{ \shortInstrumentBass }
} {
\bassglobal
\bassAA
\bassAB
\bassAA
\bassAB
}
>>
\header {
title = \title
meter = \meter
composer = \markup {
\column \right-align {
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
}
\column \right-align {
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
}
}
}
}