lilypond-user
[Top][All Lists]
Advanced

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

connectArpeggios problem


From: Jacques Menu
Subject: connectArpeggios problem
Date: Fri, 27 Sep 2019 08:04:29 +0200

Hello folks,

connectArpeggios seems not to be taken into account in the example below : the cis half note in not included in the arpeggio.

This used to work alright in older versions of Lily with '\set PianoStaff.connectArpeggios = ##t', though.

Thanks for your help!

JM



%%%%%%%%%%%%%%%%%%%
\version "2.19.83"

Part_POne_Staff_One_Voice_One = \absolute {
  \key a \major
  \numericTimeSignature \time 2/4

  \clef "treble"
  \grace { s16  s  s } cis'''2  | % 1
  \barNumberCheck #2
}

Part_POne_Staff_One_Voice_Two = \absolute {
  \key a \major
  \numericTimeSignature \time 2/4

  \clef "treble"
  \grace { s16  s  s }
  \arpeggioNormal <cis'' e'' a'' >4 -\arpeggio r | % 1
  \barNumberCheck #2
}

\book {
  \header {
  }

  \score {
    <<

      \new PianoStaff
      \with {
        instrumentName = "Piano"
        connectArpeggios = ##t
      }
      <<
        \new Staff = "Part_POne_Staff_One"
        \with {
        }
        <<
          \context Voice = "Part_POne_Staff_One_Voice_One" <<
            \voiceOne % out of 2 regular voices
            \Part_POne_Staff_One_Voice_One
          >>
          \context Voice = "Part_POne_Staff_One_Voice_Two" <<
            \voiceTwo % out of 2 regular voices
            \Part_POne_Staff_One_Voice_Two
          >>
        >>

      >>
    >>

    \layout {}
  }
}
%%%%%%%%%%%%%%%%%%%




reply via email to

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