lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Dynamic next to espressivo


From: Saul Tobin
Subject: Re: Dynamic next to espressivo
Date: Wed, 23 Jan 2019 22:16:44 -0800

Below is the snippet I use for dynamics with expressive text. I believe I've posted it to the mailing list before, a few years ago maybe.

\version "2.18.2"

dynText = #(define-event-function (parser location dyn expr) (markup? markup?)
             (let* (
                     (mark #{ \markup { \dynamic $dyn \normal-text\italic $expr } #})
                     (offset (lambda (grob)
                               (let* (
                                       (layout (ly:grob-layout grob))
                                       (props (ly:grob-alist-chain grob
                                                (ly:output-def-lookup layout 'text-font-defaults)))
                                       (dyn-X-extent
                                        (ly:stencil-extent
                                         (ly:text-interface::interpret-markup layout props dyn)
                                         X))
                                       (width (abs
                                               (- (cdr dyn-X-extent) (car dyn-X-extent))))
                                       )
                                 (- 1 (/ width 2))
                                 )
                               )
                       )
                     )
               #{
                 \tweak DynamicText.X-offset #offset
                 #(make-dynamic-script mark) 
               #}
               )
             )

%% Example

% \paper {
%   ragged-right = ##f
%   indent = 0\cm
% }
% \new Staff \with {
%   \omit TimeSignature
% } \relative c' {
%   c1\dynText "p" "sub."
%   c1\dynText "fff" "espressivo"
%   c1\dynText "p" "espressivo"
%   c1\dynText "fffff" "sub."
%   \break
%   c1\p
%   c1\fff
%   c1\p
%   c1\fffff
% }

On Wed, Jan 23, 2019 at 4:17 AM Andrew Bernard <address@hidden> wrote:
Hi All,

Now that we have a great espressivoII function, I want to put a dynamic next to the espressivo, on the left, at the same level. How do we do this?

This is not specific to expressivo - how does one line up a dynamic and a script on the same horizontal level and snugged up to each other?

\version "2.19.82"
{
  c''4_\p_\espressivo
}

Andrew

_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user

reply via email to

[Prev in Thread] Current Thread [Next in Thread]