X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fredefining-grace-note-global-defaults.ly;h=ae51b3c9a724eb86c17961aa81e569088609a3f8;hb=42cb7d446827dce32a42b5b243bda522518b3d46;hp=02a121e2cc954fd7329d9141478889fc425cef3b;hpb=6019a1e8f0301c1c3bf86ccc92178d820f9c3784;p=lilypond.git diff --git a/Documentation/snippets/redefining-grace-note-global-defaults.ly b/Documentation/snippets/redefining-grace-note-global-defaults.ly index 02a121e2cc..ae51b3c9a7 100644 --- a/Documentation/snippets/redefining-grace-note-global-defaults.ly +++ b/Documentation/snippets/redefining-grace-note-global-defaults.ly @@ -1,52 +1,15 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.13.29" +% 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.17.6 +\version "2.17.6" \header { lsrtags = "rhythms" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - texidoces = " - -Los valores predeterminados para las notas de adorno están -almacenados en los identificadores @code{startGraceMusic}, -@code{stopGraceMusic}, @code{startAcciaccaturaMusic}, -@code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic} y -@code{stopAppoggiaturaMusic}, que están definidos en el archivo -@code{ly/grace-init.ly}. Redefiniéndolos se pueden obtener otros -efectos. - -" - - doctitlees = "Redefinición de los valores globales predeterminados para notas de adorno" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Die globalen Standardeinstellungen für Verzierungsnoten werden in -den Variablen@code{startGraceMusic}, @code{stopGraceMusic}, -@code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic}, -@code{startAppoggiaturaMusic} und @code{stopAppoggiaturaMusic} -gespeichert, die in der Datei @code{ly/grace-init.ly} definiert -sind. Wenn man sie umdefiniert, können andere Effekte erreicht -werden. - -" - doctitlede = "Globale Umdefinition von Verzierungsnoten" - - -%% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b - texidocfr = " -Vous pouvez modifier les valeurs des variables @code{startGraceMusic}, -@code{stopGraceMusic}, @code{startAcciaccaturaMusic}, -@code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic}, et -@code{stopAppoggiaturaMusic} afin d'en personnaliser les effets. Pour -plus de détails, voir le fichier @code{ly/grace-init.ly}. - -" - doctitlefr = "Redéfinition des réglages de mise en forme par défaut des notes d'ornement" - texidoc = " The global defaults for grace notes are stored in the identifiers @code{startGraceMusic}, @code{stopGraceMusic}, @@ -59,19 +22,19 @@ other effects may be obtained. doctitle = "Redefining grace note global defaults" } % begin verbatim + startAcciaccaturaMusic = { - s1*0( - \override Stem #'stroke-style = #"grace" + <>( + \override Flag.stroke-style = #"grace" \slurDashed } stopAcciaccaturaMusic = { - \revert Stem #'stroke-style + \revert Flag.stroke-style \slurSolid - s1*0) + <>) } \relative c'' { \acciaccatura d8 c1 } -