I would like to understand what is the difference
beetween
\new Staff \new Voice \A
and
\new Staff \A
This is not related to arranger.ly :
This snippet works :
%%%%%%%%%%%%%%%
\version "2.22.0"
music = { c'1 c' c' c' }
skips = { s1*2 s1*2^"Hello" }
\new Staff << \skips \music >>
%%%%%%%%%%%%%%%
But if you replace the definition of \skips by
skips = { s1*2( s1*2) }
the snippet fails (no slurs).
It fails also with
skips = { s1*2 s1*2-> }
At last, with
skips = { s1*2 s1*2->^"Hello" }
you'll get an error :
"script direction not yet known"
--
Gilles