lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to horizontally center systems over multiple pages?


From: Jean Abou Samra
Subject: Re: How to horizontally center systems over multiple pages?
Date: Tue, 17 Aug 2021 16:01:31 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0

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

[Prev in Thread] Current Thread [Next in Thread]