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: Janek Warchoł
Subject: Re: How to print to \score { } constructs next to each other instead of underneath
Date: Mon, 14 Mar 2011 22:30:30 +0100

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



reply via email to

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