]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/center-text-below-hairpin-dynamics.ly
Release: update news.
[lilypond.git] / Documentation / snippets / center-text-below-hairpin-dynamics.ly
index dda530f46fe9c9637c26b34e55998af081a5cf21..5df30566407927c65092681c098b868795f0394f 100644 (file)
@@ -1,12 +1,15 @@
-%% Do not edit this file; it is automatically
+%% 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.13.10"
+\version "2.15.32"
 
 \header {
-  lsrtags = "expressive-marks, text"
+  lsrtags = "text, really-cool, expressive-marks, scheme-language"
 
-%% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
+%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
   texidoces = "
 Este ejemplo proporciona una funciĆ³n para tipografiar un regulador con
 texto por debajo, como @qq{molto} o @qq{poco}. El ejemplo ilustra
@@ -26,6 +29,7 @@ normally printed, using some Scheme code.
   doctitle = "Center text below hairpin dynamics"
 } % begin verbatim
 
+
 hairpinWithCenteredText =
 #(define-music-function (parser location text) (markup?)
 #{
@@ -34,7 +38,7 @@ hairpinWithCenteredText =
      (ly:stencil-combine-at-edge
       (ly:stencil-aligned-to (ly:hairpin::print grob) X CENTER)
       Y DOWN
-      (ly:stencil-aligned-to (grob-interpret-markup grob $text) X CENTER))
+      (ly:stencil-aligned-to (grob-interpret-markup grob text) X CENTER))
      X LEFT))
 #})