]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/vocal-headword.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / vocal-headword.ly
1 \version "2.14.0"
2
3 #(set-global-staff-size 15)
4 \paper {
5   ragged-right = ##t
6   line-width = 17\cm
7   indent = 0\cm
8 }
9
10 \header {
11   lsrtags = "headwords"
12   texidoc = ""
13   doctitle = "headword"
14 }
15
16 \layout {
17   \context {
18     \Score
19     \override PaperColumn #'keep-inside-line = ##t
20     \override NonMusicalPaperColumn #'keep-inside-line = ##t
21   }
22 }
23
24 % L. van Beethoven. Symphony No. 9 in D minor, op.125; Finale
25 % mm. 216 -- 236
26 % Text: F. von Schiller
27
28 \score {
29   \new Staff \relative c' {
30     \set Score.currentBarNumber = 216
31     \bar ""  % make first bar number be shown
32     \clef bass \key d \minor \time 3/4
33     % \tempo "Presto"
34     % \compressFullBarRests  R2.*8
35     \tempo "Recitativo"
36     \autoBeamOff
37     r4^\markup { \small Baritono } r a
38     \appoggiatura a8 e'2. ~
39     e4 d8[ cis d e]
40     e4 g, r8 g
41     bes2 a8 e
42     g4 f r
43     R2.*2
44     gis2 gis4
45     r4 d'4. b8
46     b4 gis8([ a b cis]
47     e8[ d cis d)] b([ gis)]
48     e8 d d4 fis8([ e)]
49     d4 cis r
50     \key d \major
51     r4 r a'
52     d4.( e8[ fis e)]
53     e([ d)] d([ cis d a)]
54     g8([ fis)] fis([ e d c)]
55     c8([ b)] g'2~
56     \once \override Script #'outside-staff-priority = #1 % put fermata closer to staff
57     g4.\fermata ^\markup { \small \italic "ad libitum" } e8[ cis!] d
58     d8 a a4 r \bar "||"
59
60     % \time 4/4 \tempo "Allegro assai"
61     % R1
62     % e''4^\f d r2
63     % R1
64     % e4( ^\f d2) a8([ g)]
65   }
66   \addlyrics {
67     O Freun -- _ _ de, nicht die -- _ se Tö -- ne!
68     Son -- dern laßt uns an -- _ ge -- neh -- me -- re an -- stim -- men,
69     und freu -- _ _ _ _ _ _ _ den -- vol -- le -- re!
70     % Freu -- de, Freu -- de,__
71   }
72 }
73