]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/notation/cheatsheet.itely
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / de / notation / cheatsheet.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*-
2
3 @ignore
4     Translation of GIT committish: 7b70644b95f383b4281e9ffa146d315d2ada11d3
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.12.0"
11
12 @c Translators: Till Paala
13
14
15 @c TODO: add tablature.
16
17 @node Befehlsübersicht
18 @appendix Befehlsübersicht
19 @translationof Cheat sheet
20
21
22 @multitable @columnfractions .35 .3 .35
23
24 @item @b{Syntax}
25 @tab @b{Erklärung}
26 @tab @b{Beispiel}
27
28 @item @code{1 2 8 16}
29 @tab Tondauern
30 @tab
31 @lilypond[fragment,relative=2,notime]
32 \set Staff.autoBeaming = ##f
33 \override Staff.Clef #'break-visibility = #all-invisible
34 c1 c2 c8 c16
35 @end lilypond
36
37 @item @code{c4. c4..}
38 @tab Punktierung
39 @tab
40 @lilypond[fragment,relative=2,notime]
41 \override Staff.Clef #'break-visibility = #all-invisible
42 c4. c4..
43 @end lilypond
44
45 @item @code{c d e f g a b }
46 @tab Tonleiter
47 @tab
48 @lilypond[fragment,relative=1,notime]
49 c d e f g a b
50 @end lilypond
51
52 @item @code{fis bes}
53 @tab Vorzeichen 
54 @tab
55 @lilypond[fragment,relative=1,notime]
56 fis bes
57 @end lilypond
58
59 @item @code{\clef treble \clef bass }
60 @tab Notenschlüssel
61 @tab
62 @lilypond[fragment,notime]
63 \clef treble
64 s4_" "
65 \clef bass
66 s4_" "
67 @end lilypond
68
69 @item @code{\time 3/4 \time 4/4 }
70 @tab Taktangaben
71 @tab
72 @lilypond[fragment]
73 \override Staff.Clef #'stencil = #empty-stencil
74 \time 3/4
75 s4_" "
76 \time 4/4
77 s16_" "
78 @end lilypond
79
80
81 @item @code{r4 r8}
82 @tab Pause 
83 @tab
84 @lilypond[relative=2,notime,fragment]
85 \override Staff.Clef #'break-visibility = #all-invisible
86 r4 r8
87 @end lilypond
88
89 @item @code{d ~ d}
90 @tab Bindebogen
91 @tab
92 @lilypond[relative=2,notime,fragment]
93 \set Score.timing = ##f
94 \set Staff.autoBeaming = ##f
95 d ~ d
96 @end lilypond
97
98 @item @code{\key es \major }
99 @tab Tonart
100 @tab
101 @lilypond[notime,fragment]
102 \clef treble
103 \key es \major
104 \hideNotes
105 c128
106 @end lilypond
107
108 @item @var{note}@code{'}
109 @tab Oktavierung
110 @tab
111 @lilypond[relative=2,notime,fragment]
112 \set Score.timing = ##f
113 \set Staff.autoBeaming = ##f
114 a a'
115 @end lilypond
116
117 @item @var{note}@code{,}
118 @tab Oktavierung nach unten
119 @tab
120 @lilypond[relative=2,notime,fragment]
121 \set Score.timing = ##f
122 \set Staff.autoBeaming = ##f
123 c c,
124 @end lilypond
125
126
127 @item @code{c( d e)}
128 @tab Legatobogen
129 @tab
130 @lilypond[fragment,relative=2]
131 \set Score.timing = ##f
132 \set Staff.implicitTimeSignatureVisibility = #all-invisible
133 \set Staff.autoBeaming = ##f
134 c( d e)
135 @end lilypond
136
137
138 @item @code{c\( c( d) e\)}
139 @tab Phrasierungsbogen
140 @tab
141 @lilypond[fragment,relative=2]
142 \set Score.timing = ##f
143 \set Staff.implicitTimeSignatureVisibility = #all-invisible
144 \set Staff.autoBeaming = ##f
145 c\( c( d) e\)
146 @end lilypond
147
148
149 @item @code{a8[ b]}
150 @tab Balken
151 @tab
152 @lilypond[fragment,relative=2]
153 \set Score.timing = ##f
154 \set Staff.implicitTimeSignatureVisibility = #all-invisible
155 \set Staff.autoBeaming = ##f
156 a8-[ b-]
157 @end lilypond
158
159
160 @item @code{<< \new Staff ... >>}
161 @tab mehr Notensysteme
162 @tab
163 @lilypond[fragment]
164 << \new Staff {
165      \set Staff.implicitTimeSignatureVisibility = #all-invisible
166      c'1
167    }
168    \new Staff {
169      \set Staff.implicitTimeSignatureVisibility = #all-invisible
170      c'1
171    } >>
172 @end lilypond
173
174   
175 @item @code{c-> c-.}
176 @tab Artikulationszeichen
177 @tab
178 @lilypond[fragment,relative=2]
179 \set Staff.implicitTimeSignatureVisibility = #all-invisible
180 c-> c-.
181 @end lilypond
182
183
184 @item @code{c2\mf c\sfz}
185 @tab Dynamik
186 @tab
187 @lilypond[fragment,relative=2]
188 \set Staff.implicitTimeSignatureVisibility = #all-invisible
189 c2\mf c\sfz
190 @end lilypond
191
192
193 @item @code{a\< a a\!}
194 @tab Crescendo
195 @tab
196 @lilypond[fragment,relative=2]
197 \set Score.timing = ##f
198 \set Staff.implicitTimeSignatureVisibility = #all-invisible
199 \set Staff.autoBeaming = ##f
200 a\< a a\!
201 @end lilypond
202
203 @item @code{a\> a a\!}
204 @tab Decrescendo
205 @tab
206 @lilypond[fragment,relative=2]
207 \set Score.timing = ##f
208 \set Staff.implicitTimeSignatureVisibility = #all-invisible
209 \set Staff.autoBeaming = ##f
210 a\> a a\!
211 @end lilypond
212
213
214 @item @code{< >}
215 @tab Noten im Akkord
216 @tab
217 @lilypond[fragment,relative=2]
218 \set Staff.implicitTimeSignatureVisibility = #all-invisible
219 <c e>
220 @end lilypond
221
222
223 @item @code{\partial 8}
224 @tab Auftakt
225 @tab
226 @lilypond[fragment,relative=2]
227 \partial 8
228 f8 c2 d e
229 @end lilypond
230
231
232 @item @code{\times 2/3 @{f g a@}}
233 @tab Triolen
234 @tab
235 @lilypond[relative=1,fragment]
236 \set Staff.implicitTimeSignatureVisibility = #all-invisible
237 \times 2/3 { f8 g a }
238 @end lilypond
239
240
241 @item @code{\grace}
242 @tab Verzierungen
243 @tab
244 @lilypond[relative=2,fragment]
245 \set Staff.implicitTimeSignatureVisibility = #all-invisible
246 \context Voice { \grace b16 c4 }
247 @end lilypond
248
249 @item @code{\lyricmode @{ twinkle @}}
250 @tab Texteingabe
251 @tab
252 twinkle
253
254
255 @item @code{\new Lyrics}
256 @tab Gesangtext
257 @tab
258 @lilypond[fragment]
259 \new Lyrics \lyricmode { twinkle }
260 @end lilypond
261
262 @item @code{twin -- kle}
263 @tab Gesangtext-Trennstrich 
264 @tab
265 @lilypond[fragment,relative=2]
266 \set Staff.implicitTimeSignatureVisibility = #all-invisible
267 <<
268    { g'1 g }
269   \new Lyrics \lyricsto "" { twin -- kle }
270 >>
271 @end lilypond
272
273 @item @code{\chordmode @{ c:dim f:maj7 @}}
274 @tab Akkorde 
275 @tab
276 @lilypond[fragment,relative=2]
277 \set Staff.implicitTimeSignatureVisibility = #all-invisible
278 \chordmode { c:dim f:maj7 }
279 @end lilypond
280
281 @item @code{\context ChordNames}
282 @tab Akkordsymbole drucken
283 @tab
284 @lilypond[fragment,relative=2]
285 \chords { c:dim f:maj7 }
286 @end lilypond
287
288 @item @code{<<@{e f@} \\ @{c d@}>>}
289 @tab Mehrstimmigkeit
290 @tab
291 @lilypond[fragment,relative=2]
292 \set Staff.implicitTimeSignatureVisibility = #all-invisible
293 \context Staff <<{e f} \\ {c d}>>
294 @end lilypond
295
296
297 @item @code{s4 s8 s16}
298 @tab unsichtbare Pausen
299 @tab
300
301 @end multitable
302