]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-a-delayed-turn.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / creating-a-delayed-turn.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5
6 \header {
7 %% Translation of GIT committish: 740b9a6c16eb30a84b216d23aeb848aa1b632be6
8 texidoces = "
9 La creación de un grupeto circular de anticipación entre dos notas,
10 donde la nota inferior del grupeto utiliza una alteración, requiere
11 varias sobreescriturasw de propiedades.  La propiedad
12 @code{outside-staff-priority} se debe establecer al valor @code{#f}, pues en
13 caso contrario tendría prioridad sobre la propiedad @code{avoid-slur
14 property}.  El valor de @code{halign} se utiliza para colocar el
15 grupeto horizontalmente.
16
17 "
18
19 doctitlees = "Crear un grupeto de anticipación"
20
21
22 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
23   texidocde = "
24 Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das
25 Vorzeichen benutzt, erfordert einige Einstellungsänderungen.  Die
26 @code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f})
27 gesetzt werden, weil sie sonst über die Eigenschaft
28 @code{avoid-slur property} dominieren würde.  Der Wert von @code{halign}
29 wird benutzt, um den Doppelschlag horizontal zu positionieren.
30 "
31
32   doctitlede = "Einen  Doppelschlag mit Vorhalt erstellen"
33
34   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
35
36   texidoc = "
37 Creating a delayed turn, where the lower note of the
38 turn uses the accidental, requires several overrides.  The
39 @code{outside-staff-priority} property must be set to @code{#f},
40 as otherwise this would take precedence over the
41 @code{avoid-slur property}.  The value of @code{halign} is used
42 to position the turn horizontally."
43
44   doctitle = "Creating a delayed turn"
45 } % begin verbatim
46
47
48 \relative c'' {
49   \once \override TextScript #'avoid-slur = #'inside
50   \once \override TextScript #'outside-staff-priority = ##f
51   c2(^\markup \tiny \override #'(baseline-skip . 1) {
52     \halign #-4
53     \center-column {
54       \sharp
55       \musicglyph #"scripts.turn"
56     }
57   }
58   d4.) c8
59 }