bagpipe.ly/bagpipe.ly

42 lines
1.0 KiB
Plaintext
Raw Normal View History

2019-01-03 17:32:41 +01: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
Sven Axelsson, the Murray Pipes & Drums of Gothenburg
(http://www.murrays.nu)
%}
2015-10-08 14:26:20 +02:00
\version "2.19.28"
% Some common timing tweaks.
% Sets the autobeamer to span quarter notes only. Use for fast music.
quarterBeaming = {
2015-10-08 14:26:20 +02:00
\set Score.baseMoment = #(ly:make-moment 1/4)
2014-11-02 16:19:40 +01:00
\set Score.beatStructure = #'(1 1 1 1)
}
% Sets the autobeamer to span half notes. Mostly used in reels.
halfBeaming = {
2015-10-08 14:26:20 +02:00
\set Score.baseMoment = #(ly:make-moment 1/2)
2014-11-02 16:19:40 +01:00
\set Score.beatStructure = #'(1 1)
}
% 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
}
2019-01-03 17:23:21 +01:00
#(ly:set-option 'relative-includes #t)
2019-01-03 17:32:41 +01:00
\include "lib/pitchnames.ily"
2019-01-03 17:23:21 +01:00
\include "lib/embellishments.ily"
2019-01-03 17:37:34 +01:00
\include "lib/layout_tweaks.ily"