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