]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-vertical-ordering-of-scripts.ly
9a4a5d1baca66de1351394da93523429d19efe4b
[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.13.1"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8 %% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
9   texidoces = "
10 El orden vertical que ocupan las inscripciones gráficas está
11 controlado con la propiedad @code{script-priority}. Cuanto más
12 bajo es este número, más cerca de la nota se colocará. En este
13 ejemplo, el @code{TextScript} (el sostenido) tiene primero la
14 prioridad más baja, por lo que se sitúa en la posición más baja en
15 el primer ejemplo. En el segundo, el semitrino (el @code{Script})
16 es el que la tiene más baja, por lo que se sitúa en la parte
17 interior. Cuando dos objetos tienen la misma prioridad, el orden
18 en que se introducen determina cuál será el que aparece en primer
19 lugar.
20
21 "
22   doctitlees = "Controlar la ordenación vertical de las inscripciones"
23   
24 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
25 texidocde = "
26 Die vertikale Anordnung von Beschriftungen wird mit der
27 @code{'script-priority}-Eigenschaft kontrolliert.  Um so kleiner die
28 Zahl, umso näher wird die Beschriftung in Bezug auf die Note gesetzt.  In
29 diesem Beispiel hat das @code{TextScript}-Objekt (das Kreuz) zuerst
30 die niedrigste Priorität, wird also auch am niedrigsten in dem ersten
31 Beispiel gesetzt.  Im zweiten Fall hat der Praller (das @code{Script}) 
32 die niedrigste Priorität, darum wird er am nächsten zum System gesetzt.
33 Wenn zwei Objekte die gleiche Priorität haben, wird ihre Reihenfolge
34 anhand ihres Auftretens in der Quelldatei entschieden.
35
36 "
37   doctitlede = "Die vertikale Anordnung von Beschriftungen kontrollieren"
38
39   texidoc = "
40 The vertical ordering of scripts is controlled with the
41 @code{'script-priority} property. The lower this number, the closer it
42 will be put to the note. In this example, the @code{TextScript} (the
43 sharp symbol) first has the lowest priority, so it is put lowest in the
44 first example. In the second, the prall trill (the @code{Script}) has
45 the lowest, so it is on the inside. When two objects have the same
46 priority, the order in which they are entered determines which one
47 comes first. 
48
49 "
50   doctitle = "Controlling the vertical ordering of scripts"
51 } % begin verbatim
52
53 \relative c''' {
54   \once \override TextScript #'script-priority = #-100
55   a2^\prall^\markup { \sharp }
56   
57   \once \override Script #'script-priority = #-100
58   a2^\prall^\markup { \sharp }
59 }
60