A dinamikát egy külön Dynamics contextbe írd, amit a két kottasor közé teszel, pl.:
\version "2.20.0"
sop = \relative c'' {
c4 d e f
}
alto = \relative c' {
a4 b c d
}
sopLyrics = \lyricmode {
La la la la
}
altoLyrics = \lyricmode {
Do re mi fa
}
\score {
<<
\new Staff = "sopStaff" <<
\new Voice = "sopVoice" { \voiceOne \sop }
>>
\new Lyrics = "sopLyrics" \with {
alignBelowContext = "sopStaff"
} \lyricsto "sopVoice" \sopLyrics
\new Dynamics = "middleDynamics" {
s4\f s s\p s
}
\new Staff = "altoStaff" <<
\new Voice = "altoVoice" { \voiceTwo \alto }
>>
\new Lyrics = "altoLyrics" \with {
alignAboveContext = "altoStaff"
} \lyricsto "altoVoice" \altoLyrics
>>
}