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