]> 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
25 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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   texidoc = "
38 Creating a delayed turn, where the lower note of the turn uses the
39 accidental, requires several overrides.  The
40 @code{outside-staff-priority} property must be set to @code{#f}, as
41 otherwise this would take precedence over the @code{avoid-slur
42 property}.  The value of @code{halign} is used to position the turn
43 horizontally.
44
45 "
46   doctitle = "Creating a delayed turn"
47 } % begin verbatim
48
49 \relative c'' {
50   \once \override TextScript #'avoid-slur = #'inside
51   \once \override TextScript #'outside-staff-priority = ##f
52   c2(^\markup \tiny \override #'(baseline-skip . 1) {
53     \halign #-4
54     \center-column {
55       \sharp
56       \musicglyph #"scripts.turn"
57     }
58   }
59   d4.) c8
60 }