]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/mozart-hrn-3.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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         #(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.19.12"
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       \tempo 4 = 90
74     }
75   }
76
77   \score {
78     { \transpose c' bes \romanze }
79     \header {
80       piece = "Romanze"
81       opus = ""
82     }
83
84     \midi {
85       \tempo 4 = 70
86     }
87
88     \layout { }
89   }
90
91   \score
92   {
93     { \transpose c' bes \rondo }
94     \header {
95       piece = "Rondo"
96       opus = ""
97     }
98
99     \midi {
100       \tempo 4 = 100
101     }
102
103     \layout { }
104   }
105 }
106
107 %% Local Variables:
108 %% coding: utf-8
109 %% End: