lilypond-user
[Top][All Lists]
Advanced

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

Re: Misaligned tempo indications


From: Carl Sorensen
Subject: Re: Misaligned tempo indications
Date: Thu, 18 Jun 2020 16:37:20 +0000
User-agent: Microsoft-MacOutlook/10.10.16.200509

Change

 

\new Voice = “vocals”

 

To

 

\new Staff = “vocals”

 

 

The Voice exists inside a Staff.

 

Your metronome mark in the vocals was aligned with the beginning of the Voice, not the beginning of the Staff.

 

Your metronome mark in the PianoStaff aligned with the beginning of the Staff.

 

HTH,

 

Carl

 

 

From: Peter Toye <lilypond@ptoye.com>
Reply-To: Peter Toye <lilypond@ptoye.com>
Date: Thursday, June 18, 2020 at 9:29 AM
To: <lilypond-user@gnu.org>
Subject: Misaligned tempo indications

 

\version "2.20.0"

\language "english"

\score {
  <<
    \new Voice = "vocals"
    \with {
      \consists "Metronome_mark_engraver"
    }
    {
      \clef "treble"
      \tempo "Andante"
      %
      \relative
      { c'4 c d d }
    }

    \new PianoStaff {
      <<
        \new Staff
        \with {
          \consists "Metronome_mark_engraver"
        }
        {
          \clef "treble"
          \tempo "Andante"
          \relative {
            r4 <c' e g>  r <b d g>  |
          }
        }
        \new Staff {
          \clef "bass"
          \relative {
            c2 g
          }
        }
      >>
    }
  >>

  \layout {
    \context {
      \Score
      \remove "Metronome_mark_engraver"
    }
  }

}



reply via email to

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