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: Jacques Menu
Subject: Re: How to place markup and crescendo one after the other?
Date: Sun, 29 Jun 2014 17:03:35 +0200

Hello Thomas and Knute,

Thanks, Thomas’ solution is exactly what I needed!

JM

Le 28 juin 2014 à 19:41, Thomas Morley <address@hidden> a écrit :

> 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]