[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
\transposition problem
From: |
Werner LEMBERG |
Subject: |
\transposition problem |
Date: |
Sat, 25 Sep 2004 14:52:36 +0200 (CEST) |
%
% address@hidden
\version "2.3.18"
\header { texidoc = "
\transposition, positioned in a transposed voice, then used in another
transposed voice, gives wrong results. As can be seen in the example,
the first note is apparently handled correctly, but the others are not.
" }
hornOne = \relative c' {
\transposition f
c4 d e f | g2 g |
}
\addquote "quotedHornOne" \hornOne
hornTwo = \relative c' {
\transposition f
\quote "quotedHornOne" 1 |
g'2 g |
}
\score {
\context Staff {
\transpose f c' \hornTwo
}
\paper {
raggedright = ##t
}
}
% EOF