]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/editorial.itely
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / de / user / editorial.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: f7420240e4ce1fe2217646482a47d00f566af52c
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.11.38"
10
11 @node Editorial annotations
12 @section Editorial annotations
13
14 @menu
15 * Note heads::                  
16 * Inside the staff::            
17 * Outside the staff::           
18 @end menu
19
20
21 @node Note heads
22 @subsection Note heads
23
24 @menu
25 * Easy notation note heads::    
26 * Shape note heads::            
27 * Improvisation::               
28 * Special noteheads::           
29 @end menu
30
31 @node Easy Notation note heads
32 @unnumberedsubsubsec Easy Notation note heads
33
34 UNTRANSLATED NODE: IGNORE ME
35
36
37 @node Shape note heads
38 @unnumberedsubsubsec Shape note heads
39
40 UNTRANSLATED NODE: IGNORE ME
41
42
43 @node Improvisation
44 @unnumberedsubsubsec Improvisation
45
46 UNTRANSLATED NODE: IGNORE ME
47
48
49 @node Special noteheads
50 @unnumberedsubsubsec Special noteheads
51
52 UNTRANSLATED NODE: IGNORE ME
53
54
55 @node Inside the staff
56 @subsection Inside the staff
57
58
59 @menu
60 * Selecting notation font size::  
61 * Fingering instructions::      
62 * Hidden notes::                
63 * Coloring objects::            
64 * Parentheses::                 
65 * Ambitus::                     
66 * Stems::                       
67 @end menu
68
69 @node Selecting notation font size
70 @unnumberedsubsubsec Selecting notation font size
71
72 UNTRANSLATED NODE: IGNORE ME
73
74
75 @node Fingering instructions
76 @unnumberedsubsubsec Fingering instructions
77
78 @cindex Fingersatz
79 @cindex Fingerwechsel
80
81 Fingersatzanweisungen können folgenderweise notiert werden:
82 @example
83 @var{Note}-@var{Zahl}
84 @end example
85 Für Fingerwechsel muss eine Textbeschriftung (markup) benutzt werden:
86
87 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
88 c4-1 c-2 c-3 c-4
89 c^\markup { \finger "2 - 3" }
90 @end lilypond
91
92 Mit dem Daumen-Befehl (@code{\thumb}) können die Noten bezeichnet 
93 werden, die mit dem 
94 Daumen (etwa auf dem Cello) gespielt werden sollen.
95 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
96 <a_\thumb a'-3>8 <b_\thumb b'-3>
97 @end lilypond
98
99 Fingersätze für Akkorde können auch zu einzelnen Noten des 
100 Akkordes hinzugefügt werden, indem sie innerhalb der Akkord-Klammer 
101 direkt an die Noten angefügt werden.
102 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
103 < c-1 e-2 g-3 b-5 >4
104 @end lilypond
105
106
107 @commonprop
108
109 Eine bessere Kontrolle über die Position der Fingersätze in Akkorden 
110 lässt sich mit der Eigenschaft @code{fingeringOrientations} herstellen:
111
112 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
113 \set fingeringOrientations = #'(left down)
114 <c-1 es-2 g-4 bes-5 > 4
115 \set fingeringOrientations = #'(up right down)
116 <c-1 es-2 g-4 bes-5 > 4
117 @end lilypond
118
119 Mit dieser Funktion können Fingersatzbezeichnungen auch bei einstimmiger 
120 Musik sehr nah in die Notenköpfe gerückt werden.
121
122 @lilypond[verbatim,ragged-right,quote,fragment]
123 \set fingeringOrientations = #'(right)
124 <es'-2>4
125 @end lilypond
126
127
128 @seealso
129
130 Programmreferenz: @internalsref{Fingering}.
131
132 Beispiele: @lsr{expressive,fingering-chords.ly}
133
134
135 @node Hidden notes
136 @unnumberedsubsubsec Hidden notes
137
138 UNTRANSLATED NODE: IGNORE ME
139
140
141 @node Coloring objects
142 @unnumberedsubsubsec Coloring objects
143
144 UNTRANSLATED NODE: IGNORE ME
145
146
147 @node Parentheses
148 @unnumberedsubsubsec Parentheses
149
150 UNTRANSLATED NODE: IGNORE ME
151
152
153 @node Ambitus
154 @unnumberedsubsubsec Ambitus
155
156 UNTRANSLATED NODE: IGNORE ME
157
158
159 @node Stems
160 @unnumberedsubsubsec Stems
161
162 Immer, wenn das Programm eine Note findet, wird automatisch 
163 ein Notenhals (@internalsref{Stem}) -Objekt erzeugt. Auch 
164 für ganze Noten und Pausen werden sie erzeugt, aber unsichtbar 
165 gemacht.
166
167 @predefined
168
169 @funindex \stemUp
170 @code{\stemUp} (Hälse nach oben),
171 @funindex \stemDown
172 @code{\stemDown} (Hälse nach unten),
173 @funindex \stemNeutral
174 @code{\stemNeutral} (Hälse je nach Notenposition).
175
176
177 @commonprop
178
179 Um die Richtung der Hälse zu ändern, können die Befehle
180
181 @lilypond[quote,ragged-right,fragment,relative=2,verbatim]
182 a4 b c b
183 \override Stem #'neutral-direction = #up
184 a4 b c b
185 \override Stem #'neutral-direction = #down
186 a4 b c b
187 @end lilypond
188
189 @noindent benutzt werden.
190
191
192 @node Outside the staff
193 @subsection Outside the staff
194
195
196 @menu
197 * Balloon help::                
198 * Grid lines::                  
199 * Blank music sheet::           
200 @end menu
201
202 @node Balloon help
203 @subsection Balloon help
204
205 UNTRANSLATED NODE: IGNORE ME
206
207
208 @node Grid lines
209 @subsection Grid lines
210
211 UNTRANSLATED NODE: IGNORE ME
212
213
214 @node Blank music sheet
215 @subsection Blank music sheet
216
217 UNTRANSLATED NODE: IGNORE ME
218
219