Updated beatstructure commands

Removed point-and-click from lilydrum
This commit is contained in:
Eric Teunis de Boone 2016-12-02 11:48:18 +01:00
parent bc65949a6c
commit 8c2534337a
2 changed files with 6 additions and 7 deletions

View File

@ -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"

View File

@ -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 } #})