On Mar 28, 2023, at 16:36, Grant Diffey <[email protected]> wrote:
>
> Sure,
>
> However none of the staff types dan suggested will do what I could previously
> do. Gregorian divisiones not supported on modern staffs is a reasonable
> closure for this as a bug however I've previously been able to use the
> gregorian divisions on a 'normal staff' so from my pov this is a regression.
>
Does either of these suit your purpose?
\version "2.24.1"
\include "gregorian.ly"
music = \fixed c' {
\key b \minor
e8[ g] e~ e[ d~] d4 \divisioMinima
g2 \divisioMaior
a2 \divisioMaxima
b1 \finalis
}
\layout {
\context {
\GregorianTranscriptionStaff
\name DiffeyStaffI
\description "A GregorianTranscriptionStaff that uses modern Voice."
\defaultchild Voice
}
\inherit-acceptability "DiffeyStaffI" "Staff"
\context {
\DiffeyStaffI
\name DiffeyStaffII
\description "A GregorianTranscriptionStaff that uses Voice and
renders divisiones as Divisio grobs rather than BarLine grobs."
\EnableGregorianDivisiones
}
\inherit-acceptability "DiffeyStaffII" "Staff"
}
<<
\new VaticanaStaff \music
\new DiffeyStaffI \music
\new DiffeyStaffII \music
>>