]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/user/cheatsheet.itely
Merge branch 'Rmaster' into topic/master-translation
[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 { c'1 }
159   \new Staff { c'1 } >>
160 @end lilypond
161
162   
163 @item @code{c-> c-.}
164 @tab articulaciones
165 @tab
166 @lilypond[fragment,relative=2]
167 \set Staff.implicitTimeSignatureVisibility = #all-invisible
168 c-> c-.
169 @end lilypond
170
171
172 @item @code{c\mf c\sfz}
173 @tab dinámica
174 @tab
175 @lilypond[fragment,relative=2]
176 \set Staff.implicitTimeSignatureVisibility = #all-invisible
177 c\mf c\sfz
178 @end lilypond
179
180
181 @item @code{a\< a a\!}
182 @tab crescendo
183 @tab
184 @lilypond[fragment,relative=2]
185 \set Score.timing = ##f
186 \set Staff.implicitTimeSignatureVisibility = #all-invisible
187 \set Staff.autoBeaming = ##f
188 a\< a a\!
189 @end lilypond
190
191 @item @code{a\> a a\!}
192 @tab decrescendo
193 @tab
194 @lilypond[fragment,relative=2]
195 \set Score.timing = ##f
196 \set Staff.implicitTimeSignatureVisibility = #all-invisible
197 \set Staff.autoBeaming = ##f
198 a\> a a\!
199 @end lilypond
200
201
202 @item @code{< >}
203 @tab acorde
204 @tab
205 @lilypond[fragment,relative=2]
206 <c e> 
207 @end lilypond
208
209
210 @item @code{\partial 8}
211 @tab anacrusa
212 @tab
213 @lilypond[fragment,relative=2]
214 \partial 8
215 f8 c2 d e
216 @end lilypond
217
218
219 @item @code{\times 2/3 @{f g a@}}
220 @tab tresillos
221 @tab
222 @lilypond[relative=1,fragment]
223 \times 2/3 { f8 g a }
224 @end lilypond
225
226
227 @item @code{\grace}
228 @tab mordentes
229 @tab
230 @lilypond[relative=2,fragment]
231 \context Voice { \grace b16 c4 }
232 @end lilypond
233
234 @item @code{\lyricmode @{ twinkle @}}
235 @tab escribir la letra
236 @tab
237 twinkle
238
239
240 @item @code{\new Lyrics}
241 @tab imprimir la letra
242 @tab
243 @lilypond[fragment]
244 \new Lyrics \lyricmode { twinkle }
245 @end lilypond
246
247 @item @code{twin -- kle}
248 @tab separador de sílabas
249 @tab
250 @lilypond[fragment,relative=2]
251 <<
252    { g'1 g }
253   \new Lyrics \lyricsto "" { twin -- kle }
254 >> 
255 @end lilypond
256
257 @item @code{\chordmode @{ c:dim f:maj7 @}}
258 @tab acordes
259 @tab
260 @lilypond[fragment,relative=2]
261 \chordmode { c:dim f:maj7 }
262 @end lilypond
263
264 @item @code{\context ChordNames}
265 @tab imprimir los nombres de los acordes
266 @tab
267 @lilypond[fragment,relative=2]
268 \chords { c:dim f:maj7 }
269 @end lilypond
270
271 @item @code{<<@{e f@} \\ @{c d@}>>}
272 @tab polifonía
273 @tab
274 @lilypond[fragment,relative=2]
275 \context Staff <<{e f} \\ {c d}>>
276 @end lilypond
277
278
279 @item @code{s4 s8 s16}
280 @tab silencios de separación
281 @tab
282
283 @end multitable
284