denemo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Denemo-devel] Time Signature Whiteout (was Proportional Notation)


From: Richard Shann
Subject: Re: [Denemo-devel] Time Signature Whiteout (was Proportional Notation)
Date: Sun, 24 Sep 2017 15:04:54 +0100

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







reply via email to

[Prev in Thread] Current Thread [Next in Thread]