Controlling the vertical ordering of scripts: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series Tags: Mobile edit Mobile web edit |
||
| Line 1: | Line 1: | ||
The vertical ordering of scripts is controlled with the <code>'script-priority</code> property. The lower this number, the closer it will be put to the note. In this example, the <code>TextScript</code> (the ''sharp'' symbol) first has the lowest priority, so it is put lowest in the first example. In the second, the ''prall trill'' (the <code>Script</code>) has the lowest, so it is on the inside. When two objects have the same priority, the order in which they are entered determines which one comes first. | The vertical ordering of scripts is controlled with the <code>'script-priority</code> property. The lower this number, the closer it will be put to the note. In this example, the <code>TextScript</code> (the ''sharp'' symbol) first has the lowest priority, so it is put lowest in the first example. In the second, the ''prall trill'' (the <code>Script</code>) has the lowest, so it is on the inside. When two objects have the same priority, the order in which they are entered determines which one comes first. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
\relative c''' { | \relative c''' { | ||
\once \override TextScript.script-priority = -100 | \once \override TextScript.script-priority = -100 | ||
Revision as of 18:44, 16 November 2025
The vertical ordering of scripts is controlled with the 'script-priority property. The lower this number, the closer it will be put to the note. In this example, the TextScript (the sharp symbol) first has the lowest priority, so it is put lowest in the first example. In the second, the prall trill (the Script) has the lowest, so it is on the inside. When two objects have the same priority, the order in which they are entered determines which one comes first.
\version "2.24"
\relative c''' {
\once \override TextScript.script-priority = -100
a2^\prall^\markup { \sharp }
\once \override Script.script-priority = -100
a2^\prall^\markup { \sharp }
}