X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmoving-slur-positions-vertically.ly;h=d2b93bb89c6d7ef23bce3d14528f8b37800d268b;hb=d1514c16429c0ee6337e1e396a0752fa234361b9;hp=7fe14ba019df2eff0c046a2672a8f0bc997e1889;hpb=d65a3a9777a9e96029f6aa408d86d13a88f6619d;p=lilypond.git diff --git a/Documentation/snippets/moving-slur-positions-vertically.ly b/Documentation/snippets/moving-slur-positions-vertically.ly index 7fe14ba019..d2b93bb89c 100644 --- a/Documentation/snippets/moving-slur-positions-vertically.ly +++ b/Documentation/snippets/moving-slur-positions-vertically.ly @@ -1,29 +1,14 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.31" +\version "2.17.6" \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - texidoces = " -Se puede ajustar la posición vertical de una ligadura de -expresiónutilizando 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, teniendoo 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 la ligadura 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 @@ -32,29 +17,35 @@ second to the right. The values of the parameters are not used by LilyPond to make an exact movement of the slur - instead it selects what placement of the slur looks best, taking into account the parameter values. Positive values move the slur up, and are -appropriate for notes with stems down. Negative values move the slur -down. +appropriate for notes with stems down. Negative values move downward +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) e4( a) - \override Slur #'positions = #'(2 . 2) + \override Slur.positions = #'(3 . 3) e4( a) - \override Slur #'positions = #'(3 . 3) + \override Slur.positions = #'(4 . 4) e4( a) - \override Slur #'positions = #'(4 . 4) + \override Slur.positions = #'(5 . 5) e4( a) - \override Slur #'positions = #'(5 . 5) + \override Slur.positions = #'(0 . 5) e4( a) - \override Slur #'positions = #'(0 . 5) + \override Slur.positions = #'(5 . 0) e4( a) - \override Slur #'positions = #'(5 . 0) + \stemUp + \override Slur.positions = #'(-5 . -5) + e4( a) + \stemDown + \revert Slur.positions e4( a) } -