Le 21/05/2021 à 21:15, Bernhard Kleine a écrit :
The dynamic line ist above the text (snippet) for the soprano. I would like to see it below the text, but on top of the staff that the "Mädel gib acht" is on top. I hope this is better phrased. KR Bernhard
I see. How about this? \version "2.23.3" \version "2.20.0" \language "deutsch" \header { title = "Ländler" tagline = "Bernhard Kleine 2021" } \paper { #(set-paper-size "a4") } global = { \key d \major \numericTimeSignature \time 3/4 } soprano = \relative c'' { \global % Die Noten folgen hier. d4^\rfz^- fis,8 ([g]) fis ([g])| h4^^ a^. a^. | d^. d,8 ([e]) d ([e]) | g4^^ fis^. fis^. } dynamicI = { %1 s8\mf s8\< s4. s8\! | s4 s4\> s8 s \! | s4\f s4\< s8 s\! | s4 s4\> s8 s\! | s8^"cresc. poco a poco"\< s s4 s8. s16\! s2. } sopranoVoice = \relative c' { \global \dynamicUp % Die Noten folgen hier. s2. s2. s2. s2. h4^.^^ d^. e^. | fis2^- r4 | } alto = \relative c' { \global % Die Noten folgen hier. fis4 d8 ([e]) d ([e]) | g4 fis fis | <d fis>4 h h| e d d | h r r ais_._^ h_.\< cis_.\! } tenor = \relative c' { \global % Die Noten folgen hier. a4 a a | d d d |fis, fis8 ([g]) fis ([g]) | h4 h h8 ([a])| g4 r r| cis,4. fis8 fis4 | } bass = \relative c { \global % Die Noten folgen hier. d4 d d | d d d8 ([cis]) | h4 h h | h h' h| R2. | fis,4 gis ais | } altoVerseOne = \lyricmode { \set stanza = "1." % Liedtext folgt hier. Mä -- del, der Lenz ist da, Mä -- del der Lenz ist da, la Mä -- del, gib acht! } verseSopranoVoiceOne = \lyricmode { % Liedtext folgt hier. Mä -- del gib acht! } choirPartI = \new ChoirStaff << \new Dynamics = "page1" \with { alignAboveContext = "sopranolyrics" } \new Staff = "sa" \with { instrumentName = \markup \center-column { "Sopran" "Alt" } } << \dynamicI \new Voice = "soprano" { \voiceOne \soprano } \new Voice = "ssoprano" { \voiceOne \sopranoVoice } \new Voice = "alto" { \voiceTwo \alto } >> \new Lyrics \lyricsto "alto" \altoVerseOne \new Lyrics = "sopranolyrics" \with { alignAboveContext = "sa" } \lyricsto "ssoprano" \verseSopranoVoiceOne \new Staff = "tb" \with { instrumentName = \markup \center-column { "Tenor" "Bass" } } << \clef bass \new Voice = "tenor" { \voiceOne \tenor } \new Voice = "bass" { \voiceTwo \bass } >> >> \score { \choirPartI \layout { } } Best, Jean