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