mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
New Tunes
----------------------------------------------------- Mairi's Wedding Lochanside My Land PM JK Cairns Cabar Feidh (Reel, Hornpipe, Jig, Strathspey) La Baum Rowan Tree Wings Molly Connell
This commit is contained in:
parent
9f6b002762
commit
560b5621b7
82 changed files with 2747 additions and 236 deletions
|
@ -2,21 +2,16 @@
|
|||
%% Globals
|
||||
global = {
|
||||
\time 4/4
|
||||
\eighthBeaming
|
||||
}
|
||||
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 4 s4 }
|
||||
measure = { \grace { s4 } s1 | }
|
||||
halfline = { \repeat unfold 2 { \measure } }
|
||||
measure = { \grace {s1} s1 | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Rowan Tree"
|
||||
meter = "March"
|
||||
|
||||
|
||||
composerSide = ""
|
||||
composerTenor = ""
|
||||
composerBass = ""
|
||||
composerPipes = ""
|
||||
|
|
93
4-4_marches/rowan_tree/full.ly
Normal file
93
4-4_marches/rowan_tree/full.ly
Normal file
|
@ -0,0 +1,93 @@
|
|||
\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 NullVoice = "format" {
|
||||
\part \line \bar "|."
|
||||
\part \line \bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesAA \pipesAB s4
|
||||
\pipesBA \pipesAB s4
|
||||
|
||||
}%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 \snareA s4
|
||||
\snareBA \snareA s4
|
||||
}
|
||||
% \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 }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
32
4-4_marches/rowan_tree/notes.pipes.ily
Normal file
32
4-4_marches/rowan_tree/notes.pipes.ily
Normal file
|
@ -0,0 +1,32 @@
|
|||
% 4/4 The Rowan Tree
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesAA = {
|
||||
\grg a8. [ b16 ] |
|
||||
\grip c4~ c8 [ \grG c8 ] \grg c4 b4 |
|
||||
\grg c8 [ e8~ ] e4 \gra e4 A4 |
|
||||
\hdblf f4~ f8 [ e8 ] \grg f4 A4 |
|
||||
\hdblf f4~ f8 [ e8 ] \gra e4
|
||||
}
|
||||
|
||||
pipesAB = {
|
||||
\grg a8. [ b16 ] |
|
||||
\grip c4~ c8 [ \grG c8 ] \grg c4 b4 |
|
||||
\grg c8 [ e8~ ] e4 \dblf f4~ f8 [ e8 ] |
|
||||
\dble e8 [ c8~ ] c4 \dblb b4~ b8 [ \grG a8 ] |
|
||||
\grg a2 \wbirl a4
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
e4 |
|
||||
\gra e4 A4 \grg A4~ A8 [ g8 ] |
|
||||
\slurf g4 f4 \dblf f4 A4 |
|
||||
\hdble e4~ e8 [ f8 ] \grg f8 [ e8 ] \grg d8 [ c8 ] |
|
||||
\dblc c2 \gre b4
|
||||
}
|
|
@ -2,22 +2,23 @@
|
|||
% Snare
|
||||
\version "2.18.2"
|
||||
composerSide = ""
|
||||
sideglobal = {}
|
||||
|
||||
%%music
|
||||
snareEnding = \drummode {
|
||||
\flamd d8[ d8]:32( g8[) d8]:32( \tuplet 3/2 { g16) d g } \flamd d16. g32 d16. g32-> d g d \flamd d |
|
||||
d4 d4:32( d4)
|
||||
\flam d8[ d8]:32( g8[) d8]:32( \tuplet 3/2 { g16) d g } \flam d16. g32 d16. g32-> d g d g |
|
||||
\flam d4 d4:32( d4)
|
||||
}
|
||||
snareA = \drummode {
|
||||
r8 d8 |
|
||||
d4:32( d8) g8 d4:32( d8) g8 |
|
||||
\flamd d8 g16. d32-> g16. g32 \flamd d16. g32 \flamd d16. d32:128( d16.) g32-> d32 g d \flamd d g8 |
|
||||
\flam d16 g8 d16-> g16. g32 \flam d16. g32 \flam d16. d32:128( d16.) g32-> d32 g d g \flam d8 |
|
||||
\snareEnding
|
||||
}
|
||||
% Part 2
|
||||
snareBA = \drummode {
|
||||
d8. g16 |
|
||||
d8[:32(-> g8]:32)(-> g8[:32)( d8]:32)(-> g8[:32)( d8]:32)(-> g8[)-> d8]:32( |
|
||||
g8.) g16 d8:32( g8) \flamd d8 d8:32( g8.) g16 |
|
||||
g8.) g16 d8:32( g8) \flam d8 d8:32( g8.) g16 |
|
||||
\snareEnding
|
||||
}
|
||||
}
|
||||
|
|
48
4-4_marches/rowan_tree/pipes.ly
Normal file
48
4-4_marches/rowan_tree/pipes.ly
Normal file
|
@ -0,0 +1,48 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\part \line \bar "|."
|
||||
\break
|
||||
\part \line \bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesAA
|
||||
\pipesAB s4
|
||||
|
||||
\pipesBA
|
||||
\pipesAB s4
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 4
|
||||
\pipesAA \pipesAB
|
||||
\pipesBA \pipesAB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
|
@ -6,15 +6,20 @@
|
|||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 { \part \line \break }
|
||||
\part \line \bar "||"
|
||||
}
|
||||
{
|
||||
\snareA s4
|
||||
\sideglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part \halfline
|
||||
}
|
||||
\break
|
||||
\part \halfline \bar "||"
|
||||
}%Format
|
||||
|
||||
\new DrumVoice = "side" {
|
||||
\snareA s4
|
||||
|
||||
\snareBA
|
||||
\snareBA
|
||||
}
|
||||
>>
|
||||
}
|
||||
|
@ -24,4 +29,4 @@
|
|||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue