lilypond-user
[Top][All Lists]
Advanced

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

Re: How to place markup and crescendo one after the other?


From: Thomas Morley
Subject: Re: How to place markup and crescendo one after the other?
Date: Sat, 28 Jun 2014 19:41:11 +0200

2014-06-28 18:41 GMT+02:00 Jacques Menu <address@hidden>:
> Hello folks,
>
> I’d like to have « a tempo » and then the cresc sign, instead of them stacked 
> vertically.
>
> Sure it’s simple, but can’t find out…
>
> Thanks for your help!
>
> JM
>
> %%%%%%%%%%
> \version "2.18.2"
>
> \relative f, {
> \clef "bass"
> \time 3/4
> \slurUp
> bes2.-\markup{\italic"a tempo"} ( \< |
> ees,2.\mf \> | bes'2. \< |
> \once\numericTimeSignature\time 4/4
> c2. \! )
> \slurNeutral
> }
> %%%%%%%%%%
>
>
>
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user

Hi,

how about:

\version "2.18.2"

atempo = #(make-dynamic-script (markup #:normal-text #:italic "atempo"))

\relative f, {
  \clef "bass"
  \time 3/4
  \slurUp
  %% To avoid too short Hairpin:
  \once \override Hairpin.minimum-length = 12  %% adjust the value
  %% Optional:
  %\once \override DynamicText.self-alignment-X = #-0.5 %% adjust the value
  bes2.(\atempo \< |
  ees,2.\mf \> |
  bes'2. \< |
  \once\numericTimeSignature\time 4/4
  c2. \! )
  \slurNeutral
}

Cheers,
  Harm



reply via email to

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