On 19 déc. 2012, at 00:43, Eluze <elu...@gmail.com> 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
      }
  >>
}


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

Reply via email to