Lilypond功能;为音符添加节奏

时间:2015-06-19 22:55:46

标签: function lilypond

你怎么能写一个Lilypond函数,它接受一个音符并输出一个带有节奏的音符?说: 输入:c' 输出:c'8 c'16 c'

1 个答案:

答案 0 :(得分:4)

LilyPond documentation中,您可以找到以下示例:

rhythm =
#(define-music-function (parser location p) (ly:pitch?)
   "Make the rhythm in Mars (the Planets) at the given pitch"
  #{ \tuplet 3/2 { $p 8 $p $p } $p 4 $p $p 8 $p $p 4 #})

\new Staff {
  \time 5/4
  \rhythm c'
  \rhythm c''
  \rhythm g
}

enter image description here

希望可以适应你想做的事情!用你自己的火星节奏取代火星节奏。请注意,变量$p和持续时间之间需要一个空格。