Printing tuplet brackets on the note head side: Difference between revisions

Import snippet from LSR
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Whichever option you choose for controlling the tuplet bracket visibility, it will show or hide the tuplet bracket irrespectively of tuplet bracket placement (stem side or note head side). However, when placing the tuplet bracket on the note head side some authors recommend always printing the tuplet bracket. The option <code>visible-over-note-heads</code> can be used to achieve this.
Whichever option you choose for controlling the tuplet bracket visibility, it will show or hide the tuplet bracket irrespectively of tuplet bracket placement (stem side or note head side). However, when placing the tuplet bracket on the note head side some authors recommend always printing the tuplet bracket. The option <code>visible-over-note-heads</code> can be used to achieve this.


<lilypond version="2.24.0">
<lilypond version="2.24">
music = \relative c'' {
music = \relative c'' {
   \tupletNeutral \tuplet 3/2 { c16[ d e } f8]
   \tupletNeutral \tuplet 3/2 { c16[ d e } f8]
Line 9: Line 9:
\new Voice {
\new Voice {
   \relative c' {
   \relative c' {
    \override TextScript.staff-padding = #2.5
     \time 2/4
     \time 2/4
     \override TupletBracket.visible-over-note-heads = ##t
     \override TupletBracket.visible-over-note-heads = ##t
     \override Score.TextMark.non-musical = ##f
     \override Score.TextMark.non-musical = ##f
     { \textMark \markup "default" \music }
     <>^\markup "default" \music
     \override TupletBracket.bracket-visibility = #'if-no-beam
     \override TupletBracket.bracket-visibility = #'if-no-beam
     { \textMark \markup \typewriter "'if-no-beam" \music }
     <>^\markup \typewriter "if-no-beam" \music
   }
   }
}
}
Line 22: Line 24:
[[Category:Tweaks and overrides]]
[[Category:Tweaks and overrides]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]