]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-a-delayed-turn.ly
LSR: Update.
[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.12.3"
4
5 \header {
6   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
7
8 texidoces = "
9 La creación de un grupeto circular de anticipación entre dos notas,
10 donde la nota inferior del grupeto utiliza una alteración, requiere
11 varias sobreescriturasw de propiedades.  La propiedad
12 @code{outside-staff-priority} se debe establecer al valor #f, pues en
13 caso contrario tendría prioridad sobre la propiedad @code{avoid-slur
14 property}.  El valor de @code{halign} se utiliza para colocar el
15 grupeto horizontalmente.
16
17 "
18
19 doctitlees = "Crear un grupeto de anticipación"
20
21   texidoc = "
22 Creating a delayed turn, where the lower note of the turn uses the
23 accidental, requires several overrides.  The
24 @code{outside-staff-priority} property must be set to @code{#f}, as
25 otherwise this would take precedence over the @code{avoid-slur
26 property}.  The value of @code{halign} is used to position the turn
27 horizontally.
28
29 "
30   doctitle = "Creating a delayed turn"
31 } % begin verbatim
32
33 \relative c'' {
34   \once \override TextScript #'avoid-slur = #'inside
35   \once \override TextScript #'outside-staff-priority = ##f
36   c2(^\markup \tiny \override #'(baseline-skip . 1) {
37     \halign #-4
38     \center-column {
39       \sharp
40       \musicglyph #"scripts.turn"
41     }
42   }
43   d4.) c8
44 }