]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-vertical-ordering-of-scripts.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8   texidoces = "
9 El orden vertical que ocupan las inscripciones gráficas está
10 controlado con la propiedad @code{script-priority}. Cuanto más
11 bajo es este número, más cerca de la nota se colocará. En este
12 ejemplo, el @code{TextScript} (el sostenido) tiene primero la
13 prioridad más baja, por lo que se sitúa en la posición más baja en
14 el primer ejemplo. En el segundo, el semitrino (el @code{Script})
15 es el que la tiene más baja, por lo que se sitúa en la parte
16 interior. Cuando dos objetos tienen la misma prioridad, el orden
17 en que se introducen determina cuál será el que aparece en primer
18 lugar.
19
20 "
21   doctitlees = "Controlar la ordenación vertical de las inscripciones"
22
23   texidoc = "
24 The vertical ordering of scripts is controlled with the
25 @code{script-priority} property. The lower this number, the closer it
26 will be put to the note. In this example, the @code{TextScript} (the
27 sharp symbol) first has the lowest priority, so it is put lowest in the
28 first example. In the second, the prall trill (the @code{Script}) has
29 the lowest, so it is on the inside. When two objects have the same
30 priority, the order in which they are entered determines which one
31 comes first. 
32
33 "
34   doctitle = "Controlling the vertical ordering of scripts"
35 } % begin verbatim
36 \relative c''' {
37   \once \override TextScript #'script-priority = #-100
38   a2^\prall^\markup { \sharp }
39   
40   \once \override Script #'script-priority = #-100
41   a2^\prall^\markup { \sharp }
42 }