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