[EMAIL PROTECTED] writes:
> 
> Great that the alignment works better. Now I could set the 
> minimum distance between several Staffs of a Staffgroup, but
> I didn't manage to change the distance below each Staffgroup
> or Grandstaff in a score with several Staffgroups/Grandstaffs,
> for example in orchestscore.ly.

That is weird.  The mechanism is exactly the same, but you'd have to
use

        Score.minVerticalAlign

to space the staffs/staffgroups contained in the score. 

> Also, I get a SIGSEGV when trying to process the flute part of
> the Gade ouverture. I haven't been able to find the cause, but
> it happens both for the full score as well as for the separate
> part. Try parts.ly.

Try this as a kludge.

--- multi-measure-rest.cc~      Tue Apr  6 10:23:51 1999
+++ multi-measure-rest.cc       Wed Apr 28 15:01:20 1999
@@ -107,9 +107,17 @@
 Multi_measure_rest::get_rods () const
 {
   Array<Rod> a;
-  Rod r;
-  r.item_l_drul_ = spanned_drul_;
-  r.distance_f_ = paper_l ()->get_var ("mmrest_x_minimum");
-  a.push (r);
+
+  if (spanned_drul_[LEFT] && spanned_drul_[RIGHT])
+    {
+      Rod r;
+      r.item_l_drul_ = spanned_drul_;
+      r.distance_f_ = paper_l ()->get_var ("mmrest_x_minimum");
+      a.push (r);
+    }
+  else
+    {
+      programming_error ("Multi_measure_rest::get_rods (): I am not spanned!");
+    }
   return a;
 }

> The (non-)spacing of multibar rests at line starts is still very
> annoying. If somebody could suggest a solution, I could try to 
> implement it.

I have plans to rewrite & modularise the spacing engine, but until
that time, I can't really think of a good solution. Perhaps you can
add bogus (transparent/empty) noteheads with short durations. Those
should cause the measure to be spaced more widely. 

-- 

Han-Wen Nienhuys, [EMAIL PROTECTED] ** GNU LilyPond - The Music Typesetter 
      http://www.cs.uu.nl/people/hanwen/lilypond/index.html 

Reply via email to