Hello Thomas and Knute, Thanks, Thomas’ solution is exactly what I needed!
JM Le 28 juin 2014 à 19:41, Thomas Morley <[email protected]> a écrit : > 2014-06-28 18:41 GMT+02:00 Jacques Menu <[email protected]>: >> 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 >> [email protected] >> 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 _______________________________________________ lilypond-user mailing list [email protected] https://lists.gnu.org/mailman/listinfo/lilypond-user
