]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-vertical-ordering-of-scripts.ly
Merge commit 'origin'
[lilypond.git] / input / lsr / controlling-the-vertical-ordering-of-scripts.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.48"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8   texidoc = "
9 The vertical ordering of scripts is controlled with the
10 @code{script-priority} property. The lower this number, the closer it
11 will be put to the note. In this example, the @code{TextScript} (the
12 sharp symbol) first has the lowest priority, so it is put lowest in the
13 first example. In the second, the prall trill (the @code{Script}) has
14 the lowest, so it is on the inside. When two objects have the same
15 priority, the order in which they are entered determines which one
16 comes first. 
17
18 "
19   doctitle = "Controlling the vertical ordering of scripts"
20 } % begin verbatim
21 \relative c''' {
22   \once \override TextScript #'script-priority = #-100
23   a2^\prall^\markup { \sharp }
24   
25   \once \override Script #'script-priority = #-100
26   a2^\prall^\markup { \sharp }
27 }