]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/redefining-grace-note-global-defaults.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / redefining-grace-note-global-defaults.ly
index 1cb4ceb3363b46ae4dfd182556167cbb13a6fff5..c8507a43eb4c8af7247dbf53c5bd79fc68061abf 100644 (file)
@@ -1,57 +1,15 @@
-%% 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.14.0"
+% 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.15.15
+\version "2.16.0"
 
 \header {
   lsrtags = "rhythms"
 
-%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
-  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
-@file{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 @file{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 @file{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},
@@ -64,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
 }
-