From 94c729bd004cd1facc5bcf14f59f3b0ecb71e0ef Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Tue, 12 Jul 2016 11:19:49 +0200 Subject: [PATCH] Changed beaming base and added definitions for seconds and thirds --- lilydrum/layout_tweaks.ily | 4 ++++ lilydrum/musical_functions.ily | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lilydrum/layout_tweaks.ily b/lilydrum/layout_tweaks.ily index f731ac6..490ac85 100755 --- a/lilydrum/layout_tweaks.ily +++ b/lilydrum/layout_tweaks.ily @@ -102,10 +102,14 @@ instrumentSide = "Side" instrumentTenor = "Tenor" instrumentBass = "Bass" instrumentPipes = "Pipes" +instrumentSecnd = "Seconds" +instrumentThrd = "Thirds" shortInstrumentSide = "S.D." shortInstrumentTenor = "T.D." shortInstrumentBass = "B.D." shortInstrumentPipes = "P." +shortInstrumentSecnd = "2nd" +shortInstrumentThrd = "3rd" composerSide = "" composerTenor = "" composerBass = "" diff --git a/lilydrum/musical_functions.ily b/lilydrum/musical_functions.ily index 29b7a18..251cf5d 100755 --- a/lilydrum/musical_functions.ily +++ b/lilydrum/musical_functions.ily @@ -5,13 +5,13 @@ eighthBeaming = { \set baseMoment = #(ly:make-moment 1/8) - \set beatStructure = #'( 2 2 ) + \set beatStructure = #'( 2 ) } eighthReelBeaming = { \set baseMoment = #(ly:make-moment 1/8) - \set beatStructure = #'( 4 4) + \set beatStructure = #'( 4 ) } -compoundEighthBeaming = { +eighthCompoundBeaming = { \set baseMoment = #(ly:make-moment 1/8) \set beatStructure = #'( 3 ) }