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

2014-06-29 Thread Jacques Menu
Hello Thomas and Knute,

Thanks, Thomas’ solution is exactly what I needed!

JM

Le 28 juin 2014 à 19:41, Thomas Morley thomasmorle...@gmail.com a écrit :

 2014-06-28 18:41 GMT+02:00 Jacques Menu imj-muz...@bluewin.ch:
 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{\italica tempo} ( \ |
 ees,2.\mf \ | bes'2. \ |
 \once\numericTimeSignature\time 4/4
 c2. \! )
 \slurNeutral
 }
 %%
 
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 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
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


How to place markup and crescendo one after the other?

2014-06-28 Thread Jacques Menu
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{\italica tempo} ( \ |
ees,2.\mf \ | bes'2. \ |
\once\numericTimeSignature\time 4/4
c2. \! )
\slurNeutral
}
%%



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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

2014-06-28 Thread Knute Snortum
This was the best I could do.  I couldn't get the Y-offset to move the text.

%
\version 2.18.2

\relative f, {
  \clef bass
  \time 3/4
  \slurUp
  \once\override TextScript.X-offset = #-10
  bes2.-\markup{\italica tempo} ( \ |
  ees,2.\mf \ | bes'2. \ |
  \once\numericTimeSignature\time 4/4
  c2. \! )
  \slurNeutral
}


Knute Snortum
(via Gmail)


On Sat, Jun 28, 2014 at 9:41 AM, Jacques Menu imj-muz...@bluewin.ch wrote:

 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{\italica tempo} ( \ |
 ees,2.\mf \ | bes'2. \ |
 \once\numericTimeSignature\time 4/4
 c2. \! )
 \slurNeutral
 }
 %%



 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 https://lists.gnu.org/mailman/listinfo/lilypond-user

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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

2014-06-28 Thread Thomas Morley
2014-06-28 18:41 GMT+02:00 Jacques Menu imj-muz...@bluewin.ch:
 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{\italica tempo} ( \ |
 ees,2.\mf \ | bes'2. \ |
 \once\numericTimeSignature\time 4/4
 c2. \! )
 \slurNeutral
 }
 %%



 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 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
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user