Re: Combine rests from two voices

2008-11-17 Thread Erik Ronström
Thank you folks! / Erik ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Combine rests from two voices

2008-11-15 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Samstag, 15. November 2008 schrieb Erik Ronström: > Hi! > > I am writing a single staff with two voices, using \voiceOne and \voiceTwo. > Is it possible to have rests common to both voices to be combined into > "single voice rests"? http://lsr.dsi.

Re: Combine rests from two voices

2008-11-15 Thread David Stocker
You could use: b2 /rest b4 /rest in both voices. It would work but you'd get a collision error warning in the console output. Another approach would be to use: b2 /rest b4 /rest in one voice and then use: s2 s4 in the other. regards, Dave Erik Ronström wrote: Hi! I am writing a singl

Re: Combine rests from two voices

2008-11-15 Thread Francisco Vila
2008/11/15 Erik Ronström <[EMAIL PROTECTED]>: > Hi! > > I am writing a single staff with two voices, using \voiceOne and \voiceTwo. > Is it possible to have rests common to both voices to be combined into > "single voice rests"? One thing you can do is to use spacing rests in one voice and \oneV

Combine rests from two voices

2008-11-15 Thread Erik Ronström
Hi! I am writing a single staff with two voices, using \voiceOne and \voiceTwo. Is it possible to have rests common to both voices to be combined into "single voice rests"? Of course I could do like << \newVoice = "one" { \voiceOne a4 b c d } \newVoice = "two" { \voiceTwo a4 b c d } >> r2