On Sat, May 1, 2021 at 10:21 AM Aaron Hill <[email protected]> wrote:

> On 2021-05-01 7:15 am, Kieren MacMillan wrote:
> > Hi Davi,
> >
> >> I am working on this Aperghis score to use as an example of my Abjad
> >> library. I wanna have every system aligned to the right.
> >> I have in my layout block "ragged-right = ##t".
> >> I am looking for something like the inverse, ragged-left...
> >> How could I do that?
> >> P.S.: I don't wanna use skips.
> >
> > Can each line be a separate score?
> > If so, put each in a \markup, and then right-align all the markups.
>
> \score-lines will take a single score and return a markup list, with
> each line in the score as its own markup.
>

%%% RIGHT-ALIGNED SYSTEMS WITH \score-lines %%%

  \version "2.25.26"
  \markup
  \fill-line
  {
    \null
    \override #'(baseline-skip . 12)
    \column
    \right-align
    \score-lines
    {
      \new Staff
      {
        c'4 c'4 c'4 c'4 \break
        d'1 \break
        e'2 e'2
      }
    }
  }

%%% END %%%

-- 
Trevor Bača
www.trevorbaca.com
soundcloud.com/trevorbaca

Attachment: right-aligned-systems.pdf
Description: Adobe PDF document

Reply via email to