lilypond-user
[Top][All Lists]
Advanced

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

RE: How to print to \score { } constructs next to each other instead of


From: James Lowe
Subject: RE: How to print to \score { } constructs next to each other instead of underneath
Date: Mon, 14 Mar 2011 22:19:17 +0000

Janek,
________________________________________
From: Janek Warchoł address@hidden
Sent: 14 March 2011 21:30
To: James Lowe
Cc: LilyPond User (address@hidden)
Subject: Re: How to print to \score { } constructs next to each other instead 
of underneath

2011/3/14 James Lowe <address@hidden>
>
> A simple example
> [...]
>
> This prints 3 grouped staves underneath each other, how would one go about 
> getting them so the three scores are running left to right instead?

Perhaps inserting scores in a markup will work for you?
See Notation Reference 1.8.2
http://lilypond.org/doc/v2.13/Documentation/notation/formatting-text#music-notation-inside-markup

example:

top = \relative c'' {
\clef "treble"
a b c d
}

bottom = \relative c {
\clef "bass"
a b c d
}

\markup {
    \line {
        \score {
            {c' d' e' f' g' a' b' c' }
            \layout {}
          }
        \score {
            <<
              \new Staff { \top }
              \new Staff { \bottom }
            >>
            \layout {}
          }
      }
  }

HTH,
Janek

-----

I appreciate that. 

That has suddenly opened up a lot of other possibilities (once I discovered 
that \textLengthOn works with this construct) and may just have just solved 
another problem I had completely forgotten about.

Have a good evening

James



reply via email to

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