Re: calculation in scheme causes "assertion failed" as of Ly 2.25.11

2024-06-07 Thread K. Blum via bug-lilypond
Hi Michael, yes, the initial MWE that I've posted now works fine with your patched release. Thank you for working on this! Cheers, Klaus Am 06.06.2024 um 22:39 schrieb Michael Käppler: Hi Klaus, I think I could track this down, see https://gitlab.com/lilypond/lilypond/-/issues/6710 for an

Re: calculation in scheme causes "assertion failed" as of Ly 2.25.11

2024-04-21 Thread K. Blum via bug-lilypond
Hi Michael, Am 12.04.2024 um 18:00 schrieb bug-lilypond-requ...@gnu.org: This seems to be: https://gitlab.com/lilypond/lilypond/-/issues/6687 Should be fixed in the upcoming release 2.25.15. Thanks for that information. Unfortunately the problem still persists in the 2.25.15 Windows build.

calculation in scheme causes "assertion failed" as of Ly 2.25.11

2024-04-11 Thread K. Blum via bug-lilypond
I often need mathematical calculations for graphic stuff. Now I've found a weird problem in Ly 2.25.11 and newer (Windows 10 64bit). It seems that certain operations with fractions fail whereas the same value as real number works fine. Here is my code: %

Re: Snippet 960 fails with Ly 2.25

2024-04-02 Thread K. Blum via bug-lilypond
further developped) https://github.com/openlilylib/analysis/wiki/Frames I'll see what I can do to update those in a similar manner. Cheers, Klaus Am 02.04.2024 um 01:11 schrieb Aaron Hill: On 2024-04-01 3:20 pm, K. Blum via bug-lilypond wrote: Hello, LSR snippet 960 works alright

Snippet 960 fails with Ly 2.25

2024-04-01 Thread K. Blum via bug-lilypond
Hello, LSR snippet 960 works alright with LilyPond 2.24.3 and earlier. Ly 2.25.1 (and later) aborts with an error message, see below. In the docs I haven't found any changes to the functions in use. Also tried convert-ly, but it did not change anything from the code. Am I missing something or is

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