lilypond-user
[Top][All Lists]
Advanced

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

Re: Tempo sliding over key signature changes


From: address@hidden
Subject: Re: Tempo sliding over key signature changes
Date: Wed, 19 Dec 2012 07:30:35 +0100

On 19 déc. 2012, at 00:43, Eluze <address@hidden> wrote:

> 
> 
> I tried a little bit but couldn't get the sliding tempo!
> 
> cheers
> Eluze
> 

Here's a tiny(ish) example.
Changing the rests to notes in the bass part will make the tempos typeset 
correctly.  My guess is that this is a bug with multi-measure rests.

%%%%%%%%%%%%%%%%

\version "2.17.0"

#(set-global-staff-size 15.87)

marksRamp = {
  \time 7/8
  s1*7/8 |
  \tempo 2=88
  s1*7/8 |
  \time 3/4
  \tempo 4=148
  s2. |
  \tempo 4=116
  s2. |
  \time 3/8
  s4. |
}

sopranoRamp = \relative c' {
  \autoBeamOff
  \key b \major
  c1*7/8 |
  \key bes \major
  c1*7/8 |
  \key e \major
  c2. |
  \key ees \major
  c2. |
  c4. |
}

bassRamp = \relative c {
  \autoBeamOff
  \clef bass
  \key b \major 
  R1*7/8 |
  \key bes \major
  R1*7/8 |
  \key e \major
  R2.
  \key ees \major
  R2. |
  R4. |
}

\score {
  \new ChoirStaff <<
    \new Staff
      \new Voice = "soprano" << {
        \sopranoRamp
      } {
        \marksRamp
      } >> 
    \new Staff
      \new Voice = "bass" {
        \bassRamp
      }
  >>
}




reply via email to

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