[EMAIL PROTECTED] writes:
> Somehow the discussion of this subject got bumped to bug-lilypond, so
> I'm resetting it to here.
>
> To re-describe: I have music with solo and accompaniment. The solo has
please try to destill your problem into a short .ly snippet. We can't
debug without a small .l
Somehow the discussion of this subject got bumped to bug-lilypond, so
I'm resetting it to here.
To re-describe: I have music with solo and accompaniment. The solo has
a cadenza that the accompaniment has to sit through. By using skips to
round to the nearest measure, the cadenza works out to ex
I basically did as you suggested (although DevNull -> Devnull).
\theCadenza went into a separate file which was then \included in solo
and accompaniment.
The results are indescribable. Here is a sample page:
http://spamguy.cwru.edu/misc/images/violink.jpg
To summarise: the cadenza printed, fol
[EMAIL PROTECTED] writes:
> As far as I can understand, Han-Wen's suggestion was to do
> soloPart = \notes{
>...
>\theCadenzaw
>...
> }
>
> and
>
> accompaniment = \notes{
>...
>\context DevNull \theCadenza
>...
> }
>
> and since there is no such thing as a DevNull contex
As far as I can understand, Han-Wen's suggestion was to do
soloPart = \notes{
...
\theCadenzaw
...
}
and
accompaniment = \notes{
...
\context DevNull \theCadenza
...
}
and since there is no such thing as a DevNull context, LilyPond should
just ignore the cadenza music when typesetting
Do you mean something like this:
theCadenza = \notes \relative d'' {
STUFF
}
thePart = \notes {
MAIN STUFF
\context DevNull = "cadenzaMusic" << \theCadenza >>
MORE STUFF
}
If so, lily complained
warning: Cannot find or create `DevNull' called `cadenzaMusic'
I'm toying with this not because I'm to
[EMAIL PROTECTED] writes:
> As described in a previous e-mail, I have a helluva large cadenza
> printed for solo violin. It is unmeasured, and it probably has a length
> only calculatable using 32nd notes. If I want to start tutti playing
> back up after the cadenza, what do I do? Include s(x)*3
On Tuesday 09 March 2004 15:38, Will Oram wrote:
> As described in a previous e-mail, I have a helluva large cadenza
> printed for solo violin. It is unmeasured, and it probably has a
> length only calculatable using 32nd notes. If I want to start tutti
> playing back up after the cadenza, what do
As described in a previous e-mail, I have a helluva large cadenza
printed for solo violin. It is unmeasured, and it probably has a length
only calculatable using 32nd notes. If I want to start tutti playing
back up after the cadenza, what do I do? Include s(x)*32 in every
instrument's ly file t