]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/mozart-hrn-3.ly
Doc -- Fix issues 1483 and 1486
[lilypond.git] / input / regression / mozart-hrn-3.ly
1 \header{
2   title = "Konzert Nr. 3 Es dur"
3   subtitle = "für Horn und Orchester"
4   composer = "Wolfgang Amadeus Mozart (1756-1791)"
5   enteredby = "HWN"
6   opus = "KV 447"
7
8   copyright = "public domain"
9   instrument = "Horn in F"
10   editor = "Henri Kling"
11   mutopiatitle = "Horn Concerto 3"
12   mutopiacomposer = "W.A.Mozart"
13   mutopiaopus = "KV447"
14   style = "classical"
15   maintainer = "hanwen@xs4all.nl"
16   maintainerEmail = "hanwen@xs4all.nl"
17   maintainerWeb = "http://www.xs4all.nl/~hanwen/"
18   lastupdated = "2002/May/21"
19   source = "Edition Breitkopf 2563"
20   footer = "Mutopia-2002/05/21-25"
21
22   tagline = \markup { \smaller
23       \column {
24            \fill-line { \footer "" }
25            \fill-line { { "This music is part of the Mutopia project,"
26                           \typewriter { "http://mutopiaproject.org/" }
27                          } }
28            \fill-line { #(ly:export (string-append "It has been typeset and placed in the public "
29                           "domain by "  maintainer  "."))  }
30            \fill-line { #(ly:export (string-append "Unrestricted modification and redistribution"
31                           " is permitted and encouraged---copy this music"
32                           " and share it!")) }
33            }
34        }
35
36   texidoc="
37 This is the Mozart 3 for horn.  It's from an Edition Breitkopf EB
38 2563, edited by Henri Kling. Henri Kling (1842-1918) was a horn
39 virtuoso that taught in Geneva.
40 "
41 }
42
43 \version "2.13.46"
44
45 \include "mozart-hrn3-defs.ily"
46 \include "mozart-hrn3-allegro.ily"
47 \include "mozart-hrn3-romanze.ily"
48 \include "mozart-hrn3-rondo.ily"
49
50 \paper {
51     obsolete-between-system-space = 20 \mm
52     system-system-spacing #'basic-distance = #(/ obsolete-between-system-space staff-space)
53     score-system-spacing #'basic-distance = #(/ obsolete-between-system-space staff-space)
54 }
55
56
57 \book {
58     \score {
59         { \transpose c' bes \allegro }
60         \layout { }
61         \header { piece = "Allegro" opus = "" }
62
63   \midi {
64     \context {
65       \Score
66       tempoWholesPerMinute = #(ly:make-moment 90 4)
67       }
68     }
69
70
71     }
72
73     \score {
74         { \transpose c' bes \romanze }
75         \header { piece = "Romanze" opus = "" }
76
77   \midi {
78     \context {
79       \Score
80       tempoWholesPerMinute = #(ly:make-moment 70 4)
81       }
82     }
83
84
85         \layout {}
86     }
87
88     \score
89     {
90         { \transpose c' bes \rondo }
91         \header { piece = "Rondo" opus = "" }
92
93   \midi {
94     \context {
95       \Score
96       tempoWholesPerMinute = #(ly:make-moment 100 4)
97       }
98     }
99
100
101         \layout { }
102     }
103 }
104
105 %% Local Variables:
106 %% coding: utf-8
107 %% End: