See melismaBusyProperties in
http://lilypond.org/doc/v2.23/Documentation/notation/common-notation-for-vocal-music#multiple-notes-to-one-syllable
On 13/11/2021 13:54, Bernhard Kleine wrote:
Hi, I feel lost. The text should go to every note in the example.
However the brackets behave as slurs /ties. This is unexpected. Where
is the error?
Kind regards Bernhard
\version "2.21.1"
\language "deutsch"
\header {
title = "Im Haslachtal"
tagline = "Satz: Bernhard Kleine 2021"
}
\paper {
#(set-paper-size "a4")
}
global = {
\key b \major
\numericTimeSignature
\partial 4
\time 3/4
\autoBeamOff
}
sopranorefrain = \relative c' {
\global
f'8. es16 |
\repeat volta 2 {
d8 [f,] b [d] g, [d'] | es [f,] a4 \breathe g'8. f16 |}
\alternative {
{ es8 [f,] a [c] f, [es'] | es [f,] b4 \breathe f'8. es16 }
{ es8 [f,] a [c] f, [a] | b2 \bar "|." }
}
}
verserefrain = \lyricmode {
Hu -- di -- ri -- a du -- i a -- i ri -- a ho Hu -- di
}
\score {
\new ChoirStaff <<
\new Staff \with {
midiInstrument = "choir aahs"
instrumentName = \markup \center-column { "Sopran" "Alt" }
} <<
\new Voice = "sopranoII" { \voiceOne \sopranorefrain }
>>
\new Lyrics \with {
\override VerticalAxisGroup #'staff-affinity = #CENTER
} \lyricsto "sopranoII" \verserefrain
>>
\layout { }
}