Hello,

I'm typesetting a work which includes this single measure (here as a MWE)
in a PianoStaff.

\version "2.19.83"

\score {
 \new PianoStaff {
   \set PianoStaff.connectArpeggios = ##t
   <<
     \new Staff \with { \consists "Span_arpeggio_engraver" } \relative c''
{ \clef treble \time 6/8 b4. <b, e gis b>8 \arpeggio r r}
     \new Staff \with { \consists "Span_arpeggio_engraver" } {
       <<
       \new Voice {  \voiceOne \relative c' {aes4( g8) s4.}}
       \new Voice {  \voiceTwo \relative c, { \clef bass \time 6/8 f4. <fis
cis'>8 \arpeggio \oneVoice r r }}
       >>
       }
   >>
 }
}

Without tweaking anything, the arpeggio symbol is mispositioned. Is this a
bug? I'm missing something? What do you think is the best workaround for
this? I tried overriding Arpeggio.padding and (somewhat more brute-force)
NoteColumn.X-offset but I feel there is a better solution for this.

Thanks in advance!

F.
\version "2.19.83"

\score {
 \new PianoStaff {
   \set PianoStaff.connectArpeggios = ##t
   <<
     \new Staff \with { \consists "Span_arpeggio_engraver" } \relative c'' { \clef treble \time 6/8 b4. <b, e gis b>8 \arpeggio r r}
     \new Staff \with { \consists "Span_arpeggio_engraver" } {
       <<
       \new Voice {  \voiceOne \relative c' {aes4( g8) s4.}}
       \new Voice {  \voiceTwo \relative c, { \clef bass \time 6/8 f4. <fis cis'>8 \arpeggio \oneVoice r r }}
       >>
       }
   >>
 }
}

Reply via email to