Reputation: 157
How do I display equally valued notes, one with an accidental and one natural, at the same time in different voices without them being merged? I tried using \mergeDifferentlyHeadedOff and \shiftOff but it doesn't work.
I want the first note (d natural) to be written after the d flat octave so that it is not merged into one.
<<
{d!='8 }
\\
{<des, des'>8 }
>>
Upvotes: 1
Views: 106
Reputation: 2054
I think this might do the trick:
\version "2.19.82"
<<
{
d'!8
} \\
{
\once \override NoteColumn.force-hshift = #1.1
<des, des'>8
}
>>
Producing:
Upvotes: 1