]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/editorial.itely
Split WWW target in two stages WWW-1 and WWW-2
[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 * Inside the staff::            
16 * Outside the staff::           
17 @end menu
18
19
20 @node Inside the staff
21 @subsection Inside the staff
22
23
24 @menu
25 * Selecting notation font size::  
26 * Fingering instructions::      
27 * Hidden notes::                
28 * Coloring objects::            
29 * Parentheses::                 
30 * Stems::                       
31 @end menu
32
33 @node Selecting notation font size
34 @unnumberedsubsubsec Selecting notation font size
35
36 UNTRANSLATED NODE: IGNORE ME
37
38
39 @node Fingering instructions
40 @unnumberedsubsubsec Fingering instructions
41
42 @cindex Fingersatz
43 @cindex Fingerwechsel
44
45 Fingersatzanweisungen können folgenderweise notiert werden:
46 @example
47 @var{Note}-@var{Zahl}
48 @end example
49 Für Fingerwechsel muss eine Textbeschriftung (markup) benutzt werden:
50
51 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
52 c4-1 c-2 c-3 c-4
53 c^\markup { \finger "2 - 3" }
54 @end lilypond
55
56 Mit dem Daumen-Befehl (@code{\thumb}) können die Noten bezeichnet 
57 werden, die mit dem 
58 Daumen (etwa auf dem Cello) gespielt werden sollen.
59 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
60 <a_\thumb a'-3>8 <b_\thumb b'-3>
61 @end lilypond
62
63 Fingersätze für Akkorde können auch zu einzelnen Noten des 
64 Akkordes hinzugefügt werden, indem sie innerhalb der Akkord-Klammer 
65 direkt an die Noten angefügt werden.
66 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
67 < c-1 e-2 g-3 b-5 >4
68 @end lilypond
69
70
71 @commonprop
72
73 Eine bessere Kontrolle über die Position der Fingersätze in Akkorden 
74 lässt sich mit der Eigenschaft @code{fingeringOrientations} herstellen:
75
76 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
77 \set fingeringOrientations = #'(left down)
78 <c-1 es-2 g-4 bes-5 > 4
79 \set fingeringOrientations = #'(up right down)
80 <c-1 es-2 g-4 bes-5 > 4
81 @end lilypond
82
83 Mit dieser Funktion können Fingersatzbezeichnungen auch bei einstimmiger 
84 Musik sehr nah in die Notenköpfe gerückt werden.
85
86 @lilypond[verbatim,ragged-right,quote,fragment]
87 \set fingeringOrientations = #'(right)
88 <es'-2>4
89 @end lilypond
90
91
92 @seealso
93
94 Programmreferenz: @rinternals{Fingering}.
95
96 Beispiele: @lsr{expressive,fingering-chords.ly}
97
98
99 @node Hidden notes
100 @unnumberedsubsubsec Hidden notes
101
102 UNTRANSLATED NODE: IGNORE ME
103
104
105 @node Coloring objects
106 @unnumberedsubsubsec Coloring objects
107
108 UNTRANSLATED NODE: IGNORE ME
109
110
111 @node Parentheses
112 @unnumberedsubsubsec Parentheses
113
114 UNTRANSLATED NODE: IGNORE ME
115
116
117 @node Stems
118 @unnumberedsubsubsec Stems
119
120 Immer, wenn das Programm eine Note findet, wird automatisch 
121 ein Notenhals (@rinternals{Stem}) -Objekt erzeugt. Auch 
122 für ganze Noten und Pausen werden sie erzeugt, aber unsichtbar 
123 gemacht.
124
125 @predefined
126
127 @funindex \stemUp
128 @code{\stemUp} (Hälse nach oben),
129 @funindex \stemDown
130 @code{\stemDown} (Hälse nach unten),
131 @funindex \stemNeutral
132 @code{\stemNeutral} (Hälse je nach Notenposition).
133
134
135 @commonprop
136
137 Um die Richtung der Hälse zu ändern, können die Befehle
138
139 @lilypond[quote,ragged-right,fragment,relative=2,verbatim]
140 a4 b c b
141 \override Stem #'neutral-direction = #up
142 a4 b c b
143 \override Stem #'neutral-direction = #down
144 a4 b c b
145 @end lilypond
146
147 @noindent benutzt werden.
148
149
150 @node Outside the staff
151 @subsection Outside the staff
152
153
154 @menu
155 * Balloon help::                
156 * Grid lines::                  
157 * Analysis brackets::           
158 @end menu
159
160 @node Balloon help
161 @unnumberedsubsubsec Balloon help
162
163 UNTRANSLATED NODE: IGNORE ME
164
165
166 @node Grid lines
167 @unnumberedsubsubsec Grid lines
168
169 UNTRANSLATED NODE: IGNORE ME
170
171
172 @node Analysis brackets
173 @unnumberedsubsubsec Analysis brackets
174
175 UNTRANSLATED NODE: IGNORE ME