> On Nov 9, 2014, at 7:19 PM, Noeck <noeck.marb...@gmx.de> wrote:
> 
> Hi,
> 
> I would like to specify a different tempo for the pdf and the midi
> output. I’ve read
> http://www.lilypond.org/doc/v2.18/Documentation/notation/displaying-rhythms.html#metronome-marks
> 
> But I found only how to specify it for both, or for one of them. What I
> want is like:
> \tempo "Allegro" 4 = 100
> which should show up as »Allegro«
> and the midi should be played as with 100 bpm.
> 
> I tried
> 
> \version "2.18.2"
> {
>  \tempo "Allegro"
>  \once \set Score.tempoHideNote = ##t
>  \tempo 4 = 100
>  a
> }


% sets different visual and midi tempo indications
\version "2.18.2"
{
 \tempo "Allegro"
 \once \set Score.tempoHideNote = ##t
 \set Score.tempoWholesPerMinute = #(ly:make-moment 100 4 0 0)
 a      
}

%Cheers,
%MS
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to