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
|
@ -4,16 +4,15 @@ global = {
|
|||
\time 6/8
|
||||
}
|
||||
|
||||
confTempo = {
|
||||
\tempo 2. = 40
|
||||
}
|
||||
part = {\partial 8 s8 }
|
||||
%% Format
|
||||
formatA = { \repeat volta 2 { \part \repeat unfold 8 { s4. s4. } } \break }
|
||||
formatB = { \repeat volta 2 { \part \repeat unfold 8 { s4. s4. } } \break }
|
||||
measure = {\grace{s1} s2. | }
|
||||
halfline = { \repeat unfold 4 {\measure}}
|
||||
line = {\repeat unfold 2 {\halfline}}
|
||||
|
||||
%% Headers
|
||||
title = "The Mist Covered Mountains"
|
||||
meter = "Slow Air"
|
||||
|
||||
composerSide = ""
|
||||
composerTenor = ""
|
||||
composerBass = ""
|
||||
composerPipes = ""
|
|
@ -13,24 +13,36 @@
|
|||
|
||||
\global
|
||||
<<
|
||||
{\formatA \formatB }
|
||||
{\snareA \snareB }
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\part \line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part \line
|
||||
}
|
||||
}
|
||||
{
|
||||
\snareA s8
|
||||
\snareB s8
|
||||
}
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" {
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
|
||||
%\bassA
|
||||
%\bassB
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
\tenorA
|
||||
\tenorB
|
||||
s8 \tenorA
|
||||
s8 \tenorB
|
||||
}
|
||||
% \new PipeBandDrumStaff = "bass" {
|
||||
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
%
|
||||
% \bassA
|
||||
% \bassB
|
||||
% }
|
||||
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
|
@ -48,4 +60,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
103
airs/the_mist_covered_mountains/full.ly
Normal file
103
airs/the_mist_covered_mountains/full.ly
Normal file
|
@ -0,0 +1,103 @@
|
|||
\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 \line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part \line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes"
|
||||
{
|
||||
s8 \pipesA
|
||||
|
||||
s8 \pipesB
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
% \new Staff = "song" {
|
||||
% \lyricsglobal
|
||||
% \new Voice = "lyrics"
|
||||
% {}
|
||||
% }
|
||||
% \new Lyrics = "verse1" {
|
||||
% \lyricsglobal
|
||||
% \lyricsto "lyrics" {
|
||||
% \verseA
|
||||
% }
|
||||
% }
|
||||
% \new Staff = "seconds" {
|
||||
% \pipessecndglobal
|
||||
% \set Staff.instrumentName = \markup{ \instrumentPipes \instrumentSecnd }
|
||||
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentTrd}
|
||||
%
|
||||
%
|
||||
% }
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
\snareA s8
|
||||
|
||||
\snareB s8
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\tenorglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
s8 \tenorA
|
||||
|
||||
s8 \tenorB
|
||||
}
|
||||
% \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 }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,97 +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,F,L,500,300,500,500,L,1,0)
|
||||
|
||||
TuneTempo,40
|
||||
|
||||
" set 9 ",(T,L,0,0,Times New Roman,17,700,0,0,18,0,0,0)
|
||||
|
||||
" Slow Air",(Y,C,0,0,Times New Roman,14,400,0,0,18,0,0,0)
|
||||
|
||||
" Traditional",(M,R,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)
|
||||
"10",(F,C,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
" January 14th 2012",(F,L,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
|
||||
"The Mist Covered Mountains ",(I,L,0,0,Times New Roman,11,700,0,0,18,0,0,0)
|
||||
& sharpf sharpc 6_8
|
||||
I!'' gg B_4 'b tar B_4 'b space
|
||||
! gg F_4 grp F_8 dbf Fr_8 'f El_16 Cl_8
|
||||
! gg LA_4 'la brl LA_4 'la space
|
||||
! dbe Cr_8 'c gg Bl_16 dg Cl_8 dbb Br_8 'b strlg LAl_16 Bl_8 !t
|
||||
|
||||
& sharpf sharpc
|
||||
thrd D_4 'd dbe E_4 'e space
|
||||
! gg Fr_8 'f HGl_16 HAl_8 hdbc Cr_8 'c gg Bl_16 dg LAl_8
|
||||
! gg Br_8 'b dg Cl_16 Fl_8 dbe Er_8 'e Dl_16 Cl_8
|
||||
! gg B_4 'b tar B_4 'b space ''!I
|
||||
|
||||
& sharpf sharpc
|
||||
I!'' gg F_4 'f grp F_4 'f space
|
||||
! dbe Er_8 'e Fl_16 HAl_8 hdbf Fr_8 'f El_16 Cl_8
|
||||
! gg LA_4 tar LA_8 dbe E_4 C_8
|
||||
! gg F_4 grp F_8 dbe Er_8 'e Dl_16 Cl_8 !t
|
||||
|
||||
& sharpf sharpc
|
||||
gg B_4 'b thrd D_4 'd space
|
||||
! dbe Er_8 'e Fl_16 HAl_8 hdbc Cr_8 'c gg Bl_16 dg LAl_8
|
||||
! gg Br_8 'b dg Cl_16 Fl_8 dbe Er_8 'e Dl_16 Cl_8
|
||||
! gg B_4 'b '1 tar B_4 'b _' '2 tar B_4 _' ''!I
|
||||
|
||||
|
||||
|
||||
"My Home",(I,L,0,0,Times New Roman,11,700,0,0,18,0,0,0)
|
||||
|
||||
|
||||
|
||||
|
||||
& sharpf sharpc I!'' gg Er_16 'e Dl_32
|
||||
! dbc Cr_8 'c eg Bl_16 dg Cl_8 gg LAr_8 'la dg Cl_16 El_8
|
||||
! dbha HAr_8 'ha HGl_16 tg Fl_8 dbe E_4 thrd D_8
|
||||
! dbc Cr_8 'c eg Bl_16 dg Cl_8 gg LA_4 gg Br_16 'b Cl_32
|
||||
! thrd Dr_8 'd gg Cl_16 Dl_8 dbb B_4 dbe Er_16 'e Dl_32 !t
|
||||
|
||||
|
||||
& sharpf sharpc
|
||||
dbc Cr_8 'c eg Bl_16 dg LAl_8 gg LAr_8 'la dg Cl_16 El_8
|
||||
! dbha HAr_8 'ha HGl_16 tg Fl_8 dbe E_4 thrd D_8
|
||||
! dbc Cr_8 'c eg LAl_16 dg Cl_8 dbb Br_8 'b eg LGl_16 dg Bl_8
|
||||
! gg LA_4 'la brl LA_4 space ''!I
|
||||
|
||||
|
||||
|
||||
|
||||
& sharpf sharpc I!'' dbe E_8
|
||||
! gg LAr_8 'la Bl_16 grp Cl_8 dbc Cr_8 'c eg Bl_16 dg Cl_8
|
||||
! ag E_4 tar C_8 dbc C_4 E_8
|
||||
! thrd Dr_8 'd gg Cl_16 Dl_8 dbb B_4 gg Cr_16 'c Dl_32
|
||||
! dbe Er_8 'e Cl_16 gg LAl_8 brl LAr_8 'la dg Cl_16 El_8 !t
|
||||
|
||||
|
||||
& sharpf sharpc
|
||||
dbf Fr_8 'f gg Dl_16 Fl_8 dbha HAr_8 'ha HGl_16 Fl_8
|
||||
! dbe Er_8 'e Dl_16 Cl_8 dbha HA_4 thrd D_8
|
||||
! dbc Cr_8 'c eg LAl_16 dg Cl_8 dbb Br_8 'b eg LGl_16 dg Bl_8
|
||||
! gg LA_4 'la '1 brl LA_4 _' '2 brl LA_4 'la _' ''!I
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
30
airs/the_mist_covered_mountains/notes.pipes.ily
Normal file
30
airs/the_mist_covered_mountains/notes.pipes.ily
Normal file
|
@ -0,0 +1,30 @@
|
|||
% 6/8 Mist Covered Mountains
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\grg b4. \taor b4. |
|
||||
\grg f4 \grip f8 \dblf f8. [ e16 c8 ] |
|
||||
\grg a4. \wbirl a4. |
|
||||
\dble c8. [ \grg b16 \grd c8 ] \dblb b8. [ \grG a16 b8 ] |
|
||||
|
||||
\thrwd d4. \dble e4. |
|
||||
\grg f8. [ g16 A8 ] \hdblc c8. [ \grg b16 \grd a8 ] |
|
||||
\grg b8. [ \grd c16 f8 ] \dble e8. [ d16 c8 ] |
|
||||
\grg b4. \taor b4.
|
||||
}
|
||||
pipesB = {
|
||||
\grg f4. \grip f4. |
|
||||
\dble e8. [ f16 A8 ] \hdblf f8. [ e16 c8 ] |
|
||||
\grg a4 \taor a8 \dble e4 c8 |
|
||||
\grg f4 \grip f8 \dble e8. [ d16 c8 ] |
|
||||
|
||||
\grg b4. \thrwd d4. |
|
||||
\dble e8. [ f16 A8 ] \hdblc c8. [ \grg b16 \grd a8 ] |
|
||||
\grg b8. [ \grd c16 f8 ] \dble e8. [ d16 c8 ] |
|
||||
\grg b4. \taor b4.
|
||||
}
|
|
@ -1,17 +1,18 @@
|
|||
\version "2.18.2"
|
||||
sideglobal = {}
|
||||
snareA = \drummode {
|
||||
\partial 8 d8:32( |
|
||||
g8.) d16 g8 d8[ r8 d8:32(] |
|
||||
g8.) d16 g8 d8[ r8 d8:32(] |
|
||||
g8.) d16 g8 d8. g16 d8 |
|
||||
d4.:32( d8)[ r8 d8:32(] |
|
||||
d8:32( |
|
||||
g8.) d16 g8 d8 r8 d8:32( |
|
||||
g8.) d16 g8 d8 r8 d8:32( |
|
||||
g8.) d16 g8 d8. g16 d8 |
|
||||
d4.:32( d4.) |
|
||||
d4.:32( d8) r8 d8:32( |
|
||||
g8.) d16 g8 d8 r8 d8:32( |
|
||||
g8.) d16 g8 d8 r8 d8:32( |
|
||||
g8.) d16 g8 d8. g16 d8 |
|
||||
d4.:32( d4)
|
||||
}
|
||||
snareB = \drummode {
|
||||
\partial 8 d8 |
|
||||
d8 |
|
||||
d2.:32( |
|
||||
d8.)-> g16 d8 g8. d16 g8 |
|
||||
d2.:32( |
|
||||
|
@ -19,5 +20,5 @@ snareB = \drummode {
|
|||
d2.:32( |
|
||||
d8.)-> g16 d8 g8. d16 g8 |
|
||||
r8 g8 d8 r8 d8 g8 |
|
||||
d4.:32( d4.) |
|
||||
}
|
||||
d4.:32( d4)
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
% 6/8 The Mist Covered Mountains
|
||||
% Tenor
|
||||
\version "2.18.2"
|
||||
tenorglobal = {}
|
||||
tenorA = \drummode {
|
||||
\partial 8 s8
|
||||
d4. g |
|
||||
d4. g8 r8 g8 |
|
||||
d4. g8. d16 g8 |
|
||||
|
@ -13,7 +13,6 @@ tenorA = \drummode {
|
|||
d8 g8 d8 g8 r4
|
||||
}
|
||||
tenorB = \drummode {
|
||||
\partial 8 s8
|
||||
d4. g |
|
||||
d4. g8 r8 g8 |
|
||||
d4. g |
|
||||
|
@ -22,4 +21,4 @@ tenorB = \drummode {
|
|||
d4. g8 r8 g8 |
|
||||
r8. g16 d8 r8. d16 g8 |
|
||||
d8 g8 d8 g8 r4
|
||||
}
|
||||
}
|
||||
|
|
50
airs/the_mist_covered_mountains/pipes.ly
Normal file
50
airs/the_mist_covered_mountains/pipes.ly
Normal file
|
@ -0,0 +1,50 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
{
|
||||
\pipesA
|
||||
\pipesB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\pipesA
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
\pipesB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
|
@ -7,8 +7,19 @@
|
|||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{\formatA \formatB}
|
||||
{\snareA \snareB}
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\part \line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part \line
|
||||
}
|
||||
}
|
||||
{
|
||||
\snareA s8
|
||||
\snareB s8
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
|
@ -17,4 +28,4 @@
|
|||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,8 +7,20 @@
|
|||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{\formatA \formatB}
|
||||
{\tenorA \tenorB}
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
\tenorA
|
||||
\tenorB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
|
@ -17,4 +29,4 @@
|
|||
instrument = \instrumentTenor
|
||||
composer = \composerTenor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue