On 09/09/2024 18:00, Sebastian Menge via LilyPond user discussion wrote:
Thanks Paul that works. However, there are warnings.
Here is a fixed version without warnings.
\version "2.24.0"
\score {
\relative { g2 ~ << g2 \new Voice {\voiceOne c8 d e f} >> }
\layout { }
}
--
Timothy Lanfear
Hi,
May be something like:
\score {
\relative { << { g2 ~ g2}\\ {s2 \stemUp c8 d e f} >> }
\layout { }
}
Hope this helps,
Jean B.
Le lundi 09 septembre 2024 à 17:20 +0200, Sebastian Menge via LilyPond
user discussion a écrit :
> Hi
>
> I would like to tie a note into a short polyphon sect
I would like to tie a note into a short polyphon section \score { \relative { g2 ~ << g2 \\ {\stemUp c8 d e
f} >> } \layout { } } But that gives a warning and no tie. (It is intended to have two half notes tied) You
can't tie across voices, that's true. this works though: \version "2.25.18" \sco