>>>>> "bob" == bobroff@centrum is <bobr...@centrum.is> writes:

bob> For different output in score vs part you can use tags.
bob> 
http://lilypond.org/doc/v2.18/Documentation/notation/different-editions-from-one-source.html

You can also create  a 'global' music to put in parallel with each
part.  E.g.,

\version "2.20.0"

global = {
       \key e \minor
       \time 3/4
       \repeat unfold 2 s2.
       \time 4/4
       \key e \major
       s1
       \bar "|."
}

fluteOne = \relative c'' {
      c2. c2. cis1
}

fluteTwo = \relative c'' {
      a2. a2. a1
      }

\score {
       \new Staff <<
            \global
            \fluteOne
        >>
}

\score {
       \new Staff <<
            \global
            \fluteTwo
        >>
}
\score {
       \new StaffGroup <<
            \new Staff <<
                 \global
                 \fluteOne
            >>
            \new Staff <<
                 \global
                 \fluteTwo
                 >>
         >>
}

Reply via email to