X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmoving-slur-positions-vertically.ly;h=efee38d8904bac0a5973ba941e5e8410b1391171;hb=730d4eb3e0328e8ba0b376f8191a5bb6ae7f904c;hp=27a2490e1c807def9f8f06223fbf09271e9d86d4;hpb=4cadb44485b704de34192cfdd9ed9fbb4dfa0dee;p=lilypond.git diff --git a/Documentation/snippets/moving-slur-positions-vertically.ly b/Documentation/snippets/moving-slur-positions-vertically.ly index 27a2490e1c..efee38d890 100644 --- a/Documentation/snippets/moving-slur-positions-vertically.ly +++ b/Documentation/snippets/moving-slur-positions-vertically.ly @@ -1,33 +1,14 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% generated from LSR http://lsr.di.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.14.0" +\version "2.18.0" \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb - 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 @@ -46,25 +27,24 @@ slurs further down. \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) } -