]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/wind.itely
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / Documentation / de / user / wind.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: dab80970d8e89571263d16433aff1e6f878a8f62
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.11.38"
11
12
13 @node Wind instruments
14 @section Wind instruments
15
16 This section includes extra information for writing for bagpipes.
17
18 @menu 
19 * Bagpipe::
20 @end menu
21
22 @node Bagpipe
23 @subsection Bagpipe
24
25 UNTRANSLATED NODE: IGNORE ME
26
27 @menu 
28 * Bagpipe definitions::
29 * Bagpipe example::
30 @end menu
31
32 @node Bagpipe definitions
33 @unnumberedsubsubsec Bagpipe definitions
34
35 LilyPond besitzt spezielle Definitionen, mit der die Musik 
36 des schottischen Hochland-Dudelsacks notiert wird. Um sie 
37 zu benutzen, muss
38
39 @example
40 \include "bagpipe.ly"
41 @end example
42
43 @noindent
44 am Anfang der LilyPond-Quelldatei eingefügt werden. Hierdurch 
45 können dann bestimmte Verzierungsnoten, die für die Dudelsackmusik 
46 üblich sind, mit kurzen Befehlen eingefügt werden. So reicht etwa der 
47 Befehl @code{\taor}, anstatt
48
49 @example
50 \grace @{ \small G32[ d G e] @}
51 @end example
52
53 @noindent zu schreiben.
54
55 @code{bagpipe.ly} enthält außerdem Definitionen für Tonhöhen von 
56 Dudelsacknoten in bestimmten Oktaven, so dass man sich nicht mehr um
57 @code{\relative} oder @code{\transpose} kümmern muss.
58
59 @lilypond[ragged-right,verbatim,quote,notime]
60 \include "bagpipe.ly"
61 { \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A }
62 @end lilypond
63
64 Musik für den Dudelsack wird dem Namen nach in D-Dur
65  geschrieben (auch wenn das eigentlich nicht stimmt). Weil 
66  das aber die einzige Tonart ist, die benutzt werden kann, werden 
67  die Vorzeichen meistens nicht geschrieben. Damit das funktioniert, 
68  müssen die Noten immer mit @code{\hideKeySignature} beginnen. 
69  Wenn die Vorzeichen hingegen angezeigt werden sollen, kann das 
70  mithilfe des Befehls @code{\showKeySignature} vorgenommen werden.
71
72 Some modern music use cross fingering on c and f to flatten those notes.
73 This can be indicated by @code{cflat} or @code{fflat}. Similarly, the
74 piobaireachd high g can be written @code{gflat} when it occurs in light
75 music.
76
77
78 @node Bagpipe example
79 @unnumberedsubsubsec Bagpipe example
80
81 So sieht die bekannte Melodie Amazing Grace aus, wenn man sie für 
82 Dudelsack notiert.
83
84 @lilypond[verbatim,quote]
85 \include "bagpipe.ly"
86 \layout {
87   indent = 0.0\cm
88   \context { \Score \remove "Bar_number_engraver" }
89 }
90
91 \header {
92   title = "Amazing Grace"
93   meter = "Hymn"
94   arranger = "Trad. arr."
95 }
96
97 {
98   \hideKeySignature
99   \time 3/4
100   \grg \partial 4 a8. d16
101   \slurd d2 \grg f8[ e32 d16.]
102   \grg f2 \grg f8 e
103   \thrwd d2 \grg b4
104   \grG a2 \grg a8. d16
105   \slurd d2 \grg f8[ e32 d16.]
106   \grg f2 \grg e8. f16
107   \dblA A2 \grg A4
108   \grg A2 f8. A16
109   \grg A2 \hdblf f8[ e32 d16.]
110   \grg f2 \grg f8 e
111   \thrwd d2 \grg b4
112   \grG a2 \grg a8. d16
113   \slurd d2 \grg f8[ e32 d16.]
114   \grg f2 e4
115   \thrwd d2.
116   \slurd d2
117   \bar "|."
118 }
119 @end lilypond
120
121