最後にリハーサル記号を配置した際に連符が削除されないようにする
楽譜の最後に \mark
を追加すると、最後にある連符が表示されません。これは TupletBracket.full-length-to-extent
を #f
にすることで対処できます。
% due to issue 2362 a long mark such as
% \textEndMark "Composed Feb 2007 - Feb 2008"
% cannot be used here.
\paper { = ##f }
\new Staff {
\set tupletFullLength = ##t
\time 1/8
\tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
\tweak direction #DOWN \textEndMark "1234"
}
\new Staff {
\set tupletFullLength = ##t
\override TupletBracket.full-length-to-extent = ##f
\time 1/8
\tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
\tweak direction #DOWN \textEndMark "1234"
}