X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmaking-slurs-with-complex-dash-structure.ly;h=102eab7cb8138bdfbda6f81f04b72f623af2ab21;hb=8a7f57d93480c1ac296623ef1abfda23eb9544ea;hp=b11e07e4c9fdb8f5191735cc3aa69e30ba9fcbdd;hpb=1c859650b6ff11a7dbe829328fd5cae3816b9231;p=lilypond.git diff --git a/Documentation/snippets/making-slurs-with-complex-dash-structure.ly b/Documentation/snippets/making-slurs-with-complex-dash-structure.ly index b11e07e4c9..102eab7cb8 100644 --- a/Documentation/snippets/making-slurs-with-complex-dash-structure.ly +++ b/Documentation/snippets/making-slurs-with-complex-dash-structure.ly @@ -1,10 +1,14 @@ -%% Do not edit this file; it is auto-generated from input/new -%% This file is in the public domain. -%% Note: this file works from version 2.13.1 -\version "2.13.1" +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.14.0 +\version "2.14.0" \header { -%% Translation of GIT committish: da7ce7d651c3a0d1bfed695f6e952975937a1c79 +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c texidoces = " Las ligaduras de expresión se pueden construir con patrones de @@ -32,7 +36,8 @@ de 1 para una ligadura continua. doctitlees = "Hacer ligaduras de expresión con estructura compleja de discontinuidad" -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " Legatobögen können mit einem komplizierten Strichelmuster gesetzt werden, indem die @code{dash-definition}-Eigenschaft @@ -52,6 +57,28 @@ gesetzt. doctitlede = "Legatobögen mit kompliziertem Strichelmuster definieren" +%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e + texidocfr = " +Grâce à la propriété @code{dash-definition}, une liaison d'articulation +peut être formée de traits discontinus variables. +@code{dash-definition} se compose d'une liste de +@code{segments-discontinus} (@emph{dash-elements}). Chaque +@code{segment-discontinu} contient une liste de paramètres qui +déterminent le comportement du trait pour une section de la liaison. + +Cette liaison se définit selon le paramètre de Bézier @code{t} qui est +compris entre 0 (l'extrémité gauche de la liaison) et 1 (l'extrémité +droite de la liaison). Chaque @code{segment-discontinu} se composera +selon la liste @code{(t-début t-fin segment-style segment-taille)}. +La portion de liaison allant de @code{t-début} à @code{t-fin} aura un +trait @code{segment-style} de longueur @code{segment-taille}. +@code{segment-taille} est exprimé en espace de portée ; un +@code{segment-style} à 1 donnera un trait plein. + +" + doctitlefr = "Dessin d'une liaison d'articulation au trait discontinu" + + lsrtags = "rhythms, expressive-marks" texidoc = " Slurs can be made with complex dash patterns by defining @@ -79,10 +106,10 @@ set to 1 for a solid slur. Slur #'dash-definition = #'((0 0.3 0.1 0.75) (0.3 0.6 1 1) (0.65 1.0 0.4 0.75)) - c( d e f) + c4( d e f) \once \override Slur #'dash-definition = #'((0 0.25 1 1) (0.3 0.7 0.4 0.75) (0.75 1.0 1 1)) - c( d e f) + c4( d e f) }