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

positioning a rest

2016-02-12 Thread Patrick Karl
I'm trying to duplicate the following measure: My attempt: \version "2.19.32" { \new Staff << \time 3/4 \new Voice { \oneVoice r4 r \voiceOne g' } \new Voice { \voiceTwo s4 c'2 } >> } This works fine for everything but the second quarter-rest, which is

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
Of Patrick Karl Sent: Friday, February 12, 2016 9:35 AM To: lilypond-user <lilypond-user@gnu.org> Subject: positioning a rest I'm trying to duplicate the following measure: My attempt: \version "2.19.32" { \new Staff << \time 3/4 \new Voice { \one

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