2008-04-16 09:32:57 +02:00
|
|
|
|
%{
|
|
|
|
|
Bagpipe music settings for Lilypond.
|
|
|
|
|
This file builds on work by Andrew McNabb (http://www.mcnabbs.org/andrew/)
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
|
|
|
|
Substantial changes and additions made by
|
2008-04-16 09:32:57 +02:00
|
|
|
|
Sven Axelsson, the Murray Pipes & Drums of Gothenburg
|
|
|
|
|
(http://www.murrays.nu)
|
|
|
|
|
%}
|
|
|
|
|
|
2012-09-16 21:04:09 +02:00
|
|
|
|
\version "2.16.0"
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Notes of the scale of the Great Highland Bagpipe. Extra high notes for bombarde.
|
|
|
|
|
% Flat notes used mainly in some modern music.
|
|
|
|
|
|
|
|
|
|
pitchnamesBagpipe = #`(
|
|
|
|
|
(G . ,(ly:make-pitch 0 4 NATURAL))
|
|
|
|
|
(a . ,(ly:make-pitch 0 5 NATURAL))
|
|
|
|
|
(b . ,(ly:make-pitch 0 6 NATURAL))
|
|
|
|
|
(bflat . ,(ly:make-pitch 0 6 FLAT))
|
|
|
|
|
(c . ,(ly:make-pitch 1 0 SHARP))
|
|
|
|
|
(cflat . ,(ly:make-pitch 1 0 FLAT))
|
|
|
|
|
(d . ,(ly:make-pitch 1 1 NATURAL))
|
|
|
|
|
(e . ,(ly:make-pitch 1 2 NATURAL))
|
|
|
|
|
(f . ,(ly:make-pitch 1 3 SHARP))
|
|
|
|
|
(fflat . ,(ly:make-pitch 1 3 FLAT))
|
|
|
|
|
(g . ,(ly:make-pitch 1 4 NATURAL))
|
|
|
|
|
(gflat . ,(ly:make-pitch 1 4 FLAT))
|
|
|
|
|
(A . ,(ly:make-pitch 1 5 NATURAL))
|
|
|
|
|
(B . ,(ly:make-pitch 1 6 NATURAL))
|
|
|
|
|
(C . ,(ly:make-pitch 2 0 SHARP))
|
|
|
|
|
)
|
|
|
|
|
pitchnames = \pitchnamesBagpipe
|
|
|
|
|
#(ly:parser-set-note-names parser pitchnames)
|
|
|
|
|
|
|
|
|
|
% Bagpipe music is written in something like D major. If we use
|
|
|
|
|
% flattened notes, the flat should be shown on all instances.
|
|
|
|
|
bagpipeKey = {
|
|
|
|
|
\key d \major
|
2012-09-16 21:04:09 +02:00
|
|
|
|
\accidentalStyle "forget"
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
% Show the key signature e.g. for BMW compatibility.
|
|
|
|
|
showKeySignature = {
|
|
|
|
|
\override Staff.KeySignature #'stencil = #'ly:key-signature-interface::print
|
2010-04-13 19:20:53 +02:00
|
|
|
|
\override StaffGroup.KeySignature #'stencil = #'ly:key-signature-interface::print
|
|
|
|
|
\override Score.KeySignature #'stencil = #'ly:key-signature-interface::print
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-28 17:53:50 +01:00
|
|
|
|
% Show the true key signature (E-flat major). Use together with
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% \transpose f a to print scores for other instruments.
|
|
|
|
|
showTrueKeySignature = {
|
|
|
|
|
\override Staff.KeySignature #'stencil = #'ly:key-signature-interface::print
|
2010-04-13 19:20:53 +02:00
|
|
|
|
\override StaffGroup.KeySignature #'stencil = #'ly:key-signature-interface::print
|
|
|
|
|
\override Score.KeySignature #'stencil = #'ly:key-signature-interface::print
|
2011-07-13 15:08:38 +02:00
|
|
|
|
\override Score.Stem #'direction = #'center
|
|
|
|
|
\override Score.Slur #'direction = #'center
|
|
|
|
|
\override Score.Tie #'direction = #'center
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-30 01:44:59 +01:00
|
|
|
|
% gracenotesOff = #(set! showGracenotes ##f)
|
|
|
|
|
% gracenotesOn = #(set! showGracenotes ##t)
|
|
|
|
|
% \gracenotesOn
|
2010-04-13 19:20:53 +02:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% Various tweaks to get good defaults for bagpipe music.
|
2010-01-24 19:00:34 +01:00
|
|
|
|
\paper {
|
|
|
|
|
top-margin = 4\mm
|
|
|
|
|
bottom-margin = 4\mm
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\layout {
|
|
|
|
|
indent = 0.0
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\context {
|
|
|
|
|
\Score
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\remove "Bar_number_engraver"
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\override Stem #'direction = #down
|
|
|
|
|
\override Slur #'direction = #up
|
|
|
|
|
\override Tie #'direction = #up
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\override KeySignature #'print-function = ##f
|
2011-11-01 00:30:42 +01:00
|
|
|
|
\override VoltaBracketSpanner #'Y-extent = #'(-1.5 . 0)
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\override VoltaBracket #'height = #2.2
|
|
|
|
|
}
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\context {
|
|
|
|
|
\StaffGroup
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
extraNatural = ##f
|
|
|
|
|
\override KeySignature #'stencil = ##f
|
|
|
|
|
}
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\context {
|
|
|
|
|
\Staff
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
extraNatural = ##f
|
|
|
|
|
midiInstrument = #"bagpipe"
|
2009-01-28 17:53:50 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\override KeySignature #'stencil = ##f
|
|
|
|
|
}
|
2012-09-17 18:14:40 +02:00
|
|
|
|
|
|
|
|
|
\context {
|
|
|
|
|
\Voice
|
|
|
|
|
|
|
|
|
|
\override TupletBracket #'bracket-visibility = ##t
|
|
|
|
|
}
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
% Some common timing tweaks.
|
|
|
|
|
|
|
|
|
|
% Sets the autobeamer to span quarter notes only. Use for fast music.
|
|
|
|
|
quarterBeaming = {
|
2012-09-17 13:59:27 +02:00
|
|
|
|
\set Score.baseMoment = #(ly:make-moment 1 4)
|
|
|
|
|
\set Score.beatStructure = #'(1 1 1 1)
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
2012-09-17 13:59:27 +02:00
|
|
|
|
% Sets the autobeamer to span half notes. Mostly used in reels.
|
2008-04-16 09:32:57 +02:00
|
|
|
|
halfBeaming = {
|
2012-09-17 13:59:27 +02:00
|
|
|
|
\set Score.baseMoment = #(ly:make-moment 1 2)
|
|
|
|
|
\set Score.beatStructure = #'(1 1)
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
2011-01-01 15:33:40 +01:00
|
|
|
|
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% Reels are in allabreve time with half note beaming.
|
|
|
|
|
reelTime = {
|
|
|
|
|
\time 2/2
|
|
|
|
|
\halfBeaming
|
|
|
|
|
}
|
|
|
|
|
% 4/4 marches are written with numerical time signature and with quarter beaming.
|
|
|
|
|
marchTime = {
|
|
|
|
|
\time 4/4
|
|
|
|
|
\numericTimeSignature
|
|
|
|
|
\quarterBeaming
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-30 15:32:42 +01:00
|
|
|
|
% Add appropriate tweaks needed for piping grace notes to look great.
|
2011-01-03 10:19:37 +01:00
|
|
|
|
stemspace = #(define-music-function (parser location extent) (pair?) #{
|
2012-09-16 21:04:09 +02:00
|
|
|
|
\once \override Staff.Stem #'X-extent = #extent
|
2011-01-03 10:19:37 +01:00
|
|
|
|
#})
|
|
|
|
|
pgrace = #(define-music-function (parser location notes) (ly:music?) #{
|
|
|
|
|
\override Score.GraceSpacing #'spacing-increment = #0
|
2012-09-16 21:04:09 +02:00
|
|
|
|
\override Score.Stem #'beamlet-max-length-proportion = #'(0.5 . 0.5)
|
|
|
|
|
\small \grace $notes \normalsize
|
|
|
|
|
\revert Score.Stem #'beamlet-default-length
|
2011-01-03 10:19:37 +01:00
|
|
|
|
#})
|
2010-12-30 01:44:59 +01:00
|
|
|
|
|
|
|
|
|
% Single pgrace notes
|
2011-10-25 16:53:24 +02:00
|
|
|
|
grG = { \pgrace { G32 } }
|
|
|
|
|
gra = { \pgrace { a32 } }
|
|
|
|
|
grb = { \pgrace { b32 } }
|
|
|
|
|
grc = { \pgrace { c32 } }
|
|
|
|
|
grd = { \pgrace { d32 } }
|
|
|
|
|
gre = { \pgrace { e32 } }
|
|
|
|
|
grf = { \pgrace { f32 } }
|
|
|
|
|
grg = { \pgrace { g32 } }
|
|
|
|
|
grA = { \pgrace { A32 } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Doublings
|
2011-10-25 16:53:24 +02:00
|
|
|
|
dblG = { \pgrace { g32[ G d] } }
|
|
|
|
|
dbla = { \pgrace { g32[ a d] } }
|
|
|
|
|
dblb = { \pgrace { g32[ b d] } }
|
|
|
|
|
dblc = { \pgrace { g32[ c d] } }
|
|
|
|
|
dbld = { \pgrace { g32[ d e] } }
|
|
|
|
|
dble = { \pgrace { g32[ e f] } }
|
|
|
|
|
dblf = { \pgrace { g32[ f g] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% These are the same as the half doublings.
|
2011-10-25 16:53:24 +02:00
|
|
|
|
dblg = { \pgrace { g32[ f] } }
|
|
|
|
|
dblA = { \pgrace { A32[ g] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Half doublings
|
2011-10-25 16:53:24 +02:00
|
|
|
|
hdblG = { \pgrace { G32[ d] } }
|
|
|
|
|
hdbla = { \pgrace { a32[ d] } }
|
|
|
|
|
hdblb = { \pgrace { b32[ d] } }
|
|
|
|
|
hdblc = { \pgrace { c32[ d] } }
|
|
|
|
|
hdbld = { \pgrace { d32[ e] } }
|
|
|
|
|
hdble = { \pgrace { e32[ f] } }
|
|
|
|
|
hdblf = { \pgrace { f32[ g] } }
|
|
|
|
|
hdblg = { \pgrace { g32[ f] } }
|
|
|
|
|
hdblA = { \pgrace { A32[ g] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Thumb doublings
|
2011-10-25 16:53:24 +02:00
|
|
|
|
tdblG = { \pgrace { A32[ G d] } }
|
|
|
|
|
tdbla = { \pgrace { A32[ a d] } }
|
|
|
|
|
tdblb = { \pgrace { A32[ b d] } }
|
|
|
|
|
tdblc = { \pgrace { A32[ c d] } }
|
|
|
|
|
tdbld = { \pgrace { A32[ d e] } }
|
|
|
|
|
tdble = { \pgrace { A32[ e f] } }
|
|
|
|
|
tdblf = { \pgrace { A32[ f g] } }
|
|
|
|
|
tdblg = { \pgrace { A32[ g f] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Shakes
|
|
|
|
|
% A few of these can't really be played and are here only for consistency.
|
2011-10-25 16:53:24 +02:00
|
|
|
|
shakea = { \pgrace { g32[ a e a G] } }
|
|
|
|
|
shakeb = { \pgrace { g32[ b e b G] } }
|
|
|
|
|
shakec = { \pgrace { g32[ c e c G] } }
|
|
|
|
|
shaked = { \pgrace { g32[ d e d G] } }
|
|
|
|
|
shakee = { \pgrace { g32[ e f e a] } }
|
|
|
|
|
shakef = { \pgrace { g32[ f g f a] } }
|
|
|
|
|
shakeg = { \pgrace { A32[ f g a] } }
|
|
|
|
|
shakeA = { \pgrace { A32[ g A a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Half shakes
|
2011-10-25 16:53:24 +02:00
|
|
|
|
hshakea = { \pgrace { a32[ d a G] } }
|
|
|
|
|
hshakeb = { \pgrace { b32[ d b G] } }
|
|
|
|
|
hshakec = { \pgrace { c32[ d c G] } }
|
|
|
|
|
hshaked = { \pgrace { d32[ e d G] } }
|
|
|
|
|
hshakee = { \pgrace { e32[ f e a] } }
|
|
|
|
|
hshakef = { \pgrace { f32[ g f a] } }
|
|
|
|
|
hshakeg = { \pgrace { g32[ f g a] } }
|
|
|
|
|
hshakeA = { \pgrace { A32[ g A a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Thumb shakes
|
2011-10-25 16:53:24 +02:00
|
|
|
|
tshakea = { \pgrace { A32[ a d a G] } }
|
|
|
|
|
tshakeb = { \pgrace { A32[ b d b G] } }
|
|
|
|
|
tshakec = { \pgrace { A32[ c d c G] } }
|
|
|
|
|
tshaked = { \pgrace { A32[ d e d G] } }
|
|
|
|
|
tshakee = { \pgrace { A32[ e f e a] } }
|
|
|
|
|
tshakef = { \pgrace { A32[ f g f a] } }
|
|
|
|
|
tshakeg = { \pgrace { A32[ f g a] } }
|
|
|
|
|
tshakeA = { \pgrace { A32[ g A a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Slurs
|
|
|
|
|
% A few of these can't really be played and are here only for consistency.
|
2011-10-25 16:53:24 +02:00
|
|
|
|
slura = { \pgrace { g32[ a G] } }
|
|
|
|
|
slurb = { \pgrace { g32[ b G] } }
|
|
|
|
|
slurc = { \pgrace { g32[ c G] } }
|
|
|
|
|
slurd = { \pgrace { g32[ d G] } }
|
|
|
|
|
wslurd = { \pgrace { g32[ d c] } }
|
|
|
|
|
slure = { \pgrace { g32[ e a] } }
|
|
|
|
|
slurf = { \pgrace { g32[ f a] } }
|
|
|
|
|
slurg = { \pgrace { A32[ f a] } }
|
|
|
|
|
slurA = { \pgrace { f32[ a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Half slurs
|
2011-10-25 16:53:24 +02:00
|
|
|
|
hslura = { \pgrace { a32[ G] } }
|
|
|
|
|
hslurb = { \pgrace { b32[ G] } }
|
|
|
|
|
hslurc = { \pgrace { c32[ G] } }
|
|
|
|
|
hslurd = { \pgrace { d32[ G] } }
|
|
|
|
|
whslurd = { \pgrace { d32[ c] } }
|
|
|
|
|
hslure = { \pgrace { e32[ a] } }
|
|
|
|
|
hslurf = { \pgrace { f32[ a] } }
|
|
|
|
|
hslurg = { \pgrace { g32[ a] } }
|
|
|
|
|
hslurA = { \pgrace { A32[ a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Thumb slurs
|
2011-10-25 16:53:24 +02:00
|
|
|
|
tslura = { \pgrace { A32[ a G] } }
|
|
|
|
|
tslurb = { \pgrace { A32[ b G] } }
|
|
|
|
|
tslurc = { \pgrace { A32[ c G] } }
|
|
|
|
|
tslurd = { \pgrace { A32[ d G] } }
|
|
|
|
|
wtslurd = { \pgrace { A32[ d c] } }
|
|
|
|
|
tslure = { \pgrace { A32[ e a] } }
|
|
|
|
|
tslurf = { \pgrace { A32[ f a] } }
|
|
|
|
|
tslurg = { \pgrace { A32[ f a] } }
|
|
|
|
|
tslurA = { \pgrace { f32[ a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Catches
|
2011-10-25 16:53:24 +02:00
|
|
|
|
catcha = { \pgrace { a32[ G d G] } }
|
|
|
|
|
catchb = { \pgrace { b32[ G d G] } }
|
|
|
|
|
catchc = { \pgrace { c32[ G d G] } }
|
|
|
|
|
catchd = { \pgrace { d32[ G b G] } }
|
|
|
|
|
catche = { \pgrace { e32[ G d G] } }
|
2010-12-30 01:44:59 +01:00
|
|
|
|
|
|
|
|
|
% G-pgrace catches
|
2011-10-25 16:53:24 +02:00
|
|
|
|
gcatcha = { \pgrace { g32[ a G d G] } }
|
|
|
|
|
gcatchb = { \pgrace { g32[ b G d G] } }
|
|
|
|
|
gcatchc = { \pgrace { g32[ c G d G] } }
|
|
|
|
|
gcatchd = { \pgrace { g32[ d G b G] } }
|
|
|
|
|
gcatche = { \pgrace { g32[ e G d G] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Thumb catches
|
2011-10-25 16:53:24 +02:00
|
|
|
|
tcatcha = { \pgrace { A32[ a G d G] } }
|
|
|
|
|
tcatchb = { \pgrace { A32[ b G d G] } }
|
|
|
|
|
tcatchc = { \pgrace { A32[ c G d G] } }
|
|
|
|
|
tcatchd = { \pgrace { A32[ d G b G] } }
|
|
|
|
|
tcatche = { \pgrace { A32[ e G d G] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Triple strikes (BMW has them all, but I've never seen any but the A one used, so ...)
|
2011-10-25 16:53:24 +02:00
|
|
|
|
tripleA = { \pgrace { A32[ g A g A g] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Throws
|
2011-10-25 16:53:24 +02:00
|
|
|
|
thrwd = { \pgrace { G32[ d c] } }
|
|
|
|
|
Gthrwd = { \pgrace { d32[ c] } }
|
|
|
|
|
gripthrwd = { \pgrace { G32[ d G c] } }
|
|
|
|
|
thrwe = { \pgrace { e32[ a f a] } }
|
|
|
|
|
wthrwe = { \pgrace { e32[ d f d] } }
|
|
|
|
|
thrwf = { \pgrace { f32[ e g e] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Birls
|
2011-10-25 16:53:24 +02:00
|
|
|
|
birl = { \pgrace { a32[ G a G] } }
|
|
|
|
|
wbirl = { \pgrace { G32[ a G] } }
|
|
|
|
|
gbirl = { \pgrace { g32[ a G a G] } }
|
|
|
|
|
dbirl = { \pgrace { d32[ a G a G] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Grips
|
2011-10-25 16:53:24 +02:00
|
|
|
|
grip = { \pgrace { G32[ d G] } }
|
|
|
|
|
dgrip = { \pgrace { G32[ b G] } }
|
|
|
|
|
egrip = { \pgrace { G32[ e G] } }
|
2011-11-01 00:30:42 +01:00
|
|
|
|
fgrip = { \pgrace { G32[ f G] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Taorluaths
|
2011-10-25 16:53:24 +02:00
|
|
|
|
taor = { \pgrace { G32[ d G e] } }
|
|
|
|
|
taorjmd = { \pgrace { G32[ d a e] } }
|
|
|
|
|
taorold = { \pgrace { G32[ d G a e] } }
|
|
|
|
|
dtaor = { \pgrace { G32[ b G e] } }
|
|
|
|
|
Gtaor = { \pgrace { d32[ G e] } }
|
|
|
|
|
taoramb = { \pgrace { G32[ d G b e] } }
|
|
|
|
|
taoramc = { \pgrace { G32[ d G c e] } }
|
|
|
|
|
taoramd = { \pgrace { G32[ d G c d e] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Crunluaths
|
2011-10-25 16:53:24 +02:00
|
|
|
|
crun = { \pgrace { G32[ d G e a f a ] } }
|
|
|
|
|
dcrun = { \pgrace { G32[ b G e a f a ] } }
|
|
|
|
|
Gcrun = { \pgrace { d32[ G e G f a ] } }
|
|
|
|
|
crunamb = { \pgrace { G32[ d G b e b f b ] } }
|
|
|
|
|
crunamc = { \pgrace { G32[ d G c e c f c ] } }
|
|
|
|
|
crunamd = { \pgrace { G32[ d G c d e d f d ] } }
|
|
|
|
|
crunambfosg = { \pgrace { e32[ b f b ] } }
|
|
|
|
|
crunamcfosg = { \pgrace { e32[ c f c ] } }
|
|
|
|
|
crunamdfosg = { \pgrace { e32[ d f d ] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
|
|
% Special piobaireachd notations
|
2011-10-25 16:53:24 +02:00
|
|
|
|
grGcad = { \pgrace { G16 } }
|
|
|
|
|
gracad = { \pgrace { a16 } }
|
|
|
|
|
cad = { \pgrace { \stemspace #'(0 . 0.5) g32[ e8 d32] } }
|
|
|
|
|
hcad = { \pgrace { \stemspace #'(0 . 0.5) g32[ e8] } }
|
|
|
|
|
tcad = { \pgrace { e8[ d32] } }
|
|
|
|
|
thcad = { \pgrace { e8 } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% This is the same as thrwe
|
2011-10-25 16:53:24 +02:00
|
|
|
|
dre = { \pgrace { e32[ a f a] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% This is the same as thrwf
|
2011-10-25 16:53:24 +02:00
|
|
|
|
dare = { \pgrace { f32[ e g e] } }
|
|
|
|
|
bari = { \pgrace { e32[ G f G] } }
|
|
|
|
|
dari = { \pgrace { f32[ e g e f e] } }
|
|
|
|
|
fdari = { \pgrace { e32[ g e f e] } }
|
|
|
|
|
pthrwd = { \pgrace { G16[ d32 c] } }
|
|
|
|
|
darodo = { \pgrace { G32[ d G c G] } }
|
|
|
|
|
Gdarodo = { \pgrace { d32[ G c G] } }
|
|
|
|
|
pdarodo = { \pgrace { G16[ d32 G c G16] } }
|
|
|
|
|
pGdarodo = { \pgrace { d32[ G c G16] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% Weird stuff from Joseph MacDonald’s book
|
2011-10-25 16:53:24 +02:00
|
|
|
|
fifteenthcutting = { \pgrace { G32[ d a e a f a e a d] } }
|
|
|
|
|
fifteenthcuttingG = { \pgrace { G32[ d a e G f G e G d] } }
|
|
|
|
|
Gfifteenthcutting = { \pgrace { d32[ a e a f a e a d] } }
|
|
|
|
|
GfifteenthcuttingG = { \pgrace { d32[ a e G f G e G d] } }
|
|
|
|
|
seventeenthcutting = { \pgrace { G32[ d a e a f a e a d a c] } }
|
|
|
|
|
seventeenthcuttingG = { \pgrace { G32[ d a e G f G e G d G c] } }
|
|
|
|
|
Gseventeenthcutting = { \pgrace { d32[ a e a f a e a d a c] } }
|
|
|
|
|
GseventeenthcuttingG = { \pgrace { d32[ a e G f G e G d G c] } }
|
|
|
|
|
barluadh = { \pgrace { G32[ d a e a f a e a d a c a b a e a f a] } }
|
|
|
|
|
barluadhG = { \pgrace { G32[ d a e G f G e G d G c G b G e G f G] } }
|
|
|
|
|
Gbarluadh = { \pgrace { d32[ a e a f a e a d a c a b a e a f a] } }
|
|
|
|
|
GbarluadhG = { \pgrace { d32[ a e G f G e G d G c G b G e G f G] } }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
% Non-gracenote piobaireachd markup.
|
2009-01-28 17:53:50 +01:00
|
|
|
|
trebling = \markup {
|
2011-01-03 10:19:37 +01:00
|
|
|
|
\override #'(baseline-skip . 0.4)
|
2009-01-28 17:53:50 +01:00
|
|
|
|
\column {
|
|
|
|
|
\musicglyph #"scripts.tenuto"
|
|
|
|
|
\musicglyph #"scripts.tenuto"
|
|
|
|
|
\musicglyph #"scripts.tenuto"
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
% Abbreviated notation common in piobaireachd scores.
|
|
|
|
|
% TODO: Make sure these are put on a fixed Y-position.
|
2011-01-03 10:19:37 +01:00
|
|
|
|
txtaor = \markup { \center-align "T" }
|
|
|
|
|
txcrun = \markup { \center-align "C" }
|
2008-04-16 09:32:57 +02:00
|
|
|
|
txtaorcrun = \markup {
|
|
|
|
|
\override #'(baseline-skip . 1.8)
|
2011-01-03 10:19:37 +01:00
|
|
|
|
\column {
|
|
|
|
|
\center-align "T"
|
|
|
|
|
\center-align "C"
|
|
|
|
|
}
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|
2011-01-03 10:19:37 +01:00
|
|
|
|
txtaoram = \markup { \center-align \scale #'(-1 . -1) "T" }
|
|
|
|
|
txcrunam = \markup { \center-align \scale #'(-1 . -1) "C" }
|
2009-01-28 17:53:50 +01:00
|
|
|
|
txtaorcrunam = \markup {
|
2008-04-16 09:32:57 +02:00
|
|
|
|
\override #'(baseline-skip . 1.8)
|
2011-01-03 10:19:37 +01:00
|
|
|
|
\column {
|
|
|
|
|
\center-align \scale #'(-1 . -1) "T"
|
|
|
|
|
\center-align \scale #'(-1 . -1) "C"
|
|
|
|
|
}
|
2008-04-16 09:32:57 +02:00
|
|
|
|
}
|