> I have a few questions
> 
> --  \translator{\OrchestralScoreContext}
> gives me the proper bar numbering for my StaffGroup
> but the number is obscured by the group bracket. Is it
> possible to fix/workaround this. I have tried some of
> the "padding" settings without success:( 

You have to set the barNumberScriptPadding in the Score context,
since that's where the bar number are printed. The easiest way is
to say
\translator{\OrchestralScoreContext
  barNumberScriptPadding = 10;
}
in the \paper section.

> --  I am also writing scores for the various parts and one
> part is very repetitive with a lot of rests.  I would like
> to show notes from another part (in a rhythmic manner)
> above certain bars so my cello player won't lose his place.
> ie. if this syntax were valid
> 
>      ... r8^"Violin II:" r8^\notes{g'16 ... } | d4 cis4... more music
> 
> it would produce what I want. Is there a way of doing this
> currently ?? tried a chord context without much luck.

If you want these cue notes printed with smaller note heads
in the same system (commonly used in orchestral parts), you
just add another voice in the same staff:
... r8^"violin:" <{r8} \context Voice=cue { \small \stemup g''16 a}> | ...
If you want it on a separate staff line, that's printed only
at this place, you could take a look at the file 
input/test/extra-staff.ly in the Lilypond source tree.

> --  Is there a setting for beaming such that if i have
> 8 32nd notes the beams are created with 2 groups of 4 notes
> with one beam connecting them? ie. if this were valid syntax
> 
>       [[a'16 c'' e'' c''] [a'16 c'' e'' c'']]
> 
> it would produce what I want (don't know if this is good form
> generally - but I like it). Is there a beaming setting for this??

The following solution is extremely clumsy, but I can't find
anything better :
[a16 c e \property Voice.stemRightBeamCount=1 c 
\property Voice.stemLeftBeamCount=1 a c e c]
 
I hope you know how to use the \relative command to avoid most
"'" in your examples above, it's described in the manual.


    /Mats

Reply via email to