You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This extracts parts of #268 but also relates to #271
With lilypond-book-preamble.ly LilyPond simply crops each system to its extent (we know that it's actually the Y-extent of its content elements because it will cut off elements that have been manually positioned through stencil callbacks or extra-offset). This process scrubs the information about the vertical spacing between the systems: the distance may be too large or too small, depending on the elements protruding in the vertical space (examples in #268).
Discussion on the lilypond-devel thread indicate that LilyPond doesn't "know" about the required values in a way to make this work for us, but one should at least try to either figure out a workaround or improve LilyPond's page layout handling. This issue is intended as a reminder to monitor this discussion over at LilyPond.
I have three basic ideas about possible approaches. Both would require injecting Scheme functionality in LilyPond to provide analysis data (written to aux files).
Analyze the LilyPond Systems
In an after-line-breaking callback iterate over all grobs of a system and calculate their "total" Y-extent
Determine the relative positioning of the StaffSymbol within the resulting cropped image file.
Problem: How to deal with multiple staves per system?
Problem: This may give us information about the protrusion of elements around the staff symbol and an indicator to adjust offsets. But it does not tell us the actual layout decision made by LilyPond
Record the absolute positions
I think there should be a way to have LilyPond provide the absolute position of any staff/system.
This can of course be used to determine the absolute distance between adjacent systems and to calculate the corresponding vertical distance between the cropped image files.
Problem: This is not always what we want:
LilyPond may produce ugly results through the vertical justification of too little material (too large spaces)
This concept actually makes sense only for a fullpage layout. When we only want to improve the vertical spacing for a couple of systems inserted in the text document this is definitely not what we want.
LilyPond vertical spacing variables
For handling the problem of systems that are printed too densely we could make use of LilyPond's vertical spacing variables (and their defaults). If a system does not have protruding elements LilyPond will use these variables to create decent vertical spacing even when it does not have to stretch the systems for vertical justification. So it should probably be possible to have a way to know the minimal distance between two systems, and if the cropped images are smaller than that we could simply add the missing \vspace.
I think these three options are partially interdependent, and if the first two are possible on the LilyPond side (do you have any ideas on this @lemzwerg?) I think we could get pretty far at improving the insert=systems output, which has always been and should IMO remain the bread-and-butter mode for using lyluatex.
But it is probably a fairly complex issue and needs detailed consideration and specification before one can tackle it. Actually I'd say implementing this and #272 would warrant a v1.1 release.
The text was updated successfully, but these errors were encountered:
This extracts parts of #268 but also relates to #271
With
lilypond-book-preamble.ly
LilyPond simply crops each system to its extent (we know that it's actually theY-extent
of its content elements because it will cut off elements that have been manually positioned throughstencil
callbacks orextra-offset
). This process scrubs the information about the vertical spacing between the systems: the distance may be too large or too small, depending on the elements protruding in the vertical space (examples in #268).Discussion on the lilypond-devel thread indicate that LilyPond doesn't "know" about the required values in a way to make this work for us, but one should at least try to either figure out a workaround or improve LilyPond's page layout handling. This issue is intended as a reminder to monitor this discussion over at LilyPond.
I have three basic ideas about possible approaches. Both would require injecting Scheme functionality in LilyPond to provide analysis data (written to aux files).
Analyze the LilyPond Systems
after-line-breaking
callback iterate over all grobs of a system and calculate their "total"Y-extent
Record the absolute positions
LilyPond vertical spacing variables
For handling the problem of systems that are printed too densely we could make use of LilyPond's vertical spacing variables (and their defaults). If a system does not have protruding elements LilyPond will use these variables to create decent vertical spacing even when it does not have to stretch the systems for vertical justification. So it should probably be possible to have a way to know the minimal distance between two systems, and if the cropped images are smaller than that we could simply add the missing
\vspace
.I think these three options are partially interdependent, and if the first two are possible on the LilyPond side (do you have any ideas on this @lemzwerg?) I think we could get pretty far at improving the
insert=systems
output, which has always been and should IMO remain the bread-and-butter mode for usinglyluatex
.But it is probably a fairly complex issue and needs detailed consideration and specification before one can tackle it. Actually I'd say implementing this and #272 would warrant a
v1.1
release.The text was updated successfully, but these errors were encountered: