mirror of
https://github.com/kastdeur/bagpipe.ly.git
synced 2024-11-01 01:53:32 +01:00
Changed beaming to use beatStructure instead of beamExceptions.
This makes the beaming more predictable, especially in reels.
This commit is contained in:
parent
5ef76ceea2
commit
cf42328067
1 changed files with 5 additions and 3 deletions
|
@ -112,11 +112,13 @@ showTrueKeySignature = {
|
||||||
|
|
||||||
% Sets the autobeamer to span quarter notes only. Use for fast music.
|
% Sets the autobeamer to span quarter notes only. Use for fast music.
|
||||||
quarterBeaming = {
|
quarterBeaming = {
|
||||||
\set Staff.beamExceptions = #'()
|
\set Score.baseMoment = #(ly:make-moment 1 4)
|
||||||
|
\set Score.beatStructure = #'(1 1 1 1)
|
||||||
}
|
}
|
||||||
|
% Sets the autobeamer to span half notes. Mostly used in reels.
|
||||||
halfBeaming = {
|
halfBeaming = {
|
||||||
\set Staff.beamExceptions = #'((end . (((1 . 8) . (4 4))
|
\set Score.baseMoment = #(ly:make-moment 1 2)
|
||||||
((1 . 12) . (3 3)))))
|
\set Score.beatStructure = #'(1 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
% Reels are in allabreve time with half note beaming.
|
% Reels are in allabreve time with half note beaming.
|
||||||
|
|
Loading…
Reference in a new issue