On Tue, 2015-03-31 at 23:39 +0200, Andreas Schneider wrote: > How can I create a score directive in Denemo? I am trying to do some > setup e.g. for the format of rehearal marks that can be set with the > markFormatter property: > \set Score.markFormatter = #format-mark-box-numbers > Looking at various scripts (e.g. score title and score indent) I had > several tries to write something, but without success. My latest try was > > ;ScoreRehearsalMarkFormat > (let (tag "ScoreRehearsalMarkFormat") > (d-DirectivePut-score-prefix tag "\set markFormatter = > #format-mark-numbers")
this would be a problem: the \ needs escaping, otherwise guile reads it \s as an escaped s. So you need (d-DirectivePut-score-prefix tag "\\set markFormatter = #format-mark-numbers") I haven't tested this - I'll get to it later. Richard > (d-DirectivePut-score-override tag DENEMO_OVERRIDE_GRAPHIC) > (d-SetSaved #f)) > > How can I perform the task I want? > > Thank you > > Andreas > > _______________________________________________ > Denemo-devel mailing list > [email protected] > https://lists.gnu.org/mailman/listinfo/denemo-devel _______________________________________________ Denemo-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/denemo-devel
