Desmond Lam <[EMAIL PROTECTED]> writes:
> - All the hairpins are missing (\> and \<). It doesn't matter whether I
> use \> or \cr. It happens to both my music (very very simple) and
> the examples, e.g. sammartini.ly
This bit I can help you with. There are a couple of fixes I have made
in my local source which I haven't propogated to the bugs list yet
(because I have been doing some other hacking on it as well). Try
this patch:
diff -urN ../lilypond-1.3.20/lily/crescendo.cc ./lily/crescendo.cc
--- ../lilypond-1.3.20/lily/crescendo.cc Thu Jan 13 18:22:05 2000
+++ ./lily/crescendo.cc Mon Jan 17 15:48:36 2000
@@ -28,7 +28,7 @@
Real absdyn_dim = paper_l ()-> get_var ("crescendo_shorten");
Real extra_left = get_broken_left_end_align ();
- SCM dir = get_elt_property("grow-dir");
+ SCM dir = get_elt_property("grow-direction");
SCM dyns = get_elt_property ("dynamic-drul");
if (!isdir_b (dir) || !gh_pair_p (dyns))
diff -urN ../lilypond-1.3.20/lily/timing-translator.cc ./lily/timing-translator.cc
--- ../lilypond-1.3.20/lily/timing-translator.cc Thu Jan 13 18:22:08 2000
+++ ./lily/timing-translator.cc Tue Jan 18 08:14:12 2000
@@ -153,7 +153,7 @@
Moment len = Moment (l) * one_beat;
daddy_trans_l_->set_property ("measureLength",
(new Moment (len))->smobify_self ());
- daddy_trans_l_->set_property ("beatength",
+ daddy_trans_l_->set_property ("beatLength",
(new Moment (one_beat))->smobify_self ());
}
> - My piece is in 6/8. Auto beaming works like 4/4. \property
> Voice.beamAutoEnd = "3/8" as described in the reference doesn't work,
> and Voice.time6_8... generates an error.
The above patch might fix this. I don't know for sure, as I don't use
autobeaming.
> - Having a slur between a grace note and a regular note generates the
> warning "warning: Can't find both ends of slur...[snip]...programming
> error: Must set minimum distance between differing columns. (Continuing;
> cross thumbs)" The slur looks very large, and the grace notes are large
> too.
I agree. I'd like to trim the space on either side of grace contexts.
> - There have been discussions about 8ve and con8ve brackets (whcih I
> want very much for high register instruments), I suppose the same
> could be done to pedal brackets.
I suppose so. Since I'm having a go at implementing this, could you
point me somewhere where I could see this notation?
--
Michael Duggan
([EMAIL PROTECTED])