Le dimanche 14 mai 2023 à 17:24 +0100, Graham King a écrit :

> I'm setting a song with multiple verses, one of which starts with a syllable 
> spanning two notes.  I'd like a dotted tie in the score, but how best to 
> achieve that?

Temporarily unset melismaBusyProperties like:

```
\version "2.25.4"

notes = \repeat volta 2 {
  \once \tieDotted
  \set melismaBusyProperties = #'()
  d'2~ d'2
  \unset melismaBusyProperties
  e'2. 4
}
words = \lyricmode {
  << { Lo -- rem ip -- sum }
     \new Lyrics {
       \set associatedVoice = "notes"
       do _ -- lo -- rit
     }
  >>
}

\score { <<
  \new Voice="sungNotes" \notes
  \new Lyrics \lyricsto sungNotes { \words }
>> }
```


See 
https://lilypond.org/doc/v2.25/Documentation/notation/multiple-notes-to-one-syllable

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to