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