mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-05 03:33:30 +01:00
aef0f5b65a
This needs to be done for every file New Scores for Tenor mostly (not fully integrated yet) Some bugfixes in layout
80 lines
2.2 KiB
Text
80 lines
2.2 KiB
Text
\version "2.19.0"
|
|
|
|
\include "bagpipe.ly"
|
|
\include "lilydrum.ly"
|
|
|
|
\include "./config.ily"
|
|
\include "./notes.bass.ily"
|
|
\include "./notes.tenor.ily"
|
|
\include "./notes.side.ily"
|
|
\include "./notes.pipes.ily"
|
|
|
|
\score {
|
|
\new StaffGroup <<
|
|
\new Staff {
|
|
\global
|
|
\bagpipeKey
|
|
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentPipes }
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
|
<<
|
|
{
|
|
\repeat volta 2 {
|
|
\part \line
|
|
}\break
|
|
\part \line \bar "||" \break
|
|
\line \bar "|."
|
|
}%Format
|
|
{
|
|
\pipesA s8
|
|
\pipesB
|
|
\pipesCA s8
|
|
}%Pipes
|
|
>>
|
|
}
|
|
\new PipeBandDrumStaff = "side" {
|
|
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
|
\sideglobal
|
|
\snareA s8
|
|
\snareBA
|
|
\snareBB
|
|
}
|
|
\new PipeBandDrumStaff = "tenor" {
|
|
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
\tenorglobal
|
|
|
|
r8 \tenorA s8
|
|
|
|
\tenorB
|
|
\tenorA s8
|
|
}
|
|
\new PipeBandDrumStaff = "bass" {
|
|
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
|
r8 \bassA s8
|
|
|
|
\bassB
|
|
\bassA s8
|
|
}
|
|
>>
|
|
\header {
|
|
title = \title
|
|
meter = \meter
|
|
composer = \markup \large {
|
|
\column \right-align {
|
|
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
|
$(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=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
|
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
|
}
|
|
}
|
|
}
|
|
}
|