mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
Added some airs with lyrics, and updated templates accordingly
This commit is contained in:
parent
743099ea26
commit
39129866d8
59 changed files with 1544 additions and 693 deletions
|
@ -1,53 +0,0 @@
|
|||
Bagpipe Reader:1.0
|
||||
|
||||
MIDINoteMappings,(54,56,58,59,61,63,64,66,68,56,58,60,61,63,65,66,68,70,55,57,59,60,62,64,65,67,69)
|
||||
|
||||
FrequencyMappings,(370,415,466,494,554,622,659,740,831,415,466,523,554,622,699,740,831,932,392,440,494,523,587,659,699,784,880)
|
||||
|
||||
InstrumentMappings,(71,71,45,33,1000,60,70)
|
||||
|
||||
GracenoteDurations,(20,40,30,50,100,200,800,1200,250,250,250,500,200)
|
||||
|
||||
FontSizes,(90,100,100,80,250)
|
||||
|
||||
TuneFormat,(1,0,M,L,500,1500,500,500,L,0,0)
|
||||
|
||||
TuneTempo,70
|
||||
|
||||
"Flower of Scotland ",(T,L,0,0,Times New Roman,16,700,0,0,18,0,0,0)
|
||||
|
||||
"Slow air",(Y,C,0,0,Times New Roman,14,400,0,0,18,0,0,0)
|
||||
|
||||
"november 18th 2009",(F,L,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
|
||||
"The Seaforth Highlanders of Holland",(F,R,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
|
||||
" Traditional, arr. J.G.Slattery Scots Guards",(M,R,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
|
||||
|
||||
|
||||
& sharpf sharpc 6_8 I!'' F_8
|
||||
|
||||
! echohg F_4 E_8 thrd D_4 'd
|
||||
! eg LA_4 'la ^tla LA_4 echola LA_8
|
||||
! thrd D_4 F_8 dbe E_4 'e
|
||||
! echola E_4 D_8 echohg D_4 E_8 !t
|
||||
|
||||
& sharpf sharpc
|
||||
dbf F_4 'f ^tf F_4 stre F_8
|
||||
! HGr_8 tg Fl_8 HGl_8 dbha HA_4 'ha
|
||||
! thrd D_4 eg LA_8 dbe E_4 strla E_8
|
||||
! gg Er_8 Dl_8 El_8 gg F_4 HG_8
|
||||
! dbf F_4 E_8 thrd D_4 'd !t
|
||||
|
||||
& sharpf sharpc
|
||||
eg LA_4 'la ^tla LA_4 F_8
|
||||
! HGr_8 tg Fl_8 HGl_8 dbha HA_4 'ha
|
||||
! thrd D_4 'd ^td D_4 F_8
|
||||
! dbhg HGr_8 Fr_8 El_8 dbf F_4 E_8 !t
|
||||
|
||||
& sharpf sharpc
|
||||
|
||||
thrd D_4 'd ^td D_4 echoc D_8
|
||||
! gg C_4 E_8 thrd D_4 'd ^td
|
||||
! D_4 'd lgstd D_4 ''!I
|
|
@ -2,13 +2,16 @@
|
|||
%% Globals
|
||||
global = {
|
||||
\time 6/8
|
||||
}
|
||||
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 2. = 60
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
halfline = { \repeat unfold 2 { s2. | } }
|
||||
measure = {\grace{s1} s2. |}
|
||||
halfline = { \repeat unfold 2 { \measure } }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Flower of Scotland"
|
||||
meter = "Air"
|
||||
meter = "Air"
|
||||
|
|
88
airs/flower_of_scotland/full.ly
Normal file
88
airs/flower_of_scotland/full.ly
Normal file
|
@ -0,0 +1,88 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "config.ily"
|
||||
%\include "notes.bass.ily"
|
||||
%\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
\include "notes.pipes.ily"
|
||||
%\include "notes.pipes.seconds.ily"
|
||||
%\include "notes.lyrics.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentPipes }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
<<
|
||||
\new Voice = "format"
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\repeat unfold 2 { \line \line \break }
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes"
|
||||
{
|
||||
\pipesA s8
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
% \new Lyrics = "verse1" {
|
||||
% \lyricsglobal
|
||||
% \lyricsto "pipes" {
|
||||
% \verseA
|
||||
% }
|
||||
% }
|
||||
% \new Staff = "seconds" {
|
||||
% \pipessecndglobal
|
||||
% \set Staff.instrumentName = \markup{ \instrumentPipes Seconds }
|
||||
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
|
||||
%
|
||||
%
|
||||
% }
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
\snareA s8
|
||||
}
|
||||
% \new PipeBandDrumStaff = "tenor" {
|
||||
% \tenorglobal
|
||||
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
%
|
||||
% }
|
||||
% \new PipeBandDrumStaff = "bass" {
|
||||
% \bassglobal
|
||||
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
%
|
||||
% }
|
||||
>>
|
||||
\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 }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
70
airs/flower_of_scotland/lyrics.ly
Normal file
70
airs/flower_of_scotland/lyrics.ly
Normal file
|
@ -0,0 +1,70 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
\include "notes.lyrics.ily"
|
||||
|
||||
\score {
|
||||
% \new StaffGroup <<
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new Voice = "format"
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\repeat unfold 2 {
|
||||
\line
|
||||
\line
|
||||
}
|
||||
\break
|
||||
}
|
||||
}%Format
|
||||
\new Voice = "tune"
|
||||
{
|
||||
\pipesA s8
|
||||
}
|
||||
% >>
|
||||
% }
|
||||
% \new Staff = "align" {
|
||||
\lyricsglobal
|
||||
\new NullVoice = "align" {
|
||||
% \new Voice = "align" {
|
||||
\lyricsA s8
|
||||
}
|
||||
% }
|
||||
\new Lyrics = "lyrics" {
|
||||
\lyricsto "align" {
|
||||
\verseA
|
||||
}
|
||||
}
|
||||
>>
|
||||
}
|
||||
% >>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentLyrics
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics } } #} )
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \composerPipes ":" } } #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \instrumentPipes } } #} )
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
\markup {
|
||||
\fill-line{
|
||||
\column {
|
||||
\verseBblock
|
||||
\combine \null \vspace #0.5
|
||||
\verseCblock
|
||||
}
|
||||
}
|
||||
}
|
||||
|
82
airs/flower_of_scotland/notes.lyrics.ily
Normal file
82
airs/flower_of_scotland/notes.lyrics.ily
Normal file
|
@ -0,0 +1,82 @@
|
|||
% 6/8 Flower of Scotland
|
||||
% Lyrics
|
||||
\version "2.18.2"
|
||||
composerLyrics = "Roy M.B. Williamson, the Corries"
|
||||
lyricsglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
lyricsA = {
|
||||
f8 |
|
||||
f8 f8 e8 d4. |
|
||||
a4.~ a4 a8 |
|
||||
d4 f8 e4.~ |
|
||||
e4 d8 d4 e8 |
|
||||
|
||||
f4.~ f4 f8 |
|
||||
g8( [ f8) g8 ] A4. |
|
||||
d4 a8 e4 e8 |
|
||||
e8( [ d8) e8 ] f4 g8 |
|
||||
f4 e8 d4. |
|
||||
|
||||
a4.~ a4 f8 |
|
||||
g8( [ f8) g8 ] A4. |
|
||||
d4.~ d4 f8 |
|
||||
g8( [ f8) e8 ] f4( e8) |
|
||||
|
||||
d4.~ d4 d8 |
|
||||
c4 e8 d4.~ |
|
||||
d4.~ d4
|
||||
}
|
||||
|
||||
verseA = \lyricmode {
|
||||
\set stanza = #"1."
|
||||
O Flow- er of Scot- land,
|
||||
When will we see
|
||||
Your like a- gain,
|
||||
That fought and died for,
|
||||
Your wee bit Hill and Glen,
|
||||
And stood a- gainst him,
|
||||
Proud Ed- ward's Ar- my,
|
||||
And sent him home- ward,
|
||||
To think a- gain__
|
||||
}
|
||||
|
||||
verseAblock = \markup { \column{
|
||||
\line{ \bold "1."}
|
||||
\line{O Flower of Scotland,}
|
||||
\line{When will we see}
|
||||
\line{Your like again,}
|
||||
\line{That fought and died for,}
|
||||
\line{Your wee bit Hill and Glen,}
|
||||
\line{And stood against him,}
|
||||
\line{Proud Edward's Army,}
|
||||
\line{And sent him homeward,}
|
||||
\line{To think again.}
|
||||
}}
|
||||
|
||||
verseBblock = \markup {\column {
|
||||
\line{ \bold "2."}
|
||||
\line{The Hills are bare now,}
|
||||
\line{And Autumn leaves}
|
||||
\line{Lie thick and still,}
|
||||
\line{O'er land that is lost now,}
|
||||
\line{Which those so dearly held,}
|
||||
\line{That stood against him,}
|
||||
\line{Proud Edward's Army,}
|
||||
\line{And sent him homeward,}
|
||||
\line{To think again.}
|
||||
}}
|
||||
|
||||
verseCblock = \markup {\column {
|
||||
\line{ \bold "3."}
|
||||
\line{Those days are past now,}
|
||||
\line{And in the past}
|
||||
\line{They must remain,}
|
||||
\line{But we can still rise now,}
|
||||
\line{And be the nation again,}
|
||||
\line{That stood against him,}
|
||||
\line{Proud Edward's Army,}
|
||||
\line{And sent him homeward,}
|
||||
\line{To think again.}
|
||||
}}
|
30
airs/flower_of_scotland/notes.pipes.ily
Normal file
30
airs/flower_of_scotland/notes.pipes.ily
Normal file
|
@ -0,0 +1,30 @@
|
|||
% 6/8 Flower of Scotland
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
f8 |
|
||||
\echog f4 e8 \thrwd d4. |
|
||||
\gre a4.~ a4 \echoa a8 |
|
||||
\thrwd d4 f8 \dble e4. |
|
||||
\echoa e4 d8 \echog d4 e8 |
|
||||
|
||||
\dblf f4.~ f4 \slure f8 |
|
||||
g8 [ \grA f8 g8 ] \dblA A4. |
|
||||
\thrwd d4 \gre a8 \dble e4 \gra e8 |
|
||||
\grg e8 [ d8 e8 ] \grg f4 g8 |
|
||||
\dblf f4 e8 \thrwd d4. |
|
||||
|
||||
\gre a4.~ a4 f8 |
|
||||
g8 [ \grA f8 g8 ] \dblA A4. |
|
||||
\thrwd d4.~ d4 f8 |
|
||||
\dblg g8 [ f8 e8 ] \dblf f4 e8 |
|
||||
|
||||
\thrwd d4.~ d4 \echoc d8 |
|
||||
\grg c4 e8 \thrwd d4.~ |
|
||||
d4. \dbld d4
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
% Side
|
||||
\version "2.18.2"
|
||||
composerSide = ""
|
||||
sideglobal = {}
|
||||
snareA = \drummode {
|
||||
g8 |
|
||||
\flam d8 d:32( g) \flam d8 g16. d32 g16. g32 |
|
||||
|
@ -23,4 +24,4 @@ snareA = \drummode {
|
|||
d4.:32( d4.) |
|
||||
\flam d8 d:32( g) \flam d8 g16. d32 g16. g32 |
|
||||
\flam d8 g16. d32 g16. g32 \flam d4
|
||||
}
|
||||
}
|
||||
|
|
43
airs/flower_of_scotland/pipes.ly
Normal file
43
airs/flower_of_scotland/pipes.ly
Normal file
|
@ -0,0 +1,43 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\repeat unfold 2 { \line \line \break }
|
||||
}
|
||||
}%Format
|
||||
{
|
||||
\pipesA s8
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 8
|
||||
\pipesA
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue