Inserting a caesura: Difference between revisions
Appearance
Import snippet from LSR |
mNo edit summary |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
Caesura marks can be created by overriding the <code> | Caesura marks can be created by overriding the <code>text</code> property of the <code>BreathingSign</code> object. | ||
A curved caesura mark is also available. | A curved caesura mark is also available. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
\relative c'' { | \relative c'' { | ||
\override BreathingSign.text = \markup { | \override BreathingSign.text = \markup { | ||
| Line 20: | Line 20: | ||
[[Category:Tweaks and overrides]] | [[Category:Tweaks and overrides]] | ||
[[Category:Included in the official documentation]] | [[Category:Included in the official documentation]] | ||
[[Category:Snippet]] | |||
Latest revision as of 14:34, 3 December 2025
Caesura marks can be created by overriding the text property of the BreathingSign object.
A curved caesura mark is also available.
\version "2.24"
\relative c'' {
\override BreathingSign.text = \markup {
\musicglyph "scripts.caesura.straight"
}
c8 e4. \breathe g8. e16 c4
\override BreathingSign.text = \markup {
\musicglyph "scripts.caesura.curved"
}
g8 e'4. \breathe g8. e16 c4
}