Lilypond:歌词中的上标

Lilypond:歌词中的上标

我想知道如何在 Lilypond 中为歌词添加上标。示例:

我想要得到的例子。

我知道如何做标记,但这不是我想要的。这是关于歌词中的 1 和 2。

先感谢您。

答案1

您可以包含\markup在里面\lyricsmode,这将允许您使用任何 Lilypond 标记,包括下标和上标。

例子

带有歌词的 Lilypond 五线谱。歌词是“一二三四五六七八”,但“四”是上标。“五”后面有一个上标数字 5,“七”后面有一个下标数字 7。

<<
  \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
    }
  }
>>

相关内容