Re: multimeasure rest on single line DrumStaff

2008-03-04 Thread Mats Bengtsson
Try setting \override MultiMeasureRest #'staff-position = #0.01 If you look in the source code, you will see that it treats the case staff-position=0.0 (i.e. the default setting) specially, so what my proposed workaround does is simply to fool LilyPond. /Mats Reinhold Kainhofer wrote: Am

Re: multimeasure rest on single line DrumStaff

2008-03-04 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Dienstag, 4. März 2008 schrieben Sie: Try setting \override MultiMeasureRest #'staff-position = #0.01 If you look in the source code, you will see that it treats the case staff-position=0.0 (i.e. the default setting) specially, so what my

multimeasure rest on single line DrumStaff

2008-03-03 Thread Orm Finnendahl
Hi, I'm trying to input multimeasure rests on a single line DrumStaff. Unfortunately these rests are drawn above the stave (as the single line represents the middle b). How can I make this rest appear hanging on the single line instead of above it? (sorry if I'm missing the obvious). -- Orm

Re: multimeasure rest on single line DrumStaff

2008-03-03 Thread Risto Vääräniemi
Hi Orm, On 03/03/2008, Orm Finnendahl wrote: I'm trying to input multimeasure rests on a single line DrumStaff. Unfortunately these rests are drawn above the stave (as the single line represents the middle b). How can I make this rest appear hanging on the single line instead of above

Re: multimeasure rest on single line DrumStaff

2008-03-03 Thread Orm Finnendahl
Hi Risto, thanks, but that doesn't seem to work here. The rest symbol still is above the staff. I use this: \version 2.11.7 \score { \new DrumStaff \with{ \override StaffSymbol #'line-count = #1 } { \override RhythmicStaff.MultiMeasureRest #'extra-offset = #'(0.0 . -1.0) {

Re: multimeasure rest on single line DrumStaff

2008-03-03 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Montag, 3. März 2008 schrieb Orm Finnendahl: \score { \new DrumStaff \with{ \override StaffSymbol #'line-count = #1 Are you sure that you really want a DrumStaff and not a RhythmicStaff instead? \override

Re: multimeasure rest on single line DrumStaff

2008-03-03 Thread Reinhold Kainhofer
Am Montag, 3. März 2008 schrieb Risto Vääräniemi: Hi Orm, I was struggling with the same thing two months back and then I just lowered the rests by one space unit. \override RhythmicStaff.MultiMeasureRest #'extra-offset = #'(0.0 . -1.0) Unfortunately, this messes up real multi-measure

Re: multimeasure rest on single line DrumStaff

2008-03-03 Thread Risto Vääräniemi
Hi Orm, On 04/03/2008, Orm Finnendahl wrote: thanks, but that doesn't seem to work here. The rest symbol still is above the staff. I use this: You seem to be using DrumStaff and in your case you have to replace the RhythmicStaff with DrumStaff thus: \override DrumStaff .MultiMeasureRest