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