]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-vertical-ordering-of-scripts.ly
Merge branch 'master' into lilypond/translation
[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.64"
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 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
24 texidocde = "
25 Die vertikale Anordnung von Beschriftungen wird mit der
26 @code{'script-priority}-Eigenschaft kontrolliert.  Um so kleiner die
27 Zahl, umso näher wird die Beschriftung in Bezug auf die Note gesetzt.  In
28 diesem Beispiel hat das @code{TextScript}-Objekt (das Kreuz) zuerst
29 die niedrigste Priorität, wird also auch am niedrigsten in dem ersten
30 Beispiel gesetzt.  Im zweiten Fall hat der Praller (das @code{Script}) 
31 die niedrigste Priorität, darum wird er am nächsten zum System gesetzt.
32 Wenn zwei Objekte die gleiche Priorität haben, wird ihre Reihenfolge
33 anhand ihres Auftretens in der Quelldatei entschieden.
34
35 "
36   doctitlede = "Die vertikale Anordnung von Beschriftungen kontrollieren"
37
38   texidoc = "
39 The vertical ordering of scripts is controlled with the
40 @code{'script-priority} property. The lower this number, the closer it
41 will be put to the note. In this example, the @code{TextScript} (the
42 sharp symbol) first has the lowest priority, so it is put lowest in the
43 first example. In the second, the prall trill (the @code{Script}) has
44 the lowest, so it is on the inside. When two objects have the same
45 priority, the order in which they are entered determines which one
46 comes first. 
47
48 "
49   doctitle = "Controlling the vertical ordering of scripts"
50 } % begin verbatim
51
52 \relative c''' {
53   \once \override TextScript #'script-priority = #-100
54   a2^\prall^\markup { \sharp }
55   
56   \once \override Script #'script-priority = #-100
57   a2^\prall^\markup { \sharp }
58 }