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