Le 17/08/2021 à 14:57, josh a écrit :

Hello and thank you for the help. I've gotten closer.

Now, the systems are horizontally centered on the page but they're still not breaking into separate pages. I have started using \pageBreak in lieu of \break. I've attached the output that I get where it seems as though all of the systems are stacked on top of one another. Any recommendations?


How about the below? (No time to explain how it works right now.)

\version "2.22.1"

Cs =
#(make-sequential-music
   (map
     (lambda (n)
       #{
         \repeat unfold #n { c'4 }
         \bar ""
         \break
       #})
     (cdr (iota 30))))

\markuplist
  \override #'(baseline-skip . 12)
    \column-lines
      \map-markup-commands
        #(lambda (mkup)
           (make-fill-line-markup (list mkup)))
        \score-lines {
          \Cs
          \layout {
            ragged-right = ##t
            indent = 0
          }
        }

Best,
Jean

Reply via email to