bug-lilypond
[Top][All Lists]
Advanced

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

Re: Warnings in the documented example


From: Thomas Morley
Subject: Re: Warnings in the documented example
Date: Mon, 21 May 2012 02:19:11 +0200

2012/5/21 Colin Hall <address@hidden>:
>> - 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



reply via email to

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