]> git.donarmstrong.com Git - lilypond.git/blob - input/mutopia/W.A.Mozart/mozart-hrn-3.ly
* lily/slur.cc: Add quant-score to interface. Fixes web build.
[lilypond.git] / input / mutopia / W.A.Mozart / 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@cs.uu.nl"
16   maintainerEmail = "hanwen@cs.uu.nl"
17   maintainerWeb = "http://www.cs.uu.nl/~hanwen/"        
18   lastupdated = "2002/May/21"
19   source = "Edition Breitkopf 2563"
20   footer = "Mutopia-2002/05/21-25"
21
22   textagline = "\\parbox{\hsize}{\\thefooter\\quad\\small This music is part of the Mutopia project, \\texttt{http://sca.uwaterloo.ca/Mutopia/}. It has been typeset and placed in the public domain by " + \maintainer + ". Unrestricted modification and redistribution is permitted and encouraged---copy this music and share it!}"
23   
24   %% TODO: handle \footer, \head[er] properly
25   tagline = \markup { \smaller
26       \column <
27            \fill-line < \footer "" >
28            \fill-line < { "This music is part of the Mutopia project, "
29                           \typewriter { "http://sca.uwaterloo.ca/Mutopia/" }
30                           "." } >
31            \fill-line < { "It has been typeset and placed in the public "
32                           "domain by "  \maintainer  "." } >
33            \fill-line < { "Unrestricted modification and redistribution "
34                           "is permitted and encouraged---copy this music "
35                           "and share it!" } >
36            >
37        }
38 }
39 %{
40
41 This is the Mozart 3 for horn.  It's from an Edition Breitkopf EB
42 2563, edited by Henri Kling. Henri Kling (1842-1918) was a horn
43 virtuoso that taught in Geneva. 
44
45 %}
46
47 \version "2.3.4"
48
49 \include "mozart-hrn3-defs.ily"
50 \include "mozart-hrn3-allegro.ily"
51 \include "mozart-hrn3-romanze.ily"
52 \include "mozart-hrn3-rondo.ily"
53
54
55
56
57 \book {
58 \score
59 {
60          { \transpose c' bes \allegro }
61         \paper{
62             \context { \Score
63
64                        \override Slur #'after-line-breaking-callback = #New_slur::after_line_breaking
65                        \override Slur #'print-function = #New_slur::print     
66                        \override Slur #'height = ##f
67
68                        
69                        }
70         }
71         \header { piece = "allegro" opus = "" } 
72         \midi{ \tempo 4=90 }
73 }
74
75
76 \score
77 {
78      { \transpose c' bes \romanze }
79         \header { piece = "romanze" opus = "" } 
80         \midi{ \tempo 4 = 70  }
81         \paper{}
82 }
83
84
85 \score
86 {
87      { \transpose c' bes        \rondo }
88         \header { piece = "rondo" opus = "" }
89         \midi{ \tempo 4 = 100 }
90         \paper { }
91 }
92
93
94 }