mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
Updated Cabar Feidh, added extra 2/4 parts
This commit is contained in:
parent
14f0332b28
commit
787d78c378
10 changed files with 319 additions and 56 deletions
133
4-4_marches/cabar_feidh/full.ly
Normal file
133
4-4_marches/cabar_feidh/full.ly
Normal file
|
@ -0,0 +1,133 @@
|
|||
\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 "../../standards/24_44_standards.side.ily"
|
||||
\include "./notes.pipes.ily"
|
||||
%\include "./notes.pipes.seconds.ily"
|
||||
%\include "./notes.lyrics.ily"
|
||||
|
||||
\layout {
|
||||
indent = 5.0
|
||||
short-indent = 2.0
|
||||
}
|
||||
|
||||
#(set-global-staff-size 17)
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new Staff \with {
|
||||
instrumentName = \markup{ \instrumentPipes }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
} {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat unfold 4 {
|
||||
\part
|
||||
\line
|
||||
\bar "||"
|
||||
\break
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s8
|
||||
|
||||
\pipesB s8
|
||||
|
||||
\pipesC s8
|
||||
|
||||
\pipesD s8
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
%{ \new Staff = "song" {
|
||||
\lyricsglobal
|
||||
\new Voice = "lyrics" {
|
||||
|
||||
}
|
||||
}
|
||||
}%
|
||||
%{ \new Lyrics = "verse1" {
|
||||
\lyricsglobal
|
||||
\lyricsto "lyrics" {
|
||||
\verseA
|
||||
}
|
||||
}
|
||||
%}
|
||||
%{ \new Staff = "seconds" \with {
|
||||
instrumentName = \markup{ \instrumentPipes \instrumentSecnd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentSecnd }
|
||||
} {
|
||||
\pipessecndglobal
|
||||
|
||||
}
|
||||
%}
|
||||
\new PipeBandDrumStaff = "side" \with {
|
||||
instrumentName = \markup { \instrumentSide }
|
||||
shortInstrumentName = \markup{ \shortInstrumentSide }
|
||||
} {
|
||||
\sideglobal
|
||||
|
||||
\simpleSnarepone \midone \simpleSnarepone \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepone \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
|
||||
\simpleSnareptwo \midone \simpleSnareptwo \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnareptwo \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
|
||||
\simpleSnarepthree \midone \simpleSnarepthree \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepthree \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
|
||||
\simpleSnarepfour \midone \simpleSnarepfour \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepfour \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
|
||||
|
||||
}
|
||||
%{
|
||||
\new PipeBandDrumStaff = "tenor" \with {
|
||||
instrumentName = \markup{ \instrumentTenor }
|
||||
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
} {
|
||||
\tenorglobal
|
||||
|
||||
}
|
||||
%}
|
||||
%{
|
||||
\new PipeBandDrumStaff = "bass" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||
} {
|
||||
\bassglobal
|
||||
|
||||
}
|
||||
%}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
|
||||
$(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=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,16 +1,42 @@
|
|||
% 4/4 Cabar Feidh
|
||||
% Side
|
||||
\version "2.18.2"
|
||||
composerSide = ""
|
||||
composerSide = "Seaforth Highlanders of Canada"
|
||||
arrangerSide = ""
|
||||
arrangerSideSimple = "E.T. de Boone, 2018"
|
||||
sideglobal = {
|
||||
\sixteenthBeaming
|
||||
\eighthBeaming
|
||||
}
|
||||
% Music
|
||||
simpleSnarepone = \drummode {
|
||||
g8 |
|
||||
\flam d16. g32 \triplet { d16 g d } \flam g8 g d4:32~ d8
|
||||
\flam d16. g32 \triplet { d16 g d }
|
||||
\flam g8 g
|
||||
d4:32~
|
||||
d8
|
||||
}
|
||||
simpleSnareptwo = \drummode {
|
||||
g8 |
|
||||
d8:32( \triplet { g16) d g }
|
||||
d8-> d8:32(
|
||||
\triplet { g16) d g } d16. d32
|
||||
\flam g8
|
||||
}
|
||||
simpleSnarepthree = \drummode {
|
||||
g8 |
|
||||
\flam d8 g16. d32->
|
||||
\triplet { g16 d g } \flam d16. g32
|
||||
d16. d32-> \triplet { g16 d g }
|
||||
d8->
|
||||
}
|
||||
simpleSnarepfour = \drummode {
|
||||
d8:32( |
|
||||
g16.) g32-> \triplet { d16 g d }
|
||||
\flam g16. d32-> g16. g32
|
||||
\flam d16. g32-> \triplet { d16 g d }
|
||||
g8
|
||||
}
|
||||
|
||||
simpleSnareEndingI = \drummode { \tutti {
|
||||
g8 |
|
||||
\flam d4 d4:32~ d4
|
||||
|
@ -20,7 +46,7 @@ simpleSnareEndingII = \drummode {
|
|||
\flam d16 g d \flam g
|
||||
d16 g \flam d g
|
||||
d16 \flam g d g
|
||||
\flam d4:32(
|
||||
d4:32(
|
||||
|
|
||||
d8) \flam g8
|
||||
d32 g d g d16.-> g32
|
||||
|
|
|
@ -12,14 +12,15 @@
|
|||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat unfold 4 {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\line
|
||||
}
|
||||
\halfline
|
||||
\break
|
||||
\halfline
|
||||
\bar "||"
|
||||
\break
|
||||
}
|
||||
\bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesAgiraA s8
|
||||
|
||||
|
|
|
@ -10,24 +10,23 @@
|
|||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat unfold 4 {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\line
|
||||
}
|
||||
\break
|
||||
}
|
||||
}%Format
|
||||
%\new NullVoice = "format" {
|
||||
% \repeat unfold 4 {
|
||||
% \part
|
||||
% \halfline
|
||||
% \break
|
||||
% \halfline
|
||||
% \bar "||"
|
||||
% \break
|
||||
% }
|
||||
% \bar "|."
|
||||
%}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s8
|
||||
|
||||
\pipesB s8
|
||||
|
||||
\pipesC s8
|
||||
|
||||
\pipesD s8
|
||||
\partial 8 \pipesA s8 \bar "||" \break
|
||||
\partial 8 \pipesB s8 \bar "||" \break
|
||||
\partial 8 \pipesC s8 \bar "||" \break
|
||||
\partial 8 \pipesD s8 \bar "|."
|
||||
}
|
||||
>>
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
\include "./notes.side.ily"
|
||||
\include "../../standards/24_44_standards.side.ily"
|
||||
|
||||
#(set-global-staff-size 18)
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
|
@ -19,26 +20,28 @@
|
|||
% { s1*2 }
|
||||
% { s1*2 }
|
||||
% }
|
||||
%}
|
||||
%
|
||||
% }
|
||||
%}%Format
|
||||
|
||||
\new DrumVoice = "side" {
|
||||
\partial 8 \simpleSnarepone \midone \simpleSnarepone \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepone \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
|
||||
\partial 8 \simpleSnarepone \midone \simpleSnarepone \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepone \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
\bar "||"
|
||||
|
||||
\break
|
||||
\repeat unfold 3 {
|
||||
\partial 8 \pempty \midone \pempty \simpleSnareEndingI r8 s8
|
||||
\break
|
||||
\tutti {
|
||||
\partial 8 \cadenzaOn \pempty \cadenzaOff \removeWithTag #'tutti \midone \simpleSnareEndingII s8
|
||||
}
|
||||
\bar "||"
|
||||
}
|
||||
\bar "|."
|
||||
|
||||
\partial 8 \simpleSnareptwo \midone \simpleSnareptwo \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnareptwo \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
\bar "||"
|
||||
\break
|
||||
|
||||
\partial 8 \simpleSnarepthree \midone \simpleSnarepthree \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepthree \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
\bar "||"
|
||||
\break
|
||||
|
||||
\partial 8 \simpleSnarepfour \midone \simpleSnarepfour \simpleSnareEndingI r8
|
||||
\tutti { \simpleSnarepfour \removeWithTag #'tutti \midone \simpleSnareEndingII s8 }
|
||||
\bar "|."
|
||||
}
|
||||
>>
|
||||
}
|
||||
|
@ -47,6 +50,6 @@
|
|||
meter = \meter
|
||||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
arranger = \arrangerSide
|
||||
arranger = \arrangerSideSimple
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue