]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-transposition.ly
(conv): add 2.2.0 rule.
[lilypond.git] / input / regression / quote-transposition.ly
1
2 \header
3 {
4
5     texidoc = "Quotations take into account the transposition of both  source and target.
6 In this example, all instruments play sounding central C, the target is a instrument in F."
7
8 }
9 \version "2.1.36"
10
11
12 \addquote clarinet \notes {
13     \transposition bes
14     d'16 d'16 d'8 
15     d'16 d'16 d'8 
16     d'16 d'16 d'8 
17     d'16 d'16 d'8 
18     }
19 \addquote sax \notes {
20     \transposition es'
21     a8 a a a a a  a a 
22     }
23
24 \score {
25     \notes{
26         \transposition f  % french horn
27         
28         g'4
29         << \quote clarinet 4 s4^"clar" >> 
30         << \quote sax 4 s4^"sax" >> 
31     }
32 }
33