您可以包含\markup
在里面\lyricsmode
,这将允许您使用任何 Lilypond 标记,包括下标和上标。
例子
<<
\new Voice = "myVoice" \relative c' {
c4 d e f g a b c
}
\new Lyrics \lyricsto "myVoice" {
\lyricmode {
One
Two
Three
\markup{\super Four}
\markup{\concat{Five\super 5}}
Six
\markup{\concat{Seven\sub 7}}
Eight
}
}
>>