I may be on to something. I just saw a note in the docs about setting
staff affinity on a staff.
Consenting out the affinity like this is now giving some change in
spacing behavior I can play around with.
\context {
\TabStaff
% \override VerticalAxisGroup.staff-affinity = #UP
}
}
On 10/20/2024 7:09 PM, Walt North wrote:
Perhaps someone could tell me what this informatiokn in the annotated
view is trying to tell me.
extent-estimate.
On 10/20/2024 6:54 PM, Walt North wrote:
Additional info in case it matters. I did turn on annotate spacing
but it didn't tell me much.
On 10/20/2024 6:01 PM, Walt North wrote:
Maybe it's just because it's been a long day but I'm just not seeing
what I'm missing. I've tried a lot of different things but I've
simplified a sample down below.
I'd like to have more space between the Staff and the TabStaff.
\version "2.24.4"
nts = \relative {c''4 d e f }
\score {
\layout {
\context {
\Staff
\override VerticalAxisGroup.staff-staff-spacing =
#'((basic-distance . 3) (minimum-distance . 20) (padding . 0))
\override VerticalAxisGroup.nonstaff-nonstaff-spacing =
#'((basic-distance . 3) (minimum-distance . 20) (padding . 0))
}
\context {
\TabStaff
\override VerticalAxisGroup.staff-affinity = #UP
}
}
<<
\new Staff \nts
\new TabStaff \nts
>>
}