Controlling spanner visibility after a line break: Difference between revisions
Appearance
m New category Tags: Mobile edit Mobile web edit |
mNo edit summary |
||
| Line 5: | Line 5: | ||
Conversely, spanners which are usually visible, such as text spans, can be hidden by enabling the callback. | Conversely, spanners which are usually visible, such as text spans, can be hidden by enabling the callback. | ||
<lilypond version="2.24" | <lilypond version="2.24"> | ||
\paper { | \paper { | ||
ragged-right = ##t | ragged-right = ##t | ||
} | } | ||
Revision as of 13:45, 3 December 2025
The visibility of spanners which end on the first note following a line break is controlled by the after-line-breaking callback ly:spanner::kill-zero-spanned-time.
For objects such as glissandos and hairpins, the default behaviour is to hide the spanner after a break; disabling the callback will allow the left-broken span to be shown.
Conversely, spanners which are usually visible, such as text spans, can be hidden by enabling the callback.
\version "2.24"
\paper {
ragged-right = ##t
}
\relative c'' {
\override Hairpin.to-barline = ##f
\override Glissando.breakable = ##t
% show hairpin
\override Hairpin.after-line-breaking = ##t
% hide text span
\override TextSpanner.after-line-breaking =
#ly:spanner::kill-zero-spanned-time
e2\<\startTextSpan
% show glissando
\override Glissando.after-line-breaking = ##t
f2\glissando
\break
f,1\!\stopTextSpan
}