2011/3/14 James Lowe <[email protected]>
>
> 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

_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to