]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-a-delayed-turn.ly
60988fd13365eb9ed0a5b3a1492e7d0d5d05f3f7
[lilypond.git] / Documentation / snippets / creating-a-delayed-turn.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.12.2"
8
9 \header {
10   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13 texidoces = "
14 La creación de un grupeto circular de anticipación entre dos notas,
15 donde la nota inferior del grupeto utiliza una alteración, requiere
16 varias sobreescriturasw de propiedades.  La propiedad
17 @code{outside-staff-priority} se debe establecer al valor @code{#f}, pues en
18 caso contrario tendría prioridad sobre la propiedad @code{avoid-slur
19 property}.  El valor de @code{halign} se utiliza para colocar el
20 grupeto horizontalmente.
21
22 "
23
24 doctitlees = "Crear un grupeto de anticipación"
25
26
27
28 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
29   texidocde = "
30 Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das
31 Vorzeichen benutzt, erfordert einige Einstellungsänderungen.  Die
32 @code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f})
33 gesetzt werden, weil sie sonst über die Eigenschaft
34 @code{avoid-slur property} dominieren würde.  Der Wert von @code{halign}
35 wird benutzt, um den Doppelschlag horizontal zu positionieren.
36 "
37
38   doctitlede = "Einen  Doppelschlag mit Vorhalt erstellen"
39
40 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
41   texidocfr = "
42 Obtenir un @emph{grupetto} retardé et dans lequel la note la plus basse
43 est altérée requiert quelques surcharges.  La propriété
44 @w{@code{outside-staff-priority}} doît être désactivée (@code{#f}) pour
45 éviter qu'elle prenne le pas sur la propriété @w{@code{avoid-slur}}.  La
46 valeur assignée à @code{halign} permet de gérer horizonalement le
47 @w{« retard »}.
48
49 "
50
51   doctitlefr = "Création d'un grupetto retardé"
52
53   texidoc = "
54 Creating a delayed turn, where the lower note of the turn uses the
55 accidental, requires several overrides.  The
56 @code{outside-staff-priority} property must be set to @code{#f}, as
57 otherwise this would take precedence over the @code{avoid-slur
58 property}.  The value of @code{halign} is used to position the turn
59 horizontally.
60
61 "
62   doctitle = "Creating a delayed turn"
63 } % begin verbatim
64
65 \relative c'' {
66   \once \override TextScript #'avoid-slur = #'inside
67   \once \override TextScript #'outside-staff-priority = ##f
68   c2(^\markup \tiny \override #'(baseline-skip . 1) {
69     \halign #-4
70     \center-column {
71       \sharp
72       \musicglyph #"scripts.turn"
73     }
74   }
75   d4.) c8
76 }