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