]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/mozart-hrn-3.ly
911595e8c162270309ec402ba18ce41b76686258
[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 {
23     \smaller \column {
24       \fill-line { \footer "" }
25       \fill-line {
26         \line { "This music is part of the Mutopia project,"
27           \typewriter { "http://mutopiaproject.org/" }
28         }
29       }
30       \fill-line {
31         #(ly:export (string-append  "It has been typeset and placed in the public "
32                                     "domain by " maintainer "."))
33       }
34       \fill-line {
35         \line {
36           "Unrestricted modification and redistribution"
37           "is permitted and encouraged - copy this music"
38           "and share it!"
39         }
40       }
41     }
42   }
43
44   texidoc="
45 This is the Mozart 3 for horn.  It's from an Edition Breitkopf EB
46 2563, edited by Henri Kling. Henri Kling (1842-1918) was a horn
47 virtuoso that taught in Geneva.
48 "
49 }
50
51 \version "2.14.0"
52
53 \include "mozart-hrn3-defs.ily"
54 \include "mozart-hrn3-allegro.ily"
55 \include "mozart-hrn3-romanze.ily"
56 \include "mozart-hrn3-rondo.ily"
57
58 \paper {
59   system-system-spacing #'basic-distance = 10
60   score-system-spacing #'basic-distance = 20
61 }
62
63 \book {
64   \score {
65     { \transpose c' bes \allegro }
66     \layout { }
67     \header {
68       piece = "Allegro"
69       opus = ""
70     }
71
72     \midi {
73       \context {
74         \Score
75         tempoWholesPerMinute = #(ly:make-moment 90 4)
76       }
77     }
78   }
79
80   \score {
81     { \transpose c' bes \romanze }
82     \header {
83       piece = "Romanze"
84       opus = ""
85     }
86
87     \midi {
88       \context {
89         \Score
90         tempoWholesPerMinute = #(ly:make-moment 70 4)
91       }
92     }
93
94     \layout { }
95   }
96
97   \score
98   {
99     { \transpose c' bes \rondo }
100     \header {
101       piece = "Rondo"
102       opus = ""
103     }
104
105     \midi {
106       \context {
107         \Score
108         tempoWholesPerMinute = #(ly:make-moment 100 4)
109       }
110     }
111
112     \layout { }
113   }
114 }
115
116 %% Local Variables:
117 %% coding: utf-8
118 %% End: