]> git.donarmstrong.com Git - lilypond.git/blob - input/test/incipit.ly
release: 1.3.39
[lilypond.git] / input / test / incipit.ly
1 %{
2  Test of how to make an ``incipit'' to indicate scordatora 
3  tuning of a violin part, using the clefStyle property.
4  The two first bars of Biber's Rosary sonata III.
5
6    /Mats B
7 %}
8
9 \version "1.3.5";
10
11 incipit = \notes\relative c'{
12   <b1 fis' b d>
13 }
14
15 violin = \notes\relative c''{
16   \specialkey \keysignature f' fis'' g' gis'';
17   \time 2/2;
18
19   \key;
20   a4. b8 c4 fis |
21   gis~ gis8 fis16^\trill ()e b8 c \context Staff<{\voiceone a d}{\voicetwo es,4}>|
22 }
23
24 BC  = \notes\relative c{
25   \key d;
26   \time 2/2;
27   \clef "bass";
28
29  \key;
30   b2. cis4 | 
31   d e fis g |
32 }
33
34 \score{
35   \notes{
36     \context Staff=violin
37     \property Staff.clefStyle = "transparent" 
38       \incipit 
39     < \context Staff=violin { 
40       \bar ".|"; \endincipit
41       \violin}
42       \context Staff=cb { \property Staff.clefStyle = "transparent" 
43       \bar ".|";  \endincipit 
44       \BC}>
45   }
46   \paper{
47     \translator{\StaffContext
48       timeSignatureStyle = "C";
49     }
50   }
51 }  
52