X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-a-delayed-turn.ly;h=0787bc8b0c587655ccc5d78492b2506cd1d22abe;hb=730d4eb3e0328e8ba0b376f8191a5bb6ae7f904c;hp=2865ee93b2038305911c527c50a2a12d385ea64e;hpb=580faff1d6167b1500228dc5c5ae073dca0ead40;p=lilypond.git diff --git a/Documentation/snippets/creating-a-delayed-turn.ly b/Documentation/snippets/creating-a-delayed-turn.ly index 2865ee93b2..0787bc8b0c 100644 --- a/Documentation/snippets/creating-a-delayed-turn.ly +++ b/Documentation/snippets/creating-a-delayed-turn.ly @@ -1,73 +1,44 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% 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.13.39" +\version "2.18.0" \header { - lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides" - -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 -texidoces = " -La creación de un grupeto circular de anticipación entre dos notas, -donde la nota inferior del grupeto utiliza una alteración, requiere -varias sobreescriturasw de propiedades. La propiedad -@code{outside-staff-priority} se debe establecer al valor @code{#f}, pues en -caso contrario tendría prioridad sobre la propiedad @code{avoid-slur -property}. El valor de @code{halign} se utiliza para colocar el -grupeto horizontalmente. - -" - -doctitlees = "Crear un grupeto de anticipación" - - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das -Vorzeichen benutzt, erfordert einige Einstellungsänderungen. Die -@code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f}) -gesetzt werden, weil sie sonst über die Eigenschaft -@code{avoid-slur property} dominieren würde. Der Wert von @code{halign} -wird benutzt, um den Doppelschlag horizontal zu positionieren. -" - - doctitlede = "Einen Doppelschlag mit Vorhalt erstellen" - -%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e - texidocfr = " -Obtenir un @emph{grupetto} retardé et dans lequel la note la plus basse -est altérée requiert quelques surcharges. La propriété -@w{@code{outside-staff-priority}} doît être désactivée (@code{#f}) pour -éviter qu'elle prenne le pas sur la propriété @w{@code{avoid-slur}}. La -valeur assignée à @code{halign} permet de gérer horizonalement le -@w{« retard »}. - -" - - doctitlefr = "Création d'un grupetto retardé" + lsrtags = "editorial-annotations, expressive-marks, tweaks-and-overrides" texidoc = " Creating a delayed turn, where the lower note of the turn uses the accidental, requires several overrides. The @code{outside-staff-priority} property must be set to @code{#f}, as otherwise this would take precedence over the @code{avoid-slur -property}. The value of @code{halign} is used to position the turn -horizontally. +property}. Changing the fractions @code{2/3} and @code{1/3} adjusts +the horizontal position. " doctitle = "Creating a delayed turn" } % begin verbatim \relative c'' { - \once \override TextScript #'avoid-slur = #'inside - \once \override TextScript #'outside-staff-priority = ##f - c2(^\markup \tiny \override #'(baseline-skip . 1) { - \halign #-4 - \center-column { - \sharp - \musicglyph #"scripts.turn" + c2*2/3 ( s2*1/3\turn d4) r + << + { c4.( d8) } + { s4 s\turn } + >> + \transpose c d \relative c'' << + { c4.( d8) } + { + s4 + \once \set suggestAccidentals = ##t + \once \override AccidentalSuggestion.outside-staff-priority = ##f + \once \override AccidentalSuggestion.avoid-slur = #'inside + \once \override AccidentalSuggestion.font-size = -3 + \once \override AccidentalSuggestion.script-priority = -1 + \single \hideNotes + b8-\turn \noBeam + s8 } - } - d4.) c8 + >> }