Janek,
________________________________________
From: Janek Warchoł [lemniskata.bernoull...@gmail.com]
Sent: 14 March 2011 21:30
To: James Lowe
Cc: LilyPond User (lilypond-user@gnu.org)
Subject: Re: How to print to \score { } constructs next to each other instead 
of underneath

2011/3/14 James Lowe <james.l...@datacore.com>
>
> 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

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to