Hello Oliver,

> is there a way to include some voices into the calculation of the ambitus
> engraver for an entire staff whilst excluding others, be it named or throw 
away
> voices?

you could use a custom context for selecting the voices:

%%%
\layout {
  \context {
    \name "AmbitusContainer"
    \type "Engraver_group"
    \accepts "Voice"
    \consists Ambitus_engraver
  }
  \context {
    \Staff
    \accepts "AmbitusContainer"
  }
}

\new Staff <<
  \new AmbitusContainer <<
    \new Voice g''
    \new Voice e''
    \new Voice c''
  >>
  \new Voice c'
>>
%%%

Cheers,
Tina

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to