lilypond-user
[Top][All Lists]
Advanced

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

Re: Metronome marks above piano staff of vocal score?


From: Torsten Hämmerle
Subject: Re: Metronome marks above piano staff of vocal score?
Date: Tue, 9 Jul 2019 10:25:41 -0700 (MST)

Steven Smith wrote
> Is there a a way to have the metronome mark created by "\tempo 4=80" 
> appear next to the piano staff as well as above the top staff of a 
> SATB/Piano score? 

Hi Steven,


The metronome marks are being created by the Metronome_mark_engraver. This
engraver, by default, "lives" in the Score context, i.e. the metronome marks
will be displayed just once above the score, not within the stave lines.

The easiest solution to your problem probably is to just include this
engraver in the upper piano stave so that metronome marks will be displayed
there, too:


%%%%%%%%%
\version "2.18.2"

 <<
   \new ChoirStaff <<
     \new Staff { \tempo 4 = 80 R1 }
     \new Staff { \tempo 4 = 80 R1 }
   >>
   \new PianoStaff <<
     \new Staff \with { \consists "Metronome_mark_engraver" } { \tempo 4 =
80 R1 }
     \new Staff { \tempo 4 = 80 R1 }
   >>
 >>
%%%%%%%%%

MetronomeMark_SATB_Piano.png
<http://lilypond.1069038.n5.nabble.com/file/t3887/MetronomeMark_SATB_Piano.png> 
 

By the way, rehearsal marks (created by the Rehearsal_mark_engraver) are a
similar case.

HTH,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html



reply via email to

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