mirror of
https://github.com/kastdeur/lilydrum.git
synced 2024-12-22 09:13:33 +01:00
Updated beatstructure commands
Removed point-and-click from lilydrum
This commit is contained in:
parent
bc65949a6c
commit
8c2534337a
2 changed files with 6 additions and 7 deletions
|
@ -24,7 +24,6 @@
|
||||||
% "g" for the left hand ("gauche")
|
% "g" for the left hand ("gauche")
|
||||||
%-----------------------------------------
|
%-----------------------------------------
|
||||||
|
|
||||||
#(ly:set-option 'point-and-click #f)
|
|
||||||
#(ly:set-option 'relative-includes #t)
|
#(ly:set-option 'relative-includes #t)
|
||||||
|
|
||||||
\include "lilydrum/layout_tweaks.ily"
|
\include "lilydrum/layout_tweaks.ily"
|
||||||
|
|
|
@ -5,28 +5,28 @@
|
||||||
|
|
||||||
eighthBeaming = {
|
eighthBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/8)
|
\set baseMoment = #(ly:make-moment 1/8)
|
||||||
\set beatStructure = #'( 2 )
|
\set beatStructure = #'( 2 2 2 2)
|
||||||
}
|
}
|
||||||
eighthReelBeaming = {
|
eighthReelBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/8)
|
\set baseMoment = #(ly:make-moment 1/8)
|
||||||
\set beatStructure = #'( 4 )
|
\set beatStructure = #'( 4 4 4 4)
|
||||||
}
|
}
|
||||||
eighthCompoundBeaming = {
|
eighthCompoundBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/8)
|
\set baseMoment = #(ly:make-moment 1/8)
|
||||||
\set beatStructure = #'( 3 )
|
\set beatStructure = #'( 3 3 3 3)
|
||||||
}
|
}
|
||||||
|
|
||||||
sixteenthBeaming = {
|
sixteenthBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/16)
|
\set baseMoment = #(ly:make-moment 1/16)
|
||||||
\set beatStructure = #'( 4 )
|
\set beatStructure = #'( 4 4 4 4)
|
||||||
}
|
}
|
||||||
sixteenthReelBeaming = {
|
sixteenthReelBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/16)
|
\set baseMoment = #(ly:make-moment 1/16)
|
||||||
\set beatStructure = #'( 8 )
|
\set beatStructure = #'( 8 8 8 8)
|
||||||
}
|
}
|
||||||
sixteenthCompoundBeaming = {
|
sixteenthCompoundBeaming = {
|
||||||
\set baseMoment = #(ly:make-moment 1/16)
|
\set baseMoment = #(ly:make-moment 1/16)
|
||||||
\set beatStructure = #'( 6 )
|
\set beatStructure = #'( 6 6 6 6)
|
||||||
}
|
}
|
||||||
% triplet
|
% triplet
|
||||||
triplet = #(define-music-function (parser location notes) (ly:music?) #{ \tuplet 3/2 { $notes } #})
|
triplet = #(define-music-function (parser location notes) (ly:music?) #{ \tuplet 3/2 { $notes } #})
|
||||||
|
|
Loading…
Reference in a new issue