1\version "2.16.0"
2
3\header {
4  texidoc = "Cross-staff or -voice arpeggios which include single
5note heads as anchors do not collide with previous note heads or
6prefatory material."
7}
8ddddd = { d'16 d'16 d'16 d'16 d'4\arpeggio }
9sdf = { s4 <d' f'>4\arpeggio }
10\score {
11  \new PianoStaff <<
12    \new Staff {
13      \set PianoStaff.connectArpeggios = ##t
14      << \transpose c c'{ \ddddd \sdf } \\ { \sdf \ddddd } >>
15      << { a'1\arpeggio } \\ { f'2\arpeggio e' } >>
16    }
17    \new Staff {
18      R1
19      d'\arpeggio
20    }
21  >>
22  \layout {
23    line-width = 90\mm
24  }
25}
26