Modifying default values for articulation shorthand notation: Difference between revisions
Appearance
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 |
mNo edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
The shorthands are defined in <code>ly/script-init.ly</code>, where the variables <code>dashHat</code>, <code>dashPlus</code>, <code>dashDash</code>, <code>dashBang</code>, <code>dashLarger</code>, <code>dashDot</code>, and <code>dashUnderscore</code> are assigned default values. The default values for the shorthands can be modified. For example, to associate the <code>-+</code> (<code>dashPlus</code>) shorthand with the ''trill'' symbol instead of the default | The shorthands are defined in <code>ly/script-init.ly</code>, where the variables <code>dashHat</code>, <code>dashPlus</code>, <code>dashDash</code>, <code>dashBang</code>, <code>dashLarger</code>, <code>dashDot</code>, and <code>dashUnderscore</code> are assigned default values. The default values for the shorthands can be modified. For example, to associate the <code>-+</code> (<code>dashPlus</code>) shorthand with the ''trill'' symbol instead of the default “+” symbol, assign the value <code>\trill</code> to the variable <code>dashPlus</code>: | ||
<lilypond version="2.24"> | |||
\relative c'' { c1-+ } | \relative c'' { c1-+ } | ||
| Line 11: | Line 9: | ||
</lilypond> | </lilypond> | ||
[[Category:Expressive marks]] | [[Category:Expressive marks]] | ||
[[Category:Included in the official documentation]] | [[Category:Included in the official documentation]] | ||
[[Category:Snippet]] | |||
Latest revision as of 14:39, 3 December 2025
The shorthands are defined in ly/script-init.ly, where the variables dashHat, dashPlus, dashDash, dashBang, dashLarger, dashDot, and dashUnderscore are assigned default values. The default values for the shorthands can be modified. For example, to associate the -+ (dashPlus) shorthand with the trill symbol instead of the default “+” symbol, assign the value \trill to the variable dashPlus:
\version "2.24"
\relative c'' { c1-+ }
dashPlus = \trill
\relative c'' { c1-+ }