]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-a-delayed-turn.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26   texidocde = "
27 Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das
28 Vorzeichen benutzt, erfordert einige Einstellungsänderungen.  Die
29 @code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f})
30 gesetzt werden, weil sie sonst über die Eigenschaft
31 @code{avoid-slur property} dominieren würde.  Der Wert von @code{halign}
32 wird benutzt, um den Doppelschlag horizontal zu positionieren.
33 "
34
35   doctitlede = "Einen  Doppelschlag mit Vorhalt erstellen"
36
37 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
38   texidocfr = "
39 Obtenir un @emph{grupetto} retardé et dans lequel la note la plus basse
40 est altérée requiert quelques surcharges.  La propriété
41 @w{@code{outside-staff-priority}} doît être désactivée (@code{#f}) pour
42 éviter qu'elle prenne le pas sur la propriété @w{@code{avoid-slur}}.  La
43 valeur assignée à @code{halign} permet de gérer horizonalement le
44 @w{« retard »}.
45
46 "
47
48   doctitlefr = "Création d'un grupetto retardé"
49
50   texidoc = "
51 Creating a delayed turn, where the lower note of the turn uses the
52 accidental, requires several overrides.  The
53 @code{outside-staff-priority} property must be set to @code{#f}, as
54 otherwise this would take precedence over the @code{avoid-slur
55 property}.  The value of @code{halign} is used to position the turn
56 horizontally.
57
58 "
59   doctitle = "Creating a delayed turn"
60 } % begin verbatim
61
62 \relative c'' {
63   \once \override TextScript #'avoid-slur = #'inside
64   \once \override TextScript #'outside-staff-priority = ##f
65   c2(^\markup \tiny \override #'(baseline-skip . 1) {
66     \halign #-4
67     \center-column {
68       \sharp
69       \musicglyph #"scripts.turn"
70     }
71   }
72   d4.) c8
73 }