Re: positioning a rest

2016-02-14 Thread Simon Albrecht
On 12.02.2016 22:02, Noeck wrote: the problem with your code is that your code says the second rest is in \oneVoice (this means there are no other simultaneous voices around). But there is the c' at the same time in \voiceTwo and that confuses LilyPond. If you mark the voices correctly, you will

Re: positioning a rest

2016-02-12 Thread Alberto Simões
Try On 12/02/16 17:34, Patrick Karl wrote: { \new Staff << \time 3/4 << { \oneVoice r4 r \voiceOne g' } \new Voice { \voiceTwo s4 c'2 } >> >> } HTH ambs ___ lilypond-user mailing list lilypond-user@gnu.org

Re: positioning a rest

2016-02-12 Thread Ben Strecker
This works for me. \version "2.19.32" { \new Staff << \time 3/4 \new Voice { \override Rest #'staff-position = #0 \voiceOne r4 r4 g' } \new Voice { \voiceTwo s4 c'2 } >> } > On Feb 12, 2016, at 12:34 PM, Patrick Karl wrote:

RE: positioning a rest

2016-02-12 Thread Mark Stephen Mrotek
Patrick, The location of the rest can be “pitch” specified. Change the third line to: \new Voice { \oneVoice r4 b’\rest \voiceOne g' } Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of

Re: positioning a rest

2016-02-12 Thread Noeck
Dear Patrick, the problem with your code is that your code says the second rest is in \oneVoice (this means there are no other simultaneous voices around). But there is the c' at the same time in \voiceTwo and that confuses LilyPond. If you mark the voices correctly, you will get this: \version