]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/Coriolan/bassi-part.ly
patch::: 1.3.79.jcn2
[lilypond.git] / mutopia / Coriolan / bassi-part.ly
1 \header{
2 filename =       "bassi-part.ly";
3 % %title =       "Ouvert\\"ure zu Collins Trauerspiel \\"Coriolan\\" Opus 62";
4 description =    "";
5 composer =       "Ludwig van Beethoven (1770-1827)";
6 enteredby =      "JCN";
7 copyright =      "public domain";
8 }
9
10 \version "1.3.59";
11
12 \include "global.ly"
13 \include "violoncello.ly"
14 \include "contrabasso.ly"
15
16 bassiGroup = \context GrandStaff = bassi_group <
17         \context Staff=one { 
18                 \clef "bass"; 
19                 \context Voice
20                 \property Voice.soloADue = ##f 
21                 \skip 1*314; 
22                 \bar "|."; 
23         }
24         \context Staff=two { 
25                 \clef "bass"; 
26                 \context Voice
27                 \property Voice.soloADue = ##f 
28                 \skip 1*314; 
29                 \bar "|."; 
30         }
31         \context Staff=one \partcombine Staff
32                 \context Thread=one \violoncello
33                 \context Thread=two \contrabasso
34 >
35
36 %\include "coriolan-part-paper.ly"
37 \include "coriolan-part-combine-paper.ly"
38
39 \score{
40         \bassiGroup
41         \paper{
42                 \translator { \HaraKiriStaffContext }
43                 \translator {
44                         \StaffContext
45                         \consists "Slur_engraver";
46                         \consists "Rest_engraver";
47                         \consists "Tie_engraver";
48                 }
49                 \translator{
50                         \VoiceContext
51                         \remove "Rest_engraver";
52                         \remove "Slur_engraver";
53                         \remove "Tie_engraver";
54                 }
55         }
56         \include "coriolan-midi.ly"
57 }
58