Re: Automatic cross-staff chords - testing help

2021-01-10 Thread Davide Bonetti
woops, I used % instead of ; in scheme here the right code :) Davide \version "2.20.0" #(define (split-music dir music ref)    (let ((es (ly:music-property music 'elements)) (e (ly:music-property music 'element)) (p (ly:music-property music 'pitch))) (if (pair? es)  

Re: Automatic cross-staff chords - testing help

2021-01-10 Thread Davide Bonetti
I did it! the code works, but produces warnings. Cheers Davide \version "2.20.0" #(define (split-music dir music ref)    (let ((es (ly:music-property music 'elements)) (e (ly:music-property music 'element)) (p (ly:music-property music 'pitch))) (if (pair? es) (

split chord in two staves, split multiple voices in two staves

2021-01-10 Thread Davide Bonetti
I did it! the code works but produces warnings. Testers are welcome! Cheers Davide \version "2.20.0" #(define (split-music dir music ref)    (let ((es (ly:music-property music 'elements)) (e (ly:music-property music 'element)) (p (ly:music-property music 'pitch))) (if

Multiple pages per system

2021-01-10 Thread ebenezer
Hi everyone, I have a large number of staves in my current score, such that they don't fit easily on paper. Is there a way to split the staves up so that the first half fit on odd pages (w/w, brass & perc), the second half on even pages (voices, strings, saxes and guitars)? Thanks.