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