]> git.donarmstrong.com Git - lilypond.git/blob - input/manual/chords-headword.ly
3328d2077d5f2949c3295a2a88eaf235086291d5
[lilypond.git] / input / manual / chords-headword.ly
1 \version "2.11.51"
2 #(set-global-staff-size 15)
3 \paper{
4   ragged-right=##f
5   line-width=17\cm
6   indent=0\cm
7 }
8
9 theChords = \chordmode {
10   \time 2/2
11   f1 | c2 f2 | f1 | c2 f2| %\break 
12   f2 bes2 | f1 | c2:7 f | c1 | \break 
13 }
14
15 verseOne = \lyricmode{
16   \set stanza = "1. "
17   Fair is the sun - shine,
18   Fair - er the moon - light
19   And all the stars __ _  in heav'n a -- bove;
20 }
21
22 verseTwo = \lyricmode{
23   \set stanza = "2. "
24   Fair are the mead - ows,
25   Fair - er the wood - land, 
26   Robed in the flow -- ers of bloom -- ing spring;
27 }
28
29 Soprano = { 
30   \time 2/2  
31   \key f \major
32   \stemUp
33   f'2 f'4 f' | g'4 e' f'2 | a'4. a'8 a'4 a' | bes'4 g' a'2 |
34 c''2 f''4 d'' |  c''2  bes'4  a' | bes'2 a' | g'1 |
35 }
36
37 Alto = { 
38   \key f \major 
39   c'2 c'4 c' | d'4 c' c'2 | f'4. f'8 f'4 ges' | g'4 e' f'2 |
40   f'2 f'4 f' |  f'2  g'4  f' | e'2 f' | e'1 | 
41 }
42
43 Tenor = { 
44   \key f \major 
45   \stemDown 
46   a2 a4 a | bes4 g a2  | c'4. c'8 d'4 d' | d'4 c' c'2 | 
47   a2 d'4 bes | a2 c'4 c' | c'2 c'  | c'1 |
48 }
49
50 Bass = {
51   \key f \major 
52   f2 f4 f | bes,4 c  f2 | f4. e8 d4 c | bes,4 c f2 |
53   f2 bes,4 d | f2 e4 f | g2 f | c1 |
54 }
55
56
57 \score {
58   << 
59     \new ChordNames { \theChords }
60     \context Staff = upper {
61       \context Voice = sop {
62         <<
63           \Soprano 
64           \Alto 
65         >> 
66       }
67     }
68     \context Lyrics="LyrOne" \lyricsto "sop" {\verseOne}
69     \context Lyrics="LyrTwo" \lyricsto "sop" {\verseTwo}
70     \context Staff = lower {
71       \new Voice {
72         \clef bass
73         #(set-accidental-style 'modern-cautionary) 
74         <<
75           \Tenor 
76           \Bass 
77         >>
78       }
79     }
80   >>
81
82 \layout {
83   %between-system-space = 1\mm
84   indent = 0
85   \context {
86     \Score
87     \remove "Bar_number_engraver"
88   }
89   \context { \Staff 
90     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1)
91   }
92   }
93 }
94 \paper {  }