lilypond-user
[Top][All Lists]
Advanced

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

Re: two columns of staves


From: Eluze
Subject: Re: two columns of staves
Date: Sat, 6 Apr 2013 01:55:37 -0700 (PDT)

Gustar wrote
> I need to have four short pieces arranged on the one landscape page in a 
> table-like manner - two rows and two columns. Is it possible?

why not!?

here is a simple example - note I'm using the development version 2.17.15
and this code will _not_ work correctly before 2.17.10


\version "2.17.15"
#(set-default-paper-size "a4" 'landscape)
aScore = \markuplist \column-lines {
  \score {
    \repeat unfold 3 \relative c' {c d e f g a b c }
    \layout{indent=0 line-width=75}
  }
}
\markuplist 
\override-lines #'(line-width . 150)
{ 
  \column {
    \fill-line {
      \column-lines \aScore
      \column-lines \aScore
    }
    \vspace #2 \draw-hline \vspace #2
    \fill-line {
      \column-lines \aScore
      \column-lines \aScore
    }
  }
}

you might also be interested in the /\columns/ command as described in
http://lsr.dsi.unimi.it/LSR/Item?id=464 to automatically spread two or more
columns of the same width over the page

Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/two-columns-of-staves-tp143983p143989.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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