lilypond-user
[Top][All Lists]
Advanced

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

Re: Score and parts


From: Peter Chubb
Subject: Re: Score and parts
Date: Wed, 02 Jun 2021 20:49:45 +1000
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM-LB/1.14.9 (Gojō) APEL-LB/10.8 EasyPG/1.0.0 Emacs/27.1 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

>>>>> "bob" == bobroff@centrum is <bobroff@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

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