]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-a-delayed-turn.ly
5f7eb59fd6cd1253f2191e05966d2b459068e33f
[lilypond.git] / input / lsr / creating-a-delayed-turn.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
7
8 %% Translation of GIT committish: b10de35f895919aec109de6fb1fc84d42ad851b3
9 texidoces = "
10 La creación de un grupeto circular de anticipación entre dos notas,
11 donde la nota inferior del grupeto utiliza una alteración, requiere
12 varias sobreescriturasw de propiedades.  La propiedad
13 @code{outside-staff-priority} se debe establecer al valor #f, pues en
14 caso contrario tendría prioridad sobre la propiedad @code{avoid-slur
15 property}.  El valor de @code{halign} se utiliza para colocar el
16 grupeto horizontalmente.
17
18 "
19
20 doctitlees = "Crear un grupeto de anticipación"
21
22
23 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
24   texidocde = "
25 Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das
26 Vorzeichen benutzt, erfordert einige Einstellungsänderungen.  Die
27 @code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f})
28 gesetzt werden, weil sie sonst über die Eigenschaft
29 @code{avoid-slur property} dominieren würde.  Der Wert von @code{halign}
30 wird benutzt, um den Doppelschlag horizontal zu positionieren.
31 "
32
33   doctitlede = "Einen  Doppelschlag mit Vorhalt erstellen"
34
35   texidoc = "
36 Creating a delayed turn, where the lower note of the turn uses the
37 accidental, requires several overrides.  The
38 @code{outside-staff-priority} property must be set to @code{#f}, as
39 otherwise this would take precedence over the @code{avoid-slur
40 property}.  The value of @code{halign} is used to position the turn
41 horizontally.
42
43 "
44   doctitle = "Creating a delayed turn"
45 } % begin verbatim
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 }