> Version 1.2.0 allows the typesetting of almost perfect scores, at least
> for the kind of music I'm typesetting now.
> There are, however, some features that either are not yet implemented
> or I don't know how to use. Here is a partial list.
>
> 2) How can phrases like "Dal \segno al Fine" "D.C. al \coda" be typeset
> on the same line of the staff?
I've also missed some simple way to include a feta symbol in a
text string. The following workaround can be used for now:
Include the following line in the \header section of your file:
latexheaders = "\\font\\feta=feta20";
write "Dal {\\feta\\char{59}} al Fine" and
"D.C. al {\\feta\\char{60}}" respectively.
The character codes of the different symbols can be found in
mf/out/feta20.tex
> 1) It would be useful to align some symbols (e.g. \segno) to a bar line
> instead of a note.
Using the same idea as above, try: \mark "\\feta{59}";
> 3) How can the staff be interrupted, some short text like "TRIO" printed
> and the staff be resumed?
No idea, assuming that you want to resume the staff on the same line.
> 4) Some expression marks or comments do not need to be aligned to
> a single note but can or should span many notes, for example
> crescendo is sometimes indicated with "cresc." spanning the
> first notes.
You mean that you don't want the text script to affect the note
spacing? Then the answer is simply to set
\property Voice.textEmtyDimension = 1;
> 5) I know this is probably explained somewhere in the documentation
> but, is there an easy way to modify the font size and the distance
> from the staff of such expression marks and comments?
Check out Section 10.3. ``Context properties�� in the Reference
manual, the textStyle and textScriptPadding properties are probably
what you are looking for.
> 6) Is there a way to number \repetitions?
??? The different alternative endings are numbered when you use
\repeat volta. Or do you want to get som numbers in conjunction
with \repeat unfolded?
> 7) Is there a way to print a circled number above and aligned with a bar
> line?
\mark "\\myownfancycirklingcommand{43}";
Just use your LaTeX skills to get implement the circle. Please post
your solution, since others may be interested. :-)