2012/5/21 Colin Hall <[email protected]>:
>> - Another question, how do I put slurs on both notes (musicUp and
>> musicDown)?
>
> Can't help you there. Perhaps one of the more experienced members of
> the team can assist you with this.
>
> Cheers,
> Colin.
>
> --
>
> Colin Hall

\set doubleSlurs = ##t
In \layout or \with : doubleSlurs = ##t

\version "2.15.36"

musicUp = \relative c'' {
 \time 4/4
 a4 c4.( g8) a4 |
 g4 e' g,( a8 b) |
 c b a2.
}

musicDown = \relative c'' {
 g4 e4.( d8) c4 |
 r2 g'4( f8 e) |
 d2 \stemDown a
}

\score {
 <<
   <<
   \new Staff {
     \set Staff.instrumentName = "Standard polyphony  "
     << \musicUp \\ \musicDown >>
   }
   \new Staff \with { printPartCombineTexts = ##f doubleSlurs = ##t } {
     \set Staff.instrumentName = "PartCombine without texts  "
     \partcombine \musicUp \musicDown
   }
   \new Staff \with {  doubleSlurs = ##t } {
     \set Staff.instrumentName = "PartCombine with texts  "
     \partcombine \musicUp \musicDown
   }
   >>
 >>
 \layout {
   indent = 6.0\cm
   \context {
     \Score
     \override SystemStartBar #'collapse-height = #30
   }
 }
}

HTH,
  Harm

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

Reply via email to