lilypond-user
[Top][All Lists]
Advanced

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

Re: Multi column page setup


From: Orm Finnendahl
Subject: Re: Multi column page setup
Date: Thu, 4 Apr 2013 17:52:32 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

Hi Hanns Holger,

 below is a minimal example (with a layout block for each column for
illustration how to specify different layout settings for each
column). You can extend it to as many columns you want. There is a
major drawback though: You can't have lilypond figure out page
breaking as the music in any column can't be broken into many
pages. Working this way is more like explicitely stating which music
goes on which page by using one \book block per page.

--
Orm

\version "2.16.2"

\book {
  \markup {
    \null
    \score {
      \new Staff {
       c1 d e f\break
       a1 b c d\break
      }
      \layout {
         indent = #0
         line-width = #50
         \context {
           \Score
           \override NonMusicalPaperColumn #'page-break-permission = ##f
         }
       }
    }
    \null
    \score {
      \new Staff
      {
        f1 e d c\break
        b a b c\break
      }
      \layout {
         indent = #0
         line-width = #50
       }
    }
    \null
  }
}



Am Donnerstag, den 04. April 2013 um 16:15:46 Uhr (+0200) schrieb Hanns Holger 
Rutz:
> ok, great! (I think that's what grid_of_mini_scores.ly is actually doing)
> 
> On 4 Apr 2013, at 16:12, Marek Klein wrote:
> 
> > Hello
> > 
> > 2013/4/4 Hanns Holger Rutz <address@hidden>
> > how can I set up lilypond to use a multiple column page layout. I have very 
> > short independent scores, and I would like to arrange them in four example 
> > four columns next to each other. It doesn't matter whether the grid goes 
> > left-to-right then top-to-bottom or the other way round.
> > 
> > You can place \score in \markup, so you can have columns too.
> > See also:
> > http://lsr.dsi.unimi.it/LSR/Item?id=464
> > 
> > HTH
> > 
> > Marek Klein
> > 0918 610 720
> > http://gregoriana.sk
> > Gregoriana on youtube
> 
> 
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user



reply via email to

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