lilypond-user
[Top][All Lists]
Advanced

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

Re: Arpeggio travels to the left and dot disappears with \harmonic (2 it


From: Thomas Morley
Subject: Re: Arpeggio travels to the left and dot disappears with \harmonic (2 items).
Date: Tue, 2 Dec 2014 23:15:25 +0100

2014-12-02 11:43 GMT+01:00 Peter Terpstra <address@hidden>:
>
> Dear people,
> In the next score i encountered two problems. The arpeggio travels to the 
> left when fingerorientations left or right is used.

Seems to be:
https://code.google.com/p/lilypond/issues/detail?id=556

You may want to workaround with:

\version "2.18.2"

global = {
  \key g \major
  \time 6/8
 }

upper = \relative c' {
  \global
   \repeat unfold 2 {
     \set fingeringOrientations = #'(left)
     \set stringNumberOrientations = #'(down)
    %%%%%%%%%%%%%% /arpeggio deleted
    <d-2>8. <e-0\1\harmonic>16<d-3\2\harmonic>8<b-4\3\harmonic >4.\fermata
   }    \bar "||"

}

lower = \relative c {
  \global
  \repeat unfold 2 {
    \set fingeringOrientations = #'(left)
    %%%%%%%%%%%%%%%%% inserted:
    \override Arpeggio.positions = #'(-5 . 1)
    \override Arpeggio.Y-offset = #0.5
    %%%%%%%%%%%%%%%%%
    <g-1 d'-0 b'-3>2.\arpeggio |
   }

}

\score {
  \new Staff \with {
     \consists "Span_arpeggio_engraver"
    } { \clef "treble_8" << \upper \\ \lower >> }
  \layout {
    %%%%%%%%%%%%%%%%% inserted:
    \set Staff.harmonicDots = ##t
  }
}


Hopefully others may find a better solution.

Anyway, hth,
  Harm



reply via email to

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