mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 08:13:31 +01:00
[tenor,bass] Raw scores for Piper of Drummond
This commit is contained in:
parent
8066ef7a60
commit
557c650040
7 changed files with 213 additions and 13 deletions
|
@ -5,12 +5,12 @@ global = {
|
||||||
\time 2/2
|
\time 2/2
|
||||||
}
|
}
|
||||||
confTempo = {
|
confTempo = {
|
||||||
\tempo 2 = 70
|
\tempo 2 = 75
|
||||||
}
|
}
|
||||||
%% Format
|
%% Format
|
||||||
part = { \partial 16 \grace{s4.} s16 }
|
part = { \partial 16 \grace{s4.} s16 }
|
||||||
measure = { \grace {s1} s1 | }
|
measure = { \grace {s1} s1 | }
|
||||||
halfline = { \repeat unfold 2 \measure }
|
halfline = { \repeat unfold 4 \measure }
|
||||||
line = { \repeat unfold 2 { \halfline } }
|
line = { \repeat unfold 2 { \halfline } }
|
||||||
|
|
||||||
%% Headers
|
%% Headers
|
||||||
|
|
77
reels/piper_of_drummond/drums.ly
Normal file
77
reels/piper_of_drummond/drums.ly
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
\version "2.19.0"
|
||||||
|
|
||||||
|
\include "lilydrum.ly"
|
||||||
|
|
||||||
|
\include "./config.ily"
|
||||||
|
\include "./notes.bass.ily"
|
||||||
|
\include "./notes.tenor.ily"
|
||||||
|
\include "./notes.side.ily"
|
||||||
|
|
||||||
|
|
||||||
|
\layout {
|
||||||
|
indent = 5.0
|
||||||
|
short-indent = 2.0
|
||||||
|
}
|
||||||
|
|
||||||
|
pBreak = {\break}
|
||||||
|
\score {
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new PipeBandDrumStaff = "side" \with {
|
||||||
|
instrumentName = \markup{ \instrumentSide }
|
||||||
|
shortInstrumentName = \markup{ \shortInstrumentSide }
|
||||||
|
} {
|
||||||
|
\global
|
||||||
|
<<
|
||||||
|
\new NullVoice = "format" {
|
||||||
|
\halfline
|
||||||
|
\pBreak
|
||||||
|
\halfline
|
||||||
|
\break
|
||||||
|
\section
|
||||||
|
\halfline
|
||||||
|
\pBreak
|
||||||
|
\halfline
|
||||||
|
\fine
|
||||||
|
}%End of Format
|
||||||
|
\new DrumVoice = "side" {
|
||||||
|
\sideglobal
|
||||||
|
\snareA
|
||||||
|
\snareB
|
||||||
|
}%End of side
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
\new PipeBandDrumStaff = "tenor" \with {
|
||||||
|
instrumentName = \markup{ \instrumentTenor }
|
||||||
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||||
|
} {
|
||||||
|
\tenorglobal
|
||||||
|
\tenorAA \tenorAB
|
||||||
|
\tenorBA \tenorBB
|
||||||
|
}
|
||||||
|
\new PipeBandDrumStaff = "bass" \with {
|
||||||
|
instrumentName = \markup{ \instrumentBass }
|
||||||
|
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||||
|
} {
|
||||||
|
\bassglobal
|
||||||
|
\bassAA \bassAB
|
||||||
|
\bassBA \bassBB
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\header {
|
||||||
|
title = \title
|
||||||
|
subtitle = \subtitle
|
||||||
|
meter = \meter
|
||||||
|
composer = \markup {
|
||||||
|
\column \right-align {
|
||||||
|
$(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=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||||
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||||
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -16,6 +16,7 @@
|
||||||
short-indent = 2.0
|
short-indent = 2.0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pBreak = {\break}
|
||||||
\score {
|
\score {
|
||||||
\new StaffGroup <<
|
\new StaffGroup <<
|
||||||
\new Staff \with {
|
\new Staff \with {
|
||||||
|
@ -30,17 +31,15 @@
|
||||||
% \part \line
|
% \part \line
|
||||||
%}
|
%}
|
||||||
\part
|
\part
|
||||||
\line
|
\halfline
|
||||||
\break
|
\pBreak
|
||||||
\line
|
\halfline
|
||||||
\bar "||"
|
|
||||||
\section
|
\section
|
||||||
\break
|
\break
|
||||||
\part
|
\part
|
||||||
\line
|
\halfline
|
||||||
\break
|
\pBreak
|
||||||
\line
|
\halfline
|
||||||
\bar "|."
|
|
||||||
\fine
|
\fine
|
||||||
}%Format
|
}%Format
|
||||||
\new Voice = "pipes" {
|
\new Voice = "pipes" {
|
||||||
|
|
65
reels/piper_of_drummond/mid.ly
Normal file
65
reels/piper_of_drummond/mid.ly
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
\version "2.19.0"
|
||||||
|
|
||||||
|
\include "lilydrum.ly"
|
||||||
|
|
||||||
|
\include "./config.ily"
|
||||||
|
\include "./notes.bass.ily"
|
||||||
|
\include "./notes.tenor.ily"
|
||||||
|
|
||||||
|
\layout {
|
||||||
|
indent = 5.0
|
||||||
|
short-indent = 2.0
|
||||||
|
}
|
||||||
|
|
||||||
|
pBreak = {\break}
|
||||||
|
\score {
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new PipeBandDrumStaff = "tenor" \with {
|
||||||
|
instrumentName = \markup{ \instrumentTenor }
|
||||||
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||||
|
} {
|
||||||
|
\global
|
||||||
|
<<
|
||||||
|
\new NullVoice = "format" {
|
||||||
|
\halfline
|
||||||
|
\pBreak
|
||||||
|
\halfline
|
||||||
|
\break
|
||||||
|
\section
|
||||||
|
\halfline
|
||||||
|
\pBreak
|
||||||
|
\halfline
|
||||||
|
\fine
|
||||||
|
}%End of Format
|
||||||
|
\new DrumVoice = "tenor" {
|
||||||
|
\tenorglobal
|
||||||
|
\tenorAA \tenorAB
|
||||||
|
\tenorBA \tenorBB
|
||||||
|
}%End of Tenor
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
\new PipeBandDrumStaff = "bass" \with {
|
||||||
|
instrumentName = \markup{ \instrumentBass }
|
||||||
|
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||||
|
} {
|
||||||
|
\bassglobal
|
||||||
|
\bassAA \bassAB
|
||||||
|
\bassBA \bassBB
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\header {
|
||||||
|
title = \title
|
||||||
|
subtitle = \subtitle
|
||||||
|
meter = \meter
|
||||||
|
composer = \markup {
|
||||||
|
\column \right-align {
|
||||||
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||||
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||||
|
}
|
||||||
|
\column \right-align {
|
||||||
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||||
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
28
reels/piper_of_drummond/notes.bass.ily
Normal file
28
reels/piper_of_drummond/notes.bass.ily
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
% 2/2 Piper of Drummond
|
||||||
|
% Bass
|
||||||
|
\version "2.18.2"
|
||||||
|
composerBass = "v0.1"
|
||||||
|
arrangerBass = ""
|
||||||
|
bassglobal = {}
|
||||||
|
% Music
|
||||||
|
bassAA = \drummode {
|
||||||
|
bd2 4 4 |
|
||||||
|
2 2 |
|
||||||
|
2 2 |
|
||||||
|
4 4 2 |
|
||||||
|
}
|
||||||
|
bassAB = \drummode {
|
||||||
|
\bassAA
|
||||||
|
}
|
||||||
|
bassBA = \drummode {
|
||||||
|
bd2 2 |
|
||||||
|
2 2 |
|
||||||
|
2 2 |
|
||||||
|
4 4 2 |
|
||||||
|
}
|
||||||
|
bassBB = \drummode {
|
||||||
|
bd2 2 |
|
||||||
|
2 r2 |
|
||||||
|
bd2 r2 |
|
||||||
|
bd2 2 |
|
||||||
|
}
|
31
reels/piper_of_drummond/notes.tenor.ily
Normal file
31
reels/piper_of_drummond/notes.tenor.ily
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
% 2/2 Piper of Drummond
|
||||||
|
% Tenor
|
||||||
|
\version "2.18.2"
|
||||||
|
composerTenor = "v0.1"
|
||||||
|
arrangerTenor = ""
|
||||||
|
tenorglobal = {}
|
||||||
|
% Music
|
||||||
|
tenorAA = \drummode {
|
||||||
|
d4 g8. 16 d2 |
|
||||||
|
d4.. d16 g8. d16 g4 |
|
||||||
|
d4 g8. 16 d2 |
|
||||||
|
d8. g16 d4 r4 \triplet { g8 d8 g8 } |
|
||||||
|
}
|
||||||
|
tenorAB = \drummode {
|
||||||
|
d4 g8. 16 d2 |
|
||||||
|
d4.. d16 g8. d16 g4 |
|
||||||
|
d4 g8. 16 d2 |
|
||||||
|
d4.. g16 d2 |
|
||||||
|
}
|
||||||
|
tenorBA = \drummode {
|
||||||
|
d2 r4 \triplet { d8 g d } |
|
||||||
|
g4.. d16 g2 |
|
||||||
|
d4 g d g |
|
||||||
|
d4.. g16-> d2 |
|
||||||
|
}
|
||||||
|
tenorBB = \drummode {
|
||||||
|
d4 g8.\< g16 d8. d16 g4 |
|
||||||
|
d2\! \triplet { d8 g d } g4 |
|
||||||
|
d2 g2 |
|
||||||
|
d8. g16 d4 g2 |
|
||||||
|
}
|
|
@ -12,13 +12,13 @@
|
||||||
<<
|
<<
|
||||||
\new NullVoice = "format" {
|
\new NullVoice = "format" {
|
||||||
\repeat volta 2 {
|
\repeat volta 2 {
|
||||||
\part \line
|
\part \halfline
|
||||||
}
|
}
|
||||||
\break
|
\break
|
||||||
\part
|
\part
|
||||||
\line
|
\halfline
|
||||||
\break
|
\break
|
||||||
\line
|
\halfline
|
||||||
\fine
|
\fine
|
||||||
}%Format
|
}%Format
|
||||||
\new Voice = "pipes" {
|
\new Voice = "pipes" {
|
||||||
|
|
Loading…
Reference in a new issue