X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcenter-text-below-hairpin-dynamics.ly;h=40810e6a19be23526a16ef04096f9dc4177a076a;hb=18d03fa6a724b0102ccc47d194209802cea02f2e;hp=4f2eb369260787696decd0d6ee9f53c3e4c1ea79;hpb=26a079ca2393d053315ef8dbef626c897dc9645a;p=lilypond.git diff --git a/Documentation/snippets/center-text-below-hairpin-dynamics.ly b/Documentation/snippets/center-text-below-hairpin-dynamics.ly index 4f2eb36926..40810e6a19 100644 --- a/Documentation/snippets/center-text-below-hairpin-dynamics.ly +++ b/Documentation/snippets/center-text-below-hairpin-dynamics.ly @@ -1,10 +1,10 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% 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.16.0" +\version "2.19.22" \header { lsrtags = "expressive-marks, really-cool, scheme-language, text" @@ -12,6 +12,9 @@ texidoc = " This example provides a function to typeset a hairpin (de)crescendo with some additional text below it, such as @qq{molto} or @qq{poco}. +The added text will change the direction according to the direction of +the hairpin. The Hairpin is aligned to DynamicText. + The example also illustrates how to modify the way an object is normally printed, using some Scheme code. @@ -19,21 +22,50 @@ normally printed, using some Scheme code. doctitle = "Center text below hairpin dynamics" } % begin verbatim - hairpinWithCenteredText = -#(define-music-function (parser location text) (markup?) -#{ - \override Voice.Hairpin #'stencil = #(lambda (grob) - (ly:stencil-aligned-to - (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)) - X LEFT)) -#}) - -hairpinMolto = \hairpinWithCenteredText \markup { \italic molto } -hairpinMore = \hairpinWithCenteredText \markup { \larger moltissimo } +#(define-music-function (text) (markup?) + #{ + \once \override Voice.Hairpin.after-line-breaking = + #(lambda (grob) + (let* ((stencil (ly:hairpin::print grob)) + (par-y (ly:grob-parent grob Y)) + (dir (ly:grob-property par-y 'direction)) + (new-stencil (ly:stencil-aligned-to + (ly:stencil-combine-at-edge + (ly:stencil-aligned-to stencil X CENTER) + Y dir + (ly:stencil-aligned-to + (grob-interpret-markup grob text) X CENTER)) + X LEFT)) + (staff-space (ly:output-def-lookup + (ly:grob-layout grob) 'staff-space)) + (staff-line-thickness + (ly:output-def-lookup (ly:grob-layout grob) 'line-thickness)) + (par-x (ly:grob-parent grob X)) + (dyn-text (grob::has-interface par-x 'dynamic-text-interface)) + (dyn-text-stencil-x-length + (if dyn-text + (interval-length + (ly:stencil-extent (ly:grob-property par-x 'stencil) X)) + 0)) + (x-shift + (if dyn-text + (- + (+ staff-space dyn-text-stencil-x-length) + (* 0.5 staff-line-thickness)) 0))) + + (ly:grob-set-property! grob 'Y-offset 0) + (ly:grob-set-property! grob 'stencil + (ly:stencil-translate-axis + new-stencil + x-shift X)))) + #}) + +hairpinMolto = +\hairpinWithCenteredText \markup { \italic molto } + +hairpinMore = +\hairpinWithCenteredText \markup { \larger moltissimo } \layout { ragged-right = ##f } @@ -41,5 +73,10 @@ hairpinMore = \hairpinWithCenteredText \markup { \larger moltissimo } \hairpinMolto c2\< c\f \hairpinMore - c2\< c\f + c2\ppppp\< c\f + \break + \hairpinMolto + c2^\< c\f + \hairpinMore + c2\ppppp\< c\f }