]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/user/cheatsheet.itely
Merge branch 'master' into jneeman
[lilypond.git] / Documentation / es / user / cheatsheet.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: 884968f3b77f345f327857f1df17e114adad877f
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
11 @c TODO: add tablature.
12
13 @node Cheat sheet
14 @appendix Cheat sheet
15
16
17 @multitable @columnfractions .35 .3 .35
18
19 @item @b{Sintaxis}
20 @tab @b{Descripción}
21 @tab @b{Ejemplo}
22
23 @item @code{1 2 8 16}
24 @tab duraciones
25 @tab
26 @lilypond[fragment,relative=2,notime]
27 \set Staff.autoBeaming = ##f
28 \override Staff.Clef #'break-visibility = #all-invisible
29 c1 c2 c8 c16
30 @end lilypond
31
32 @item @code{c4. c4..}
33 @tab puntillos
34 @tab
35 @lilypond[fragment,relative=2,notime]
36 \override Staff.Clef #'break-visibility = #all-invisible
37 c4. c4..  
38 @end lilypond
39
40 @item @code{c d e f g a b }
41 @tab escala
42 @tab
43 @lilypond[fragment,relative=1,notime]
44 c d e f g a b
45 @end lilypond
46
47 @item @code{fis bes}
48 @tab alteración
49 @tab
50 @lilypond[fragment,relative=1,notime]
51 fis bes
52 @end lilypond
53
54 @item @code{\clef treble \clef bass }
55 @tab claves
56 @tab
57 @lilypond[fragment,notime]
58 \clef treble
59 s4_" "
60 \clef bass
61 s4_" "
62 @end lilypond
63
64 @item @code{\time 3/4 \time 4/4 }
65 @tab compás
66 @tab
67 @lilypond[fragment]
68 \override Staff.Clef #'transparent = ##t 
69 \time 3/4
70 s4_" "
71 \time 4/4
72 s16_" "
73 @end lilypond
74
75
76 @item @code{r4 r8}
77 @tab silencio 
78 @tab
79 @lilypond[relative=2,notime,fragment]
80 \override Staff.Clef #'break-visibility = #all-invisible
81 r4 r8
82 @end lilypond
83
84 @item @code{d ~ d}
85 @tab ligadura de unión
86 @tab
87 @lilypond[relative=2,notime,fragment]
88 \set Score.timing = ##f
89 \set Staff.autoBeaming = ##f
90 d ~ d
91 @end lilypond
92
93 @item @code{\key es \major }
94 @tab armadura
95 @tab
96 @lilypond[notime,fragment]
97 \clef treble
98 \key es \major
99 s4 
100 @end lilypond
101
102 @item @var{note}@code{'}
103 @tab subir una octava
104 @tab
105 @lilypond[relative=2,notime,fragment]
106 \set Score.timing = ##f
107 \set Staff.autoBeaming = ##f
108 a a'
109 @end lilypond
110
111 @item @var{note}@code{,}
112 @tab bajar una octava
113 @tab
114 @lilypond[relative=2,notime,fragment]
115 \set Score.timing = ##f
116 \set Staff.autoBeaming = ##f
117 c c,
118 @end lilypond
119
120
121 @item @code{c( d e)}
122 @tab ligadura de expresión
123 @tab
124 @lilypond[fragment,relative=2]
125 \set Score.timing = ##f
126 \set Staff.implicitTimeSignatureVisibility = #all-invisible
127 \set Staff.autoBeaming = ##f
128 c( d e)
129 @end lilypond
130
131
132 @item @code{c\( c( d) e\)}
133 @tab ligadura de fraseo
134 @tab
135 @lilypond[fragment,relative=2]
136 \set Score.timing = ##f
137 \set Staff.implicitTimeSignatureVisibility = #all-invisible
138 \set Staff.autoBeaming = ##f
139 c\( c( d) e\)
140 @end lilypond
141
142
143 @item @code{a8[ b]}
144 @tab barra
145 @tab
146 @lilypond[fragment,relative=2]
147 \set Score.timing = ##f
148 \set Staff.implicitTimeSignatureVisibility = #all-invisible
149 \set Staff.autoBeaming = ##f
150 a8-[ b-]
151 @end lilypond
152
153
154 @item @code{<< \new Staff ... >>}
155 @tab más pentagramas
156 @tab
157 @lilypond[fragment]
158 << \new Staff {
159      \set Staff.implicitTimeSignatureVisibility = #all-invisible
160      c'1
161    }
162    \new Staff {
163      \set Staff.implicitTimeSignatureVisibility = #all-invisible
164      c'1
165    } >>
166 @end lilypond
167
168   
169 @item @code{c-> c-.}
170 @tab articulaciones
171 @tab
172 @lilypond[fragment,relative=2]
173 \set Staff.implicitTimeSignatureVisibility = #all-invisible
174 c-> c-.
175 @end lilypond
176
177
178 @item @code{c\mf c\sfz}
179 @tab dinámica
180 @tab
181 @lilypond[fragment,relative=2]
182 \set Staff.implicitTimeSignatureVisibility = #all-invisible
183 c2\mf c\sfz
184 @end lilypond
185
186
187 @item @code{a\< a a\!}
188 @tab crescendo
189 @tab
190 @lilypond[fragment,relative=2]
191 \set Score.timing = ##f
192 \set Staff.implicitTimeSignatureVisibility = #all-invisible
193 \set Staff.autoBeaming = ##f
194 a\< a a\!
195 @end lilypond
196
197 @item @code{a\> a a\!}
198 @tab decrescendo
199 @tab
200 @lilypond[fragment,relative=2]
201 \set Score.timing = ##f
202 \set Staff.implicitTimeSignatureVisibility = #all-invisible
203 \set Staff.autoBeaming = ##f
204 a\> a a\!
205 @end lilypond
206
207
208 @item @code{< >}
209 @tab acorde
210 @tab
211 @lilypond[fragment,relative=2]
212 \set Staff.implicitTimeSignatureVisibility = #all-invisible
213 <c e> 
214 @end lilypond
215
216
217 @item @code{\partial 8}
218 @tab anacrusa
219 @tab
220 @lilypond[fragment,relative=2]
221 \partial 8
222 f8 c2 d e
223 @end lilypond
224
225
226 @item @code{\times 2/3 @{f g a@}}
227 @tab tresillos
228 @tab
229 @lilypond[relative=1,fragment]
230 \set Staff.implicitTimeSignatureVisibility = #all-invisible
231 \times 2/3 { f8 g a }
232 @end lilypond
233
234
235 @item @code{\grace}
236 @tab mordentes
237 @tab
238 @lilypond[relative=2,fragment]
239 \set Staff.implicitTimeSignatureVisibility = #all-invisible
240 \context Voice { \grace b16 c4 }
241 @end lilypond
242
243 @item @code{\lyricmode @{ twinkle @}}
244 @tab escribir la letra
245 @tab
246 twinkle
247
248
249 @item @code{\new Lyrics}
250 @tab imprimir la letra
251 @tab
252 @lilypond[fragment]
253 \new Lyrics \lyricmode { twinkle }
254 @end lilypond
255
256 @item @code{twin -- kle}
257 @tab separador de sílabas
258 @tab
259 @lilypond[fragment,relative=2]
260 \set Staff.implicitTimeSignatureVisibility = #all-invisible
261 <<
262    { g'1 g }
263   \new Lyrics \lyricsto "" { twin -- kle }
264 >> 
265 @end lilypond
266
267 @item @code{\chordmode @{ c:dim f:maj7 @}}
268 @tab acordes
269 @tab
270 @lilypond[fragment,relative=2]
271 \set Staff.implicitTimeSignatureVisibility = #all-invisible
272 \chordmode { c:dim f:maj7 }
273 @end lilypond
274
275 @item @code{\context ChordNames}
276 @tab imprimir los nombres de los acordes
277 @tab
278 @lilypond[fragment,relative=2]
279 \chords { c:dim f:maj7 }
280 @end lilypond
281
282 @item @code{<<@{e f@} \\ @{c d@}>>}
283 @tab polifonía
284 @tab
285 @lilypond[fragment,relative=2]
286 \set Staff.implicitTimeSignatureVisibility = #all-invisible
287 \context Staff <<{e f} \\ {c d}>>
288 @end lilypond
289
290
291 @item @code{s4 s8 s16}
292 @tab silencios de separación
293 @tab
294
295 @end multitable
296