On Sun, 2017-09-24 at 12:09 +0000, NagyMusic wrote: > This is a quick question to ask where precisely in the score one > should insert the Lilypond as Denemo Directive? Since the code has two > parts:
If you want to insert two bits of LilyPond syntax at two different places in the music then you will need two Denemo Directives. > before pitches entry: > \override Score.StaffSymbol.layer = #4 > \override Staff.TimeSignature.layer = #3 > > > and after (before the time signature): > \once \override Staff.TimeSignature.whiteout = ##t > > > should one insert the directive before (or at) the first time > signature (or every time)? If you want the whiteout to apply to all the time signatures then you should omit the \once and, in that case, you could put all the syntax at the start of the music: { \override Score.StaffSymbol.layer = #4 \override Staff.TimeSignature.layer = #3 \override Staff.TimeSignature.whiteout = ##t b'2 b'~ \time 3/4 b' r4 \time 4/4 b'2 b'~ \time 3/4 b' r4 } and just use one Denemo Directive. If you did want the whiteout just for certain time signatures then you would use the \once syntax, in which case it would be neater to attach the Denemo directive to the time signature itself, but you would need help to do that. Otherwise, just insert a Denemo Directive with the \once syntax before each time signature that you want to have that property. Richard _______________________________________________ Denemo-devel mailing list Denemo-devel@gnu.org https://lists.gnu.org/mailman/listinfo/denemo-devel