]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/nl/macros.itexi
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / nl / macros.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: 8135382760aa0adfac5aed987a272c394e59dbdb
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10
11 @include version.itexi
12 @include common-macros.itexi
13
14
15 @c   ***** Displaying text *****
16
17 @c To get decent quotes in `foo' and ``foo''.
18 @c FIXME: Use thin spaces for @qq.
19
20 @ifnotinfo
21
22 @macro q{TEXT}
23 @quoteleft{}\TEXT\@quoteright{}
24 @end macro
25
26 @macro qq{TEXT}
27 @guillemetleft{}@tie{}\TEXT\@tie{}@guillemetright{}
28 @end macro
29
30 @end ifnotinfo
31
32 @ifinfo
33
34 @macro q{TEXT}
35 `\TEXT\'
36 @end macro
37
38 @macro qq{TEXT}
39 « \TEXT\ »
40 @end macro
41
42 @end ifinfo
43
44
45 @ifhtml
46
47 @macro warning{TEXT}
48 @html
49 <div class="warning">
50 @end html
51 @strong{Note :} \TEXT\
52 @c keep the space for proper nesting of </p>
53
54 @html
55 </div>
56 @end html
57 @end macro
58
59 @end ifhtml
60
61 @ifnothtml
62
63 @macro warning{TEXT}
64 @quotation
65 @quotation
66 @cartouche
67 @b{Note :} \TEXT\
68 @end cartouche
69 @end quotation
70 @end quotation
71 @end macro
72
73 @end ifnothtml
74
75
76
77 @c   ***** Headings in a doc subsection *****
78
79 @c Don't insert an empty line after @predefined!  Right now
80 @c it doesn't matter, but a future implementation will probably
81 @c add some code which needs this restriction.
82
83 @macro predefined
84 @noindent
85 @subsubheading Commandes prédéfinies
86 @end macro
87
88 @c The next macro is a dummy currently since texinfo doesn't
89 @c provide a real ragged-right environment yet.
90 @c
91 @c Due to a bug in texi2html (texi2html.pl CVS versions <= 1.245)
92 @c the macro must not be empty.
93
94 @macro endpredefined
95 @c
96 @end macro
97
98
99 @macro snippets
100 @noindent
101 @subsubheading Morceaux choisis
102 @end macro
103
104
105 @c obsolete, remove when translation is fully updated
106 @macro commonprop
107 @noindent
108 @subsubheading Propriétés couramment modifiées
109 @end macro
110
111
112 @c Don't insert an empty line after @seealso!  Otherwise we get
113 @c unwanted extra vertical space in the PDF output.
114
115 @macro seealso
116 @noindent
117 @subsubheading Voir aussi
118 @indent
119 @end macro
120
121
122 @macro knownissues
123 @noindent
124 @subsubheading Problèmes connus et avertissements
125 @end macro
126
127
128
129
130 @c   ***** Links and references *****
131
132 @c  Definitions for references:
133 @c
134 @c     @rglos
135 @c     @rlearning
136 @c     @ruser
137 @c     @rprogram
138 @c     @rlsr
139 @c     @rinternals
140 @c
141 @c  All these also have a @...named version which allows to specify the
142 @c  displayed text for the reference as second argument.
143 @c
144 @c ***** HTML + bigpage is a special case (other manual names); all other
145 @c formats are treated similarly.
146
147
148 @c *** not TeX ***
149
150 @ifnottex
151
152 @c ** bigpage **
153
154 @ifset bigpage
155
156 @macro rglos{TEXT}
157 @vindex \TEXT\
158 @ref{\TEXT\,,,music-glossary-big-page,Glossaire}
159 @end macro
160
161 @macro rglosnamed{TEXT,DISPLAY}
162 @vindex \TEXT\
163 @ref{\TEXT\,,\DISPLAY\,music-glossary-big-page,Glossaire}
164 @end macro
165
166 @macro rlearning{TEXT}
167 @vindex \TEXT\
168 @ref{\TEXT\,,,learning-big-page,Manuel d'initiation}
169 @end macro
170
171 @macro rlearningnamed{TEXT,DISPLAY}
172 @vindex \TEXT\
173 @ref{\TEXT\,,\DISPLAY\,learning-big-page,Manuel d'initiation}
174 @end macro
175
176 @macro ruser{TEXT}
177 @vindex \TEXT\
178 @ref{\TEXT\,,,notation-big-page,Manuel de notation}
179 @end macro
180
181 @macro rusernamed{TEXT,DISPLAY}
182 @vindex \TEXT\
183 @ref{\TEXT\,,\DISPLAY\,notation-big-page,Manuel de notation}
184 @end macro
185
186 @macro ressay{TEXT}
187 @vindex \TEXT\
188 @ref{\TEXT\,,,essay-big-page,Essay}
189 @end macro
190
191 @macro ressaynamed{TEXT,DISPLAY}
192 @vindex \TEXT\
193 @ref{\TEXT\,,\DISPLAY\,essay-big-page,Essay}
194 @end macro
195
196 @macro rprogram{TEXT}
197 @vindex \TEXT\
198 @ref{\TEXT\,,,usage-big-page,Manuel d'utilisation du programme}
199 @end macro
200
201 @macro rprogramnamed{TEXT,DISPLAY}
202 @vindex \TEXT\
203 @ref{\TEXT\,,\DISPLAY\,usage-big-page,Manuel d'utilisation du programme}
204 @end macro
205
206 @macro rlsr{TEXT}
207 @vindex \TEXT\
208 @ref{\TEXT\,,,snippets-big-page,Exemples de code}
209 @end macro
210
211 @macro rlsrnamed{TEXT,DISPLAY}
212 @ref{\TEXT\,,\DISPLAY\,snippets-big-page,Exemples de code}
213 @end macro
214
215 @macro rinternals{TEXT}
216 @vindex \TEXT\
217 @ref{\TEXT\,,,internals-big-page,Référence des propriétés internes}
218 @end macro
219
220 @macro rinternalsnamed{TEXT,DISPLAY}
221 @vindex \TEXT\
222 @ref{\TEXT\,,,internals-big-page,Référence des propriétés internes}
223 @end macro
224
225 @end ifset
226
227
228 @c ** not bigpage **
229
230 @ifclear bigpage
231
232 @macro rglos{TEXT}
233 @vindex \TEXT\
234 @ref{\TEXT\,,,music-glossary,Glossaire}
235 @end macro
236
237 @macro rglosnamed{TEXT,DISPLAY}
238 @vindex \TEXT\
239 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glossaire}
240 @end macro
241
242 @macro rlearning{TEXT}
243 @vindex \TEXT\
244 @ref{\TEXT\,,,learning,Manuel d'initiation}
245 @end macro
246
247 @macro rlearningnamed{TEXT,DISPLAY}
248 @vindex \TEXT\
249 @ref{\TEXT\,,\DISPLAY\,learning,Manuel d'initiation}
250 @end macro
251
252 @macro ruser{TEXT}
253 @vindex \TEXT\
254 @ref{\TEXT\,,,notation,Manuel de notation}
255 @end macro
256
257 @macro rusernamed{TEXT,DISPLAY}
258 @vindex \TEXT\
259 @ref{\TEXT\,,\DISPLAY\,notation,Manuel de notation}
260 @end macro
261
262 @macro ressay{TEXT}
263 @vindex \TEXT\
264 @ref{\TEXT\,,,essay,Essay}
265 @end macro
266
267 @macro ressaynamed{TEXT,DISPLAY}
268 @vindex \TEXT\
269 @ref{\TEXT\,,\DISPLAY\,essay,Essay}
270 @end macro
271
272 @macro rprogram{TEXT}
273 @vindex \TEXT\
274 @ref{\TEXT\,,,usage,Manuel d'utilisation du programme}
275 @end macro
276
277 @macro rprogramnamed{TEXT,DISPLAY}
278 @vindex \TEXT\
279 @ref{\TEXT\,,\DISPLAY\,usage,Manuel d'utilisation du programme}
280 @end macro
281
282 @macro rlsr{TEXT}
283 @vindex \TEXT\
284 @ref{\TEXT\,,,snippets,Exemples de code}
285 @end macro
286
287 @macro rlsrnamed{TEXT,DISPLAY}
288 @ref{\TEXT\,,\DISPLAY\,snippets,Exemples de code}
289 @end macro
290
291 @macro rinternals{TEXT}
292 @vindex \TEXT\
293 @ref{\TEXT\,,,internals,Référence des propriétés internes}
294 @end macro
295
296 @macro rinternalsnamed{TEXT,DISPLAY}
297 @vindex \TEXT\
298 @ref{\TEXT\,,,internals,Référence des propriétés internes}
299 @end macro
300
301 @end ifclear
302
303 @end ifnottex
304
305
306 @c *** TeX ***
307
308 @iftex
309
310 @c All commands below should work in the middle of the line;
311 @c we thus must not use @vindex directly since it works only if placed
312 @c on a line of its own.  To overcome this problem, we define a
313 @c replacement macro using the internal definition of @vindex which
314 @c delimits arguments in the standard way (i.e., with braces).
315
316 @tex
317 \gdef\lilyvindex#1{\doind{vr}{\code{#1}}\ignorespaces}
318 @end tex
319
320 @macro rglos{TEXT}
321 @lilyvindex{\TEXT\}
322 @ref{\TEXT\,,,music-glossary,Glossaire}
323 @end macro
324
325 @macro rglosnamed{TEXT,DISPLAY}
326 @lilyvindex{\TEXT\}
327 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glossaire}
328 @end macro
329
330 @macro rlearning{TEXT}
331 @lilyvindex{\TEXT\}
332 @ref{\TEXT\,,,learning.fr,Manuel d'initiation}
333 @end macro
334
335 @macro rlearningnamed{TEXT,DISPLAY}
336 @lilyvindex{\TEXT\}
337 @ref{\TEXT\,,\DISPLAY\,learning.fr,Manuel d'initiation}
338 @end macro
339
340 @macro ruser{TEXT}
341 @lilyvindex{\TEXT\}
342 @ref{\TEXT\,,,notation.fr,Manuel de notation}
343 @end macro
344
345 @macro rusernamed{TEXT,DISPLAY}
346 @lilyvindex{\TEXT\}
347 @ref{\TEXT\,,\DISPLAY\,notation.fr,Manuel de notation}
348 @end macro
349
350 @macro ressay{TEXT}
351 @vindex \TEXT\
352 @ref{\TEXT\,,,lilypond-essay,Essay}
353 @end macro
354
355 @macro ressaynamed{TEXT,DISPLAY}
356 @vindex \TEXT\
357 @ref{\TEXT\,,\DISPLAY\,lilypond-essay,Essay}
358 @end macro
359
360 @macro rprogram{TEXT}
361 @lilyvindex{\TEXT\}
362 @ref{\TEXT\,,,usage.fr,Manuel d'utilisation du programme}
363 @end macro
364
365 @macro rprogramnamed{TEXT,DISPLAY}
366 @lilyvindex{\TEXT\}
367 @ref{\TEXT\,,\DISPLAY\,usage.fr,Manuel d'utilisation du programme}
368 @end macro
369
370 @macro rlsr{TEXT}
371 @lilyvindex{\TEXT\}
372 @ref{\TEXT\,,,snippets,Exemples de code}
373 @end macro
374
375 @macro rlsrnamed{TEXT,DISPLAY}
376 @lilyvindex{\TEXT\}
377 @ref{\TEXT\,,\DISPLAY\,snippets,Exemples de code}
378 @end macro
379
380 @macro rinternals{TEXT}
381 @lilyvindex{\TEXT\}
382 @ref{\TEXT\,,,internals,Référence des propriétés internes}
383 @end macro
384
385 @macro rinternalsnamed{TEXT,DISPLAY}
386 @lilyvindex{\TEXT\}
387 @ref{\TEXT\,,,internals,Référence des propriétés internes}
388 @end macro
389
390 @end iftex
391
392
393 @c   ***** Macros specific to translated docs *****
394
395 @macro englishref
396 Cette section n'est pas encore encore traduite, veuillez
397 vous reporter à la documentation correspondante en anglais.
398 @end macro