lilypond-user
[Top][All Lists]
Advanced

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

Re: Cue notes in color?


From: Klaus Blum
Subject: Re: Cue notes in color?
Date: Tue, 12 Jul 2016 14:13:51 -0700 (MST)

Salut Jérôme, 

Jérôme Plût-2 wrote
> I would like to have the cues displayed in a different color from the
> remainder of the score.

somewhere in
http://lilypond.org/doc/v2.18/Documentation/notation-big-page.de.html#formatting-cue-notes
there's a hint that if you start a voice context with \cueDuring, you have
to explicitely create it with \new Voice. 

So I ended up with the following: 

% ---------------------------------------------------
dux = {
  a4 a a a
}
comes = \new Voice {
  \cueDuring #"dux" #UP {R1}
  e4 e e e
}
\addQuote "dux" { \dux } 

\score {
  << \new Staff { \dux } \new Staff { \comes } >>
  \layout {
    \context {
      \CueVoice
      \override NoteHead.color = #blue
    }
  }
}
% ---------------------------------------------------

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Cue-notes-in-color-tp192619p192629.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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