lilypond book preamble not cropping page

2023-12-30 Thread Gilberto Agostinho via bug-lilypond
Hello everyone, I hope you are all well and had a great year. I noticed that since version 2.24.x, lilypond-book-preamble has stopped automatically cropping the output around the music grobs. *1) *This is the behaviour of 2.22.2, which is what I expect when using lilypond-book-preamble: ``

Re: lilypond book preamble not cropping page

2023-12-30 Thread K. Blum via bug-lilypond
Hi Gilberto, try adding these options to your LY file: #(ly:set-option 'tall-page-formats 'eps,png,pdf) #(ly:set-option 'separate-page-formats 'eps,png,pdf) Alternatively, you can add these options to your command line: -dtall-page-formats=eps,png,pdf -dseparate-page-formats=eps,png,pdf Here