lilypond-user
[Top][All Lists]
Advanced

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

Re: Avoiding tie/prall collision


From: Thomas Morley
Subject: Re: Avoiding tie/prall collision
Date: Mon, 9 Apr 2012 21:12:00 +0200

Am 9. April 2012 20:53 schrieb Helge Kruse <address@hidden>:
> Hello,
>
> I have some measures with similar rhythmic pattern but different pitch. But
> all look similar like this:
>
> \context PianoStaff <<
>  \context Staff=right \relative c'' {
>    \key g \major \time 3/4 s2. \stemUp
>    d4~ d16 a' g\prall fis e\prall d cis\prall b | % 33
>  }
>
>  \context Staff=left \relative c' {
>    \key g \major \time 3/4 \clef bass s2. \stemDown
>    \change Staff=right r16 a' g\prall fis g4 \change Staff=left r | % 33
>  }
>
>>>
>
>
> Every time I get a collision between the tie and the prall ornament. I
> already changed the tie to "d4^~ d16" but the \prall is still above the
> system. What is the best way to move the prall ornament below the tie?
>
>
> Regards,
> Helge

I'd use \override Script #'staff-padding = #'() and \voiceOne,
\voiceTwo and \oneVoice:

\version "2.14.2"

\context PianoStaff <<
 \context Staff=right \relative c'' {
   \key g \major \time 3/4 s2. \voiceOne
   d4~ d16 a' g\prall fis e\prall d cis\prall b | % 33
 }

 \context Staff=left \relative c' {
         \override Script #'staff-padding = #'()
   \key g \major \time 3/4 \clef bass s2. \voiceTwo
   \change Staff=right r16 a' g^\prall fis g4  \change Staff=left
\oneVoice r | % 33
 }

>>

HTH,
  Harm



reply via email to

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