lilypond-user
[Top][All Lists]
Advanced

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

\transpose and \transposition combination error(?)


From: Zbyněk Burget
Subject: \transpose and \transposition combination error(?)
Date: Sun, 22 Feb 2009 13:20:35 +0100
User-agent: Thunderbird 2.0.0.19 (Windows/20081209)

Hi,
I found a (probably) error in combination \transpose and \transposition functions.
I've score:

\score {
  \new StaffGroup <<
    \new Staff {
      \key c \major
      c'1
    }
    \new Staff {
      \transposition bes
      \key d \major
      d'1
    }
  >>
  \midi {}
}

There is allright. But...

...now I need transpose all score to another key:

\score { \transpose c d {
  \new StaffGroup <<
    \new Staff {
      \key c \major
      c'1
    }
    \new Staff {
      \transposition bes
      \key d \major
      d'1
    }
  >> }
  \midi {}
}

In this case is produced midi file wrong. Only way to produce correct midi is as follows:

...
    \new Staff {
      \transposition bes
      \key d \major
      \transpose c g { d'1 }
    }
...

Is it error or feature?

Zbynek




reply via email to

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