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