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