X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmoving-slur-positions-vertically.ly;h=4bae79c00f958731397fddd74aaa08cff21e5c26;hb=85d4958c021936c64b6ef9d514a6a2b0d269cc58;hp=741760cb3e3074a44e68cc79118e2322105f801d;hpb=c75e554c93a26d28bf58fb41a5cfbaf13eec115d;p=lilypond.git diff --git a/Documentation/snippets/moving-slur-positions-vertically.ly b/Documentation/snippets/moving-slur-positions-vertically.ly index 741760cb3e..4bae79c00f 100644 --- a/Documentation/snippets/moving-slur-positions-vertically.ly +++ b/Documentation/snippets/moving-slur-positions-vertically.ly @@ -4,30 +4,11 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.12.2" +\version "2.17.11" \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d - texidoces = " -Se puede ajustar la posición vertical de una ligadura de -expresión utilizando la propiedad @code{positions} del objeto -@code{Slur}. La propiedad tiene dos parámetros, refiriéndose el -primero al extremo izquierdo de la ligadura y el segundo al derecho. -Los valores de los parámetros no se utilizan por parte de LilyPond -para producir un desplazamiento exacto de la ligadura: más bien -selecciona la colocación que mejor aspecto tiene, teniendo en cuenta -los valores de los parámetros. Los valores positivos desplazan la -ligadura hacia arriba, y son adecuados a notas que tienen las plicas -hacia abajo. Los valores negativos desplazan las ligaduras bajas aún -más hacia abajo. - -" - doctitlees = "Desplazar ligaduras de expresión verticalmente" - - - texidoc = " The vertical position of a slur can be adjusted using the @code{positions} property of @code{Slur}. The property has 2 @@ -43,28 +24,28 @@ slurs further down. doctitle = "Moving slur positions vertically" } % begin verbatim + \relative c' { \stemDown e4( a) - \override Slur #'positions = #'(1 . 1) + \override Slur.positions = #'(1 . 1) e4( a) - \override Slur #'positions = #'(2 . 2) + \override Slur.positions = #'(2 . 2) e4( a) - \override Slur #'positions = #'(3 . 3) + \override Slur.positions = #'(3 . 3) e4( a) - \override Slur #'positions = #'(4 . 4) + \override Slur.positions = #'(4 . 4) e4( a) - \override Slur #'positions = #'(5 . 5) + \override Slur.positions = #'(5 . 5) e4( a) - \override Slur #'positions = #'(0 . 5) + \override Slur.positions = #'(0 . 5) e4( a) - \override Slur #'positions = #'(5 . 0) + \override Slur.positions = #'(5 . 0) e4( a) \stemUp - \override Slur #'positions = #'(-5 . -5) + \override Slur.positions = #'(-5 . -5) e4( a) \stemDown - \revert Slur #'positions + \revert Slur.positions e4( a) } -