Just to be sure, when you write:
\new Staff\notes\relative c' <<
\context Voice = "1" {s1*2}
\context Voice = "2" {s1*2}
\new Voice {
c4 d e f
<<
a(
\\
b
>>
c
<<
c)
\\
d
>>
}
>>
saying that the two voices are maintained alive, does that
mean that voices are matches by name o
Did you try to just add the slur in the existing example?
As long as there are no notes between the two << ... \\ ... >>,
you can do
<<
a4(
\\
b4
>>
<<
c4)
\\
d4
>>
Since the two Voice contexts created by this construct are called
"1" and "2", respectively, the bot
Hi,
I just wondered how I could manage to put a slur between the
a and the c in a fragment such as:
{
<
a4
\\
b4
>
<
c4
\\
d4
>
}
I understand of course that by restructuring the fragment as
<
{ a4 ( c4)}
\\
{b4 d4}
>
the problem would be solved, but I