]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/web/ly-examples/sesto-full.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / web / ly-examples / sesto-full.ly
1 %%% G.F Haendel, Giulio Cesare in Egitto
2 %%% Act I, scene IV
3 %%% Sesto: Svegliatevi nel core, furie d'un alma offesa (excerpt)
4 %%%
5 %%% Nicolas Sceaux <nicolas.sceaux@free.fr>
6
7 \version "2.14.0"
8 \include "sesto.ily"
9
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11 %%%
12 %%% Lead sheet
13 %%%
14 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15
16 \book {
17   \paper {
18     #(layout-set-staff-size 14)
19   }
20   \score {
21     \new StaffGroupNoBar <<
22       \new StaffGroupNoBracket <<
23         \new Staff <<
24           \set Staff.instrumentName = "Violino I."
25           \global \clef treble \keepWithTag #'violin \violinoI
26         >>
27         \new Staff <<
28           \set Staff.instrumentName = "Violino II."
29           \global \clef treble \keepWithTag #'violin \violinoII
30         >>
31       >>
32       \new Staff <<
33         \new Voice = "sesto" \with { autoBeaming = ##f } <<
34           \set Staff.instrumentName = \markup \smallCaps Sesto.
35           \global \clef treble \sesto
36         >>
37         \lyricsto "sesto" \new Lyrics \sestoLyrics
38       >>
39       \new Staff <<
40         \set Staff.instrumentName = "Bassi."
41         \global \clef bass \bassi
42       >>
43     >>
44     \layout {
45       indent = 20\mm
46       \context {
47         \Score
48         \accepts "StaffGroupNoBar"
49         skipBars = ##t
50       }
51       \context {
52         \StaffGroup
53         \name StaffGroupNoBar
54         \description "Like StaffGroup, but without spanbar"
55         \remove "Span_bar_engraver"
56         \accepts "StaffGroupNoBracket"
57       }
58       \context {
59         \StaffGroup
60         \name StaffGroupNoBracket
61         \description "Like StaffGroup, but without brackets"
62         \remove "System_start_delimiter_engraver"
63       }
64     }
65 %    \midi { }
66   }
67 }
68
69