]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chords-headword.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / chords-headword.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.20
8 \version "2.16.0"
9
10 \header {
11   lsrtags = "headword"
12   texidoc = ""
13   doctitle = "headword"
14 } % begin verbatim
15
16
17
18 theChords = \chordmode {
19   \time 2/2
20   f1 | c2 f2 | f1 | c2 f2| %\break
21   f2 bes2 | f1 | c2:7 f | c1 | \break
22 }
23
24 verseOne = \lyricmode {
25   \set stanza = #"1."
26   Fair is the sun - shine,
27   Fair - er the moon - light
28   And all the stars __ _  in heav'n a -- bove;
29 }
30
31 verseTwo = \lyricmode {
32   \set stanza = #"2."
33   Fair are the mead - ows,
34   Fair - er the wood - land,
35   Robed in the flow -- ers of bloom -- ing spring;
36 }
37
38 Soprano = {
39   \time 2/2
40   \key f \major
41   \stemUp
42   f'2 f'4 f' | g'4 e' f'2 | a'4. a'8 a'4 a' | bes'4 g' a'2 |
43   c''2 f''4 d'' |  c''2  bes'4  a' | bes'2 a' | g'1 |
44 }
45
46 Alto = {
47   \key f \major
48   c'2 c'4 c' | d'4 c' c'2 | f'4. f'8 f'4 fis' | g'4 e' f'2 |
49   f'2 f'4 f' |  f'2  g'4  f' | e'2 f' | e'1 |
50 }
51
52 Tenor = {
53   \key f \major
54   \stemDown
55   a2 a4 a | bes4 g a2  | c'4. c'8 d'4 d' | d'4 c' c'2 |
56   a2 d'4 bes | a2 c'4 c' | c'2 c'  | c'1 |
57 }
58
59 Bass = {
60   \key f \major
61   f2 f4 f | bes,4 c  f2 | f4. e8 d4 c | bes,4 c f2 |
62   f2 bes,4 d | f2 e4 f | g2 f | c1 |
63 }
64
65
66 \score {
67   <<
68     \new ChordNames { \theChords }
69     \context Staff = upper {
70       \context Voice = sop {
71         <<
72           \Soprano
73           \Alto
74         >>
75       }
76     }
77     \context Lyrics = "LyrOne" \lyricsto "sop" { \verseOne }
78     \context Lyrics = "LyrTwo" \lyricsto "sop" { \verseTwo }
79     \context Staff = lower {
80       \new Voice {
81         \clef bass
82         \accidentalStyle "modern-cautionary"
83         <<
84           \Tenor
85           \Bass
86         >>
87       }
88     }
89   >>
90
91   \layout {
92     indent = 0
93     \context {
94       \Score
95       \remove "Bar_number_engraver"
96     }
97     \context {
98       \Voice
99       \override StanzaNumber #'padding = #1.8
100     }
101   }
102 }
103 \paper {  }