1@c -*- coding: utf-8; mode: texinfo; documentlanguage: it -*-
2
3@ignore
4    Translation of GIT committish: fa9d87071c06d7bd6894e3115d24a7eab725d924
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.19.16"
12
13
14@node Schema riassuntivo
15@appendix Schema riassuntivo
16@translationof Cheat sheet
17
18
19@multitable @columnfractions .35 .3 .35
20
21@item @b{Sintassi}
22@tab @b{Descrizione}
23@tab @b{Esempio}
24
25@item @code{1 2 8 16}
26@tab durate
27@tab
28@lilypond[relative=2,notime]
29\set Staff.autoBeaming = ##f
30\override Staff.Clef.break-visibility = #all-invisible
31c1 c2 c8 c16
32@end lilypond
33
34@item @code{c4. c4..}
35@tab punti di aumentazione
36@tab
37@lilypond[relative=2,notime]
38\override Staff.Clef.break-visibility = #all-invisible
39c4. c4..
40@end lilypond
41
42@item @code{c d e f g a b }
43@tab scala
44@tab
45@lilypond[relative=1,notime]
46c d e f g a b
47@end lilypond
48
49@item @code{fis bes}
50@tab alterazione
51@tab
52@lilypond[relative=1,notime]
53fis bes
54@end lilypond
55
56@item @code{\clef treble \clef bass }
57@tab chiavi
58@tab
59@lilypond[relative=1,notime]
60\clef treble
61s4_" "
62\clef bass
63s4_" "
64@end lilypond
65
66@item @code{\time 3/4 \time 4/4 }
67@tab indicazione di tempo
68@tab
69@lilypond[relative=1]
70\override Staff.Clef.stencil = #empty-stencil
71\time 3/4
72s4_" "
73\time 4/4
74s16_" "
75@end lilypond
76
77
78@item @code{r4 r8}
79@tab pausa
80@tab
81@lilypond[relative=2,notime]
82\override Staff.Clef.break-visibility = #all-invisible
83r4 r8
84@end lilypond
85
86@item @code{d ~ d}
87@tab legatura di valore
88@tab
89@lilypond[relative=2,notime]
90\set Score.timing = ##f
91\set Staff.autoBeaming = ##f
92d ~ d
93@end lilypond
94
95@item @code{\key es \major }
96@tab armatura di chiave
97@tab
98@lilypond[notime,relative=1]
99\clef treble
100\key es \major
101\hideNotes
102c128
103@end lilypond
104
105@item @var{note}@code{'}
106@tab alzare l'ottava
107@tab
108@lilypond[relative=2,notime]
109\set Score.timing = ##f
110\set Staff.autoBeaming = ##f
111a a'
112@end lilypond
113
114@item @var{note}@code{,}
115@tab abbassare l'ottava
116@tab
117@lilypond[relative=2,notime]
118\set Score.timing = ##f
119\set Staff.autoBeaming = ##f
120c c,
121@end lilypond
122
123
124@item @code{c( d e)}
125@tab legatura di portamento
126@tab
127@lilypond[relative=2]
128\set Score.timing = ##f
129\set Staff.initialTimeSignatureVisibility = #all-invisible
130\set Staff.autoBeaming = ##f
131c( d e)
132@end lilypond
133
134
135@item @code{c\( c( d) e\)}
136@tab legatura di frase
137@tab
138@lilypond[relative=2]
139\set Score.timing = ##f
140\set Staff.initialTimeSignatureVisibility = #all-invisible
141\set Staff.autoBeaming = ##f
142c\( c( d) e\)
143@end lilypond
144
145
146@item @code{a8[ b]}
147@tab travatura
148@tab
149@lilypond[relative=2]
150\set Score.timing = ##f
151\set Staff.initialTimeSignatureVisibility = #all-invisible
152\set Staff.autoBeaming = ##f
153a8-[ b-]
154@end lilypond
155
156
157@item @code{<< \new Staff @dots{} >>}
158@tab più righi
159@tab
160@lilypond[relative=1]
161<< \new Staff {
162     \set Staff.initialTimeSignatureVisibility = #all-invisible
163     c1
164   }
165   \new Staff {
166     \set Staff.initialTimeSignatureVisibility = #all-invisible
167     c1
168   } >>
169@end lilypond
170
171
172@item @code{c-> c-.}
173@tab articolazioni
174@tab
175@lilypond[relative=2]
176\set Staff.initialTimeSignatureVisibility = #all-invisible
177c-> c-.
178@end lilypond
179
180
181@item @code{c2\mf c\sfz}
182@tab dinamiche
183@tab
184@lilypond[relative=2]
185\set Staff.initialTimeSignatureVisibility = #all-invisible
186c2\mf c\sfz
187@end lilypond
188
189
190@item @code{a\< a a\!}
191@tab crescendo
192@tab
193@lilypond[relative=2]
194\set Score.timing = ##f
195\set Staff.initialTimeSignatureVisibility = #all-invisible
196\set Staff.autoBeaming = ##f
197a\< a a\!
198@end lilypond
199
200@item @code{a\> a a\!}
201@tab decrescendo
202@tab
203@lilypond[relative=2]
204\set Score.timing = ##f
205\set Staff.initialTimeSignatureVisibility = #all-invisible
206\set Staff.autoBeaming = ##f
207a\> a a\!
208@end lilypond
209
210
211@item @code{< >}
212@tab accordo
213@tab
214@lilypond[relative=2]
215\set Staff.initialTimeSignatureVisibility = #all-invisible
216<c e>
217@end lilypond
218
219
220@item @code{\partial 8}
221@tab anacrusi
222@tab
223@lilypond[relative=2]
224\partial 8
225f8 c2 d e
226@end lilypond
227
228
229@item @code{\tuplet 3/2 @{f g a@}}
230@tab terzine
231@tab
232@lilypond[relative=1]
233\set Staff.initialTimeSignatureVisibility = #all-invisible
234\tuplet 3/2 { f8 g a }
235@end lilypond
236
237
238@item @code{\grace}
239@tab abbellimenti
240@tab
241@lilypond[relative=2]
242\set Staff.initialTimeSignatureVisibility = #all-invisible
243\context Voice { \grace b16 c4 }
244@end lilypond
245
246@item @code{\lyricmode @{ twinkle @}}
247@tab inserimento del testo vocale
248@tab
249twinkle
250
251
252@item @code{\new Lyrics}
253@tab stampa del testo vocale
254@tab
255@lilypond[relative=1]
256\new Lyrics \lyricmode { twinkle }
257@end lilypond
258
259@item @code{twin -- kle}
260@tab trattino nel testo vocale
261@tab
262@lilypond[relative=2]
263\set Staff.initialTimeSignatureVisibility = #all-invisible
264<<
265   { g'1 g }
266  \new Lyrics \lyricsto "" { twin -- kle }
267>>
268@end lilypond
269
270@item @code{\chordmode @{ c:dim f:maj7 @}}
271@tab accordi
272@tab
273@lilypond[relative=2]
274\set Staff.initialTimeSignatureVisibility = #all-invisible
275\chordmode { c:dim f:maj7 }
276@end lilypond
277
278@item @code{\new ChordNames}
279@tab mostrare i nomi degli accordi
280@tab
281@lilypond[relative=2]
282\chords { c:dim f:maj7 }
283@end lilypond
284
285@item @code{<<@{e f@} \\ @{c d@}>>}
286@tab polifonia
287@tab
288@lilypond[relative=2]
289\set Staff.initialTimeSignatureVisibility = #all-invisible
290\context Staff <<{e f} \\ {c d}>>
291@end lilypond
292
293
294@item @code{s4 s8 s16}
295@tab pause spaziatrici
296@tab
297
298@end multitable
299