符尾のスタイルを変更する

8 分音符やそれより短い音符の符尾は、Flagstencil プロパティをオーバライドすることで変更できます。有効な値は modern-straight-flag, old-straight-flag, flat-flag です。

testnotes = {
  \autoBeamOff
  c8 d16 c32 d64 \acciaccatura { c8 } d64 r4
}

\score {
  \relative c' {
    \time 2/4
    \testnotes

    \override Flag.stencil = #modern-straight-flag
    \testnotes

    \override Flag.stencil = #old-straight-flag
    \testnotes

    \override Flag.stencil = #flat-flag
    \testnotes

    \revert Flag.stencil
    \testnotes
  }
  \layout {
    indent = 0
    \context {
      \Score
      \override NonMusicalPaperColumn.line-break-permission = ##f
    }
  }
}

[image of music]


LilyPond snippets v2.25.15 (開発版).