]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/fr/notation/notation-appendices.itely
New upstream version 2.19.80
[lilypond.git] / Documentation / fr / notation / notation-appendices.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*-
2
3 @ignore
4   Translation of GIT committish: 87fb7f0387225886cff0c3bf332e1ab1b60afabb
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.28"
12
13 @c Translators: Frédéric Chiasson, Jean-Charles Malahieude
14
15 @node Tables du manuel de notation
16 @appendix Tables du manuel de notation
17 @translationof Notation manual tables
18
19 @menu
20 * Table des noms d'accord::
21 * Modificateurs d'accord usuels::
22 * Accordages prédéfinis::
23 * Diagrammes d'accord prédéfinis::
24 * Formats de papier prédéfinis::
25 * Instruments MIDI::
26 * Liste des couleurs::
27 * La fonte Emmentaler::
28 * Styles de tête de note::
29 * Styles de clef::
30 * Commandes pour markup::
31 * Commandes pour liste de markups::
32 * Liste des caractères spéciaux::
33 * Liste des signes d'articulation::
34 * Notes utilisées en percussion::
35 * Glossaire technique::
36 * Liste des propriétés de contexte::
37 * Propriétés de mise en forme::
38 * Fonctions musicales prédéfinies::
39 * Identificateurs de modification de contexte::
40 * Types de prédicats prédéfinis::
41 * Fonctions Scheme::
42 @end menu
43
44
45 @node Table des noms d'accord
46 @appendixsec Table des noms d'accord
47 @translationof Chord name chart
48
49 La liste suivante répertorie les noms des accords selon les deux types
50 les plus répandus, ainsi que ce qu'ils représentent.
51
52 @lilypondfile{chord-names-jazz.ly}
53
54
55 @node Modificateurs d'accord usuels
56 @appendixsec Modificateurs d'accord usuels
57 @translationof Common chord modifiers
58
59 Le tableau suivant indique les différents modificateurs qui permettent
60 d'obtenir les structures habituelles d'un certain nombre d'accords.
61
62 @multitable @columnfractions .2 .25 .2 .15 .2
63
64 @item
65 @b{Type}
66 @tab
67 @b{Intervalle}
68 @tab
69 @b{Modificateur}
70 @tab
71 @b{Exemple}
72 @tab
73 @b{Résultat}
74
75
76 @item
77 Majeur
78 @tab
79 Tierce majeure @*et quinte juste
80 @tab
81 @code{5} ou rien
82 @tab
83 @code{c1:5}
84 @tab
85 @lilypond[line-width=2.1\cm,notime]
86 <<
87   \chords { c1:5 }
88   \chordmode { c1:5 }
89 >>
90 @end lilypond
91
92 @item
93 Mineur
94 @tab
95 Tierce mineure @*et quinte juste
96 @tab
97 @code{m} ou @code{m5}
98 @tab
99 @code{c1:m}
100 @tab
101 @lilypond[line-width=2.1\cm,noragged-right,notime]
102 <<
103   \chords { c1:m }
104   \chordmode { c1:m }
105 >>
106 @end lilypond
107
108 @item
109 Augmenté
110 @tab
111 Tierce majeure et @*quinte augmentée
112 @tab
113 @code{aug}
114 @tab
115 @code{c1:aug}
116 @tab
117 @lilypond[line-width=2.1\cm,noragged-right,notime]
118 <<
119   \chords { c1:aug }
120   \chordmode { c1:aug }
121 >>
122 @end lilypond
123
124 @item
125 Diminué
126 @tab
127 Tierce mineure et @*quinte diminuée
128 @tab
129 @code{dim}
130 @tab
131 @code{c1:dim}
132 @tab
133 @lilypond[line-width=2.1\cm,noragged-right,notime]
134 <<
135   \chords { c1:dim }
136   \chordmode { c1:dim }
137 >>
138 @end lilypond
139
140 @item
141 Septième de dominante
142 @tab
143 Triton majeur et @*septième mineure
144 @tab
145 @code{7}
146 @tab
147 @code{c1:7}
148 @tab
149 @lilypond[line-width=2.1\cm,noragged-right,notime]
150 <<
151   \chords { c1:7 }
152   \chordmode { c1:7 }
153 >>
154 @end lilypond
155
156 @item
157 Septième majeure
158 @tab
159 Triton majeur et @*septième majeure
160 @tab
161 @code{maj7} ou @code{maj}
162 @tab
163 @code{c1:maj7}
164 @tab
165 @lilypond[line-width=2.1\cm,noragged-right,notime]
166 <<
167   \chords { c1:maj7 }
168   \chordmode { c1:maj7 }
169 >>
170 @end lilypond
171
172 @item
173 Septième mineure
174 @tab
175 Triton mineur et @*septième mineure
176 @tab
177 @code{m7}
178 @tab
179 @code{c1:m7}
180 @tab
181 @lilypond[line-width=2.1\cm,noragged-right,notime]
182 <<
183   \chords { c1:m7 }
184   \chordmode { c1:m7 }
185 >>
186 @end lilypond
187
188 @item
189 Septième diminuée
190 @tab
191 Triton diminué et @*septième diminuée
192 @tab
193 @code{dim7}
194 @tab
195 @code{c1:dim7}
196 @tab
197 @lilypond[line-width=2.1\cm,noragged-right,notime]
198 <<
199   \chords { c1:dim7}
200   \chordmode { c1:dim7 }
201 >>
202 @end lilypond
203
204 @item
205 Septième augmentée
206 @tab
207 Triton augmenté et @*septième mineure
208 @tab
209 @code{aug7}
210 @tab
211 @code{c1:aug7}
212 @tab
213 @lilypond[line-width=2.1\cm,noragged-right,notime]
214 <<
215   \chords { c1:aug7 }
216   \chordmode { c1:aug7 }
217 >>
218 @end lilypond
219
220 @item
221 Septième semi-diminuée
222 @tab
223 Triton diminué et @*septième mineure
224 @tab
225 @code{m7.5-}
226 @tab
227 @code{c1:m7.5-}
228 @tab
229 @lilypond[line-width=2.1\cm,noragged-right,notime]
230 <<
231   \chords { c1:m7.5- }
232   \chordmode { c1:m7.5- }
233 >>
234 @end lilypond
235
236 @item
237 Accord mineur avec septième majeure
238 @tab
239 Triton mineur et @*septième majeure
240 @tab
241 @code{m7+}
242 @tab
243 @code{c1:m7+}
244 @tab
245 @lilypond[line-width=2.1\cm,noragged-right,notime]
246 <<
247   \chords { c1:m7+ }
248   \chordmode { c1:m7+ }
249 >>
250 @end lilypond
251
252 @item
253 Sixte majeure
254 @tab
255 Triton majeur @*et sixte
256 @tab
257 @code{6}
258 @tab
259 @code{c1:6}
260 @tab
261 @lilypond[line-width=2.1\cm,noragged-right,notime]
262 <<
263   \chords { c1:6 }
264   \chordmode { c1:6 }
265 >>
266 @end lilypond
267
268 @item
269 Sixte mineure
270 @tab
271 Triton mineur @*et sixte
272 @tab
273 @code{m6}
274 @tab
275 @code{c1:m6}
276 @tab
277 @lilypond[line-width=2.1\cm,noragged-right,notime]
278 <<
279   \chords { c1:m6 }
280   \chordmode { c1:m6 }
281 >>
282 @end lilypond
283
284 @item
285 Neuvième de dominante
286 @tab
287 Septième de dominante @*et neuvième majeure
288 @tab
289 @code{9}
290 @tab
291 @code{c1:9}
292 @tab
293 @lilypond[line-width=2.1\cm,noragged-right,notime]
294 <<
295   \chords { c1:9 }
296   \chordmode { c1:9 }
297 >>
298 @end lilypond
299
300 @item
301 Neuvième majeure
302 @tab
303 Septième majeure et @*neuvième majeure
304 @tab
305 @code{maj9}
306 @tab
307 @code{c1:maj9}
308 @tab
309 @lilypond[line-width=2.1\cm,noragged-right,notime]
310 <<
311   \chords { c1:maj9 }
312   \chordmode { c1:maj9 }
313 >>
314 @end lilypond
315
316 @item
317 Neuvième mineure
318 @tab
319 Septième mineure et @*neuvième majeure
320 @tab
321 @code{m9}
322 @tab
323 @code{c1:m9}
324 @tab
325 @lilypond[line-width=2.1\cm,noragged-right,notime]
326 <<
327   \chords { c1:m9 }
328   \chordmode { c1:m9 }
329 >>
330 @end lilypond
331
332 @item
333 Onzième de dominante
334 @tab
335 Neuvième de dominante @*et onzième juste
336 @tab
337 @code{11}
338 @tab
339 @code{c1:11}
340 @tab
341 @lilypond[line-width=2.1\cm,noragged-right,notime]
342 <<
343   \chords { c1:11 }
344   \chordmode { c1:11 }
345 >>
346 @end lilypond
347
348 @item
349 Onzième majeure
350 @tab
351 Neuvième majeure @*et onzième juste
352 @tab
353 @code{maj11}
354 @tab
355 @code{c1:maj11}
356 @tab
357 @lilypond[line-width=2.1\cm,noragged-right,notime]
358 <<
359   \chords { c1:maj11 }
360   \chordmode { c1:maj11 }
361 >>
362 @end lilypond
363
364 @item
365 Onzième mineure
366 @tab
367 Neuvième mineure @*et onzième juste
368 @tab
369 @code{m11}
370 @tab
371 @code{c1:m11}
372 @tab
373 @lilypond[line-width=2.1\cm,noragged-right,notime]
374 <<
375   \chords { c1:m11 }
376   \chordmode { c1:m11 }
377 >>
378 @end lilypond
379
380 @item
381 Treizième de dominante
382 @tab
383 Neuvième de dominante @*et treizième majeure
384 @tab
385 @code{13}
386 @tab
387 @code{c1:13}
388 @tab
389 @lilypond[line-width=2.1\cm,noragged-right,notime]
390 <<
391   \chords { c1:13 }
392   \chordmode { c1:13 }
393 >>
394 @end lilypond
395
396 @item
397 Treizième de dominante
398 @tab
399 Onzième de dominante @*et treizième majeure
400 @tab
401 @code{13.11}
402 @tab
403 @code{c1:13.11}
404 @tab
405 @lilypond[line-width=2.1\cm,noragged-right,notime]
406 <<
407   \chords{ c1:13.11 }
408   \chordmode { c1:13.11 }
409 >>
410 @end lilypond
411
412 @item
413 Treizième majeure
414 @tab
415 Onzième majeure et @*treizième majeure
416 @tab
417 @code{maj13.11}
418 @tab
419 @code{c1:maj13.11}
420 @tab
421 @lilypond[line-width=2.1\cm,noragged-right,notime]
422 <<
423   \chords { c1:maj13.11 }
424   \chordmode { c1:maj13.11 }
425 >>
426 @end lilypond
427
428 @item
429 Treizième mineure
430 @tab
431 Onzième mineure et @*treizième majeure
432 @tab
433 @code{m13.11}
434 @tab
435 @code{c1:m13.11}
436 @tab
437 @lilypond[line-width=2.1\cm,noragged-right,notime]
438 <<
439   \chords { c1:m13.11 }
440   \chordmode { c1:m13.11 }
441 >>
442 @end lilypond
443
444 @item
445 Seconde suspendue
446 @tab
447 Seconde majeure @*et quinte juste
448 @tab
449 @code{sus2}
450 @tab
451 @code{c1:sus2}
452 @tab
453 @lilypond[line-width=2.1\cm,noragged-right,notime]
454 <<
455   \chords { c1:sus2 }
456   \chordmode { c1:sus2 }
457 >>
458 @end lilypond
459
460 @item
461 Quarte suspendue
462 @tab
463 Quarte juste @*et quinte juste
464 @tab
465 @code{sus4}
466 @tab
467 @code{c1:sus4}
468 @tab
469 @lilypond[line-width=2.1\cm,noragged-right,notime]
470 <<
471   \chords { c1:sus4 }
472   \chordmode { c1:sus4 }
473 >>
474 @end lilypond
475
476 @item
477 Power chord @*(deux voix)
478 @tab
479 Quinte juste
480 @tab
481 @code{1.5}
482 @tab
483 @code{\powerChords c1:5}
484 @tab
485 @lilypond[line-width=2.1\cm,noragged-right,notime]
486 \chordmode { \powerChords c1:5 }
487 @end lilypond
488
489 @item
490 Power chord @*(trois voix)
491 @tab
492 Quinte juste @*et octave
493 @tab
494 @code{1.5.8}
495 @tab
496 @code{\powerChords c1:5.8}
497 @tab
498 @lilypond[line-width=2.1\cm,noragged-right,notime]
499   \chordmode { \powerChords c1:5.8 }
500 @end lilypond
501
502 @end multitable
503
504
505 @node Accordages prédéfinis
506 @appendixsec Accordages prédéfinis
507 @translationof Predefined string tunings
508
509 La liste suivante répertorie les différents accordages dont LilyPond
510 dispose.
511
512 @lilypondfile{display-predefined-string-tunings.ly}
513
514
515 @node Diagrammes d'accord prédéfinis
516 @appendixsec Diagrammes d'accord prédéfinis
517 @translationof Predefined fretboard diagrams
518
519 @menu
520 * Diagrammes pour guitare::
521 * Diagrammes pour ukulele::
522 * Diagrammes pour mandoline::
523 @end menu
524
525
526 @node Diagrammes pour guitare
527 @unnumberedsubsec Diagrammes pour guitare
528 @translationof Diagrams for Guitar
529
530 @lilypondfile[line-width=15.5\cm]{display-predefined-fretboards.ly}
531
532
533 @node Diagrammes pour ukulele
534 @unnumberedsubsec Diagrammes pour ukulele
535 @translationof Diagrams for Ukulele
536
537 @lilypondfile[line-width=15.5\cm]{display-predefined-ukulele-fretboards.ly}
538
539
540 @node Diagrammes pour mandoline
541 @unnumberedsubsec Diagrammes pour mandoline
542 @translationof Diagrams for Mandolin
543
544 @lilypondfile[line-width=15.5\cm]{display-predefined-mandolin-fretboards.ly}
545
546
547 @node Formats de papier prédéfinis
548 @appendixsec Formats de papier prédéfinis
549 @translationof Predefined paper sizes
550
551 Les formats de page sont définis dans le fichier @file{scm/paper.scm}.
552
553 @noindent
554 @strong{La série A @qq{ISO 216}}
555 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
556 @item "a10"
557 @tab (26 x 37 mm)
558 @item "a9"
559 @tab (37 x 52 mm)
560 @item "a8"
561 @tab (52 x 74 mm)
562 @item "a7"
563 @tab (74 x 105 mm)
564 @item "a6"
565 @tab (105 x 148 mm)
566 @item "a5"
567 @tab (148 x 210 mm)
568 @item "a4"
569 @tab (210 x 297 mm)
570 @item "a3"
571 @tab (297 x 420 mm)
572 @item "a2"
573 @tab (420 x 594 mm)
574 @item "a1"
575 @tab (594 x 841 mm)
576 @item "a0"
577 @tab (841 x 1189 mm)
578 @end multitable
579
580 @noindent
581 @strong{La série B @qq{ISO 216}}
582 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
583 @item "b10"
584 @tab (31 x 44 mm)
585 @item "b9"
586 @tab (44 x 62 mm)
587 @item "b8"
588 @tab (62 x 88 mm)
589 @item "b7"
590 @tab (88 x 125 mm)
591 @item "b6"
592 @tab (125 x 176 mm)
593 @item "b5"
594 @tab (176 x 250 mm)
595 @item "b4"
596 @tab (250 x 353 mm)
597 @item "b3"
598 @tab (353 x 500 mm)
599 @item "b2"
600 @tab (500 x 707 mm)
601 @item "b1"
602 @tab (707 x 1000 mm)
603 @item "b0"
604 @tab (1000 x 1414 mm)
605 @end multitable
606
607 @noindent
608 @strong{Deux tailles étendues, définies par la @qq{DIN 476}}
609 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
610 @item "4a0"
611 @tab (1682 x 2378 mm)
612 @item "2a0"
613 @tab (1189 x 1682 mm)
614 @end multitable
615
616 @noindent
617 @strong{La série C standard @qq{ISO 269}}
618 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
619 @item "c10"
620 @tab (28 x 40 mm)
621 @item "c9"
622 @tab (40 x 57 mm)
623 @item "c8"
624 @tab (57 x 81 mm)
625 @item "c7"
626 @tab (81 x 114 mm)
627 @item "c6"
628 @tab (114 x 162 mm)
629 @item "c5"
630 @tab (162 x 229 mm)
631 @item "c4"
632 @tab (229 x 324 mm)
633 @item "c3"
634 @tab (324 x 458 mm)
635 @item "c2"
636 @tab (458 x 648 mm)
637 @item "c1"
638 @tab (648 x 917 mm)
639 @item "c0"
640 @tab (917 x 1297 mm)
641 @end multitable
642
643 @noindent
644 @strong{Formats nord américains}
645 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
646 @item "junior-legal"
647 @tab (8.0 x 5.0 in)
648 @item "legal"
649 @tab (8.5 x 14.0 in)
650 @item "ledger"
651 @tab (17.0 x 11.0 in)
652 @item "letter"
653 @tab (8.5 x 11.0 in)
654 @item "tabloid"
655 @tab (11.0 x 17.0 in)
656 @item "11x17"
657 @tab (11.0 x 17.0 in)
658 @item "17x11"
659 @tab (17.0 x 11.0 in)
660 @end multitable
661
662 @noindent
663 @strong{Government-letter, défini par le @emph{IEEE Printer Working
664 Group}, à l'usage des enfants}
665 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
666 @item "government-letter"
667 @tab (8 x 10.5 in)
668 @item "government-legal"
669 @tab (8.5 x 13.0 in)
670 @item "philippine-legal"
671 @tab (8.5 x 13.0 in)
672 @end multitable
673
674 @noindent
675 @strong{Formats ANSI}
676 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
677 @item "ansi a"
678 @tab (8.5 x 11.0 in)
679 @item "ansi b"
680 @tab (17.0 x 11.0 in)
681 @item "ansi c"
682 @tab (17.0 x 22.0 in)
683 @item "ansi d"
684 @tab (22.0 x 34.0 in)
685 @item "ansi e"
686 @tab (34.0 x 44.0 in)
687 @item "engineering f"
688 @tab (28.0 x 40.0 in)
689 @end multitable
690
691 @noindent
692 @strong{Formats nord américains pour l'architecture}
693 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
694 @item "arch a"
695 @tab (9.0 x 12.0 in)
696 @item "arch b"
697 @tab (12.0 x 18.0 in)
698 @item "arch c"
699 @tab (18.0 x 24.0 in)
700 @item "arch d"
701 @tab (24.0 x 36.0 in)
702 @item "arch e"
703 @tab (36.0 x 48.0 in)
704 @item "arch e1"
705 @tab (30.0 x 42.0 in)
706 @end multitable
707
708 @noindent
709 @strong{Formats anciens, toujours en vigueur dans le Royaume Uni}
710 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
711 @item "statement"
712 @tab (5.5 x 8.5 in)
713 @item "half letter"
714 @tab (5.5 x 8.5 in)
715 @item "quarto"
716 @tab (8.0 x 10.0 in)
717 @item "octavo"
718 @tab (6.75 x 10.5 in)
719 @item "executive"
720 @tab (7.25 x 10.5 in)
721 @item "monarch"
722 @tab (7.25 x 10.5 in)
723 @item "foolscap"
724 @tab (8.27 x 13.0 in)
725 @item "folio"
726 @tab (8.27 x 13.0 in)
727 @item "super-b"
728 @tab (13.0 x 19.0 in)
729 @item "post"
730 @tab (15.5 x 19.5 in)
731 @item "crown"
732 @tab (15.0 x 20.0 in)
733 @item "large post"
734 @tab (16.5 x 21.0 in)
735 @item "demy"
736 @tab (17.5 x 22.5 in)
737 @item "medium"
738 @tab (18.0 x 23.0 in)
739 @item "broadsheet"
740 @tab (18.0 x 24.0 in)
741 @item "royal"
742 @tab (20.0 x 25.0 in)
743 @item "elephant"
744 @tab (23.0 x 28.0 in)
745 @item "double demy"
746 @tab (22.5 x 35.0 in)
747 @item "quad demy"
748 @tab (35.0 x 45.0 in)
749 @item "atlas"
750 @tab (26.0 x 34.0 in)
751 @item "imperial"
752 @tab (22.0 x 30.0 in)
753 @item "antiquarian"
754 @tab (31.0 x 53.0 in)
755 @end multitable
756
757 @noindent
758 @strong{Formats de base PA4}
759 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
760 @item "pa0"
761 @tab (840 x 1120 mm)
762 @item "pa1"
763 @tab (560 x 840 mm)
764 @item "pa2"
765 @tab (420 x 560 mm)
766 @item "pa3"
767 @tab (280 x 420 mm)
768 @item "pa4"
769 @tab (210 x 280 mm)
770 @item "pa5"
771 @tab (140 x 210 mm)
772 @item "pa6"
773 @tab (105 x 140 mm)
774 @item "pa7"
775 @tab (70 x 105 mm)
776 @item "pa8"
777 @tab (52 x 70 mm)
778 @item "pa9"
779 @tab (35 x 52 mm)
780 @item "pa10"
781 @tab (26 x 35 mm)
782 @end multitable
783
784 @noindent
785 @strong{Format utilisé en Asie du Sudest et en Australie}
786 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
787 @item "f4"
788 @tab (210 x 330 mm)
789 @end multitable
790
791 @noindent
792 @strong{Format spécifique aux courts exemples @code{@@lilypond} de la
793 documentation, basé sur un A8 à l'italienne.}
794 @multitable {@code{"government-letter "}} { (abcd x abcd mm)}
795 @item "a8landscape"
796 @tab (74 x 52 mm)
797 @end multitable
798
799
800 @node Instruments MIDI
801 @appendixsec Instruments MIDI
802 @translationof MIDI instruments
803
804 La liste suivante répertorie les différentes dénominations que vous
805 pouvez affecter à la propriété @code{midiInstrument}.  L'ordre dans
806 lequel ils sont rangés, par colonne, correspond aux 128 programmes du
807 standard @emph{General MIDI}.
808
809 @example
810 acoustic grand            contrabass           lead 7 (fifths)
811 bright acoustic           tremolo strings      lead 8 (bass+lead)
812 electric grand            pizzicato strings    pad 1 (new age)
813 honky-tonk                orchestral harp      pad 2 (warm)
814 electric piano 1          timpani              pad 3 (polysynth)
815 electric piano 2          string ensemble 1    pad 4 (choir)
816 harpsichord               string ensemble 2    pad 5 (bowed)
817 clav                      synthstrings 1       pad 6 (metallic)
818 celesta                   synthstrings 2       pad 7 (halo)
819 glockenspiel              choir aahs           pad 8 (sweep)
820 music box                 voice oohs           fx 1 (rain)
821 vibraphone                synth voice          fx 2 (soundtrack)
822 marimba                   orchestra hit        fx 3 (crystal)
823 xylophone                 trumpet              fx 4 (atmosphere)
824 tubular bells             trombone             fx 5 (brightness)
825 dulcimer                  tuba                 fx 6 (goblins)
826 drawbar organ             muted trumpet        fx 7 (echoes)
827 percussive organ          french horn          fx 8 (sci-fi)
828 rock organ                brass section        sitar
829 church organ              synthbrass 1         banjo
830 reed organ                synthbrass 2         shamisen
831 accordion                 soprano sax          koto
832 harmonica                 alto sax             kalimba
833 concertina                tenor sax            bagpipe
834 acoustic guitar (nylon)   baritone sax         fiddle
835 acoustic guitar (steel)   oboe                 shanai
836 electric guitar (jazz)    english horn         tinkle bell
837 electric guitar (clean)   bassoon              agogo
838 electric guitar (muted)   clarinet             steel drums
839 overdriven guitar         piccolo              woodblock
840 distorted guitar          flute                taiko drum
841 guitar harmonics          recorder             melodic tom
842 acoustic bass             pan flute            synth drum
843 electric bass (finger)    blown bottle         reverse cymbal
844 electric bass (pick)      shakuhachi           guitar fret noise
845 fretless bass             whistle              breath noise
846 slap bass 1               ocarina              seashore
847 slap bass 2               lead 1 (square)      bird tweet
848 synth bass 1              lead 2 (sawtooth)    telephone ring
849 synth bass 2              lead 3 (calliope)    helicopter
850 violin                    lead 4 (chiff)       applause
851 viola                     lead 5 (charang)     gunshot
852 cello                     lead 6 (voice)
853 @end example
854
855
856 @node Liste des couleurs
857 @appendixsec Liste des couleurs
858 @translationof List of colors
859
860
861 @subsubheading Couleurs de base
862
863 La syntaxe appropriée à la gestion des couleurs est traitée au chapitre
864 @ref{Coloration d'objets}.
865
866 @cindex liste des couleurs
867 @cindex couleurs, liste
868
869 @verbatim
870 black       white          red         green
871 blue        cyan           magenta     yellow
872 grey        darkred        darkgreen   darkblue
873 darkcyan    darkmagenta    darkyellow
874 @end verbatim
875
876
877 @subsubheading Noms de couleur X
878
879 Les noms de couleur X peuvent s'employer de différentes manières.
880
881 Un nom de couleur peut s'écrire sous la forme d'un mot composé et sans
882 espace auquel chaque élément prend un initiale capitalisée (p. ex.
883 @code{LightSlateBlue}).  Il peut aussi s'exprimer sous la forme d'une
884 suite de mots, auquel cas les initiales ne sont pas capitalisées
885 (par ex. @code{light slate blue}).
886
887 Le @emph{gris} accepte aussi bien l'orthographe @qq{grey} que
888 @qq{gray} (par ex. @code{DarkSlateGray}).
889
890 Certains noms peuvent prendre un suffixe numérique, comme
891 @code{LightSalmon4}.
892
893
894 @subsubheading Noms de couleur sans suffixe numérique
895
896 @verbatim
897 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
898 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
899 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
900 ivory           LemonChiffon    seashell        honeydew        MintCream
901 azure           AliceBlue       lavender        LavenderBlush   MistyRose
902 white           black           DarkSlateGrey   DimGrey         SlateGrey
903 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
904 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
905 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
906 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
907 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
908 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
909 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
910 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
911 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
912 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
913 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
914 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
915 SaddleBrown     sienna          peru            burlywood       beige
916 wheat           SandyBrown      tan             chocolate       firebrick
917 brown           DarkSalmon      salmon          LightSalmon     orange
918 DarkOrange      coral           LightCoral      tomato          OrangeRed
919 red             HotPink         DeepPink        pink            LightPink
920 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
921 violet          plum            orchid          MediumOrchid    DarkOrchid
922 DarkViolet      BlueViolet      purple          MediumPurple    thistle
923 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
924 LightGreen
925 @end verbatim
926
927
928 @subsubheading Noms de couleur avec suffixe numérique
929
930 Les couleurs suivantes acceptent un suffixe numérique @var{N} compris
931 entre 1 et 4.
932
933 @verbatim
934 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
935 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
936 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
937 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
938 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
939 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
940 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
941 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
942 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
943 IndianRedN      siennaN         burlywoodN      wheatN          tanN
944 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
945 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
946 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
947 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
948 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
949 thistleN
950 @end verbatim
951
952
953 @subsubheading Échelle de gris
954
955 Une échelle de gris s'obtient en utilisant
956
957 @example
958 greyN
959 @end example
960
961 @noindent
962 où @var{N} est compris entre 0 et 100.
963
964
965 @node La fonte Emmentaler
966 @appendixsec La fonte Emmentaler
967 @translationof The Emmentaler font
968
969 @cindex Emmentaler fonte
970 @cindex Fonte, Emmentaler
971 @cindex Feta, glyphes
972 @cindex Glyphes Feta
973 @cindex Parmesan, glyphes
974 @cindex Glyphes Parmesan
975
976 La fonte Emmentaler est constituée de deux @emph{jeux} de glyphes :
977 « Feta » est utilisé pour la notation classique, et « Parmesan » pour la
978 notation ancienne.
979
980
981 Les différents symboles -- ou glyphes -- de la fonte Emmentaler peuvent
982 s'inclure directement dans un objet @emph{markup}.  Pour ce faire, il
983 suffit d'employer le nom du glyphe (voir les tables ci-après) comme ceci :
984
985 @example
986 g^\markup @{ \musicglyph #"scripts.segno" @}
987 @end example
988
989 @noindent
990 ou
991
992 @example
993 \markup @{ \musicglyph #"five" @}
994 @end example
995
996 Pour de plus amples informations, reportez-vous au chapitre
997 @ref{Mise en forme du texte}.
998
999 @menu
1000 * Glyphes de clef::
1001 * Glyphes de métrique::
1002 * Glyphes de chiffre::
1003 * Glyphes d'altération::
1004 * Glyphes de tête de note par défaut::
1005 * Glyphes de tête de note spéciale::
1006 * Glyphes de tête de note à forme variable::
1007 * Glyphes de silence::
1008 * Glyphes de crochet de croche::
1009 * Glyphes de point::
1010 * Glyphes de nuance::
1011 * Glyphes de script::
1012 * Glyphes de flèche::
1013 * Glyphes d'extrémité d'accolade::
1014 * Glyphes de pédale::
1015 * Glyphes d'accordéon::
1016 * Glyphes de liaison::
1017 * Glyphes de style vaticana::
1018 * Glyphes de style medicaea::
1019 * Glyphes de style Hufnagel::
1020 * Glyphes de style mensural::
1021 * Glyphes de style néomensural::
1022 * Glyphes de style Petrucci::
1023 * Glyphes de style Solesmes::
1024 * Glyphes de style kiévien::
1025 @end menu
1026
1027
1028 @node Glyphes de clef
1029 @unnumberedsubsec Glyphes de clef
1030 @translationof Clef glyphs
1031
1032 @lilypond[quote]
1033 \include "font-table.ly"
1034 \markuplist \override-lines #'(word-space . 4)
1035             \doc-chars #clefs
1036 @end lilypond
1037
1038
1039 @node Glyphes de métrique
1040 @unnumberedsubsec Glyphes de métrique
1041 @translationof Time Signature glyphs
1042
1043 @lilypond[quote]
1044 \include "font-table.ly"
1045 \markuplist \override-lines #'(word-space . 4)
1046             \doc-chars #timesig
1047 @end lilypond
1048
1049
1050 @node Glyphes de chiffre
1051 @unnumberedsubsec Glyphes de chiffre
1052 @translationof Number glyphs
1053
1054 @lilypond[quote]
1055 \include "font-table.ly"
1056 \markuplist \override-lines #'(word-space . 4)
1057             \doc-chars #numbers
1058 @end lilypond
1059
1060
1061 @node Glyphes d'altération
1062 @unnumberedsubsec Glyphes d'altération
1063 @translationof Accidental glyphs
1064
1065 @lilypond[quote]
1066 \include "font-table.ly"
1067 \markuplist \override-lines #'(word-space . 4)
1068             \doc-chars #accidentals
1069 @end lilypond
1070
1071
1072 @node Glyphes de tête de note par défaut
1073 @unnumberedsubsec Glyphes de tête de note par défaut
1074 @translationof Default Notehead glyphs
1075
1076 @lilypond[quote]
1077 \include "font-table.ly"
1078 \markuplist \override-lines #'(word-space . 4)
1079             \doc-chars #default-noteheads
1080 @end lilypond
1081
1082
1083 @node Glyphes de tête de note spéciale
1084 @unnumberedsubsec Glyphes de tête de note spéciale
1085 @translationof Special Notehead glyphs
1086
1087 @lilypond[quote]
1088 \include "font-table.ly"
1089 \markuplist \override-lines #'(word-space . 4)
1090             \doc-chars #special-noteheads
1091 @end lilypond
1092
1093
1094 @node Glyphes de tête de note à forme variable
1095 @unnumberedsubsec Glyphes de tête de note à forme variable
1096 @translationof Shape-note Notehead glyphs
1097
1098 @lilypond[quote]
1099 \include "font-table.ly"
1100 \markuplist \override-lines #'(word-space . 4)
1101             \doc-chars #shape-note-noteheads
1102 @end lilypond
1103
1104
1105 @node Glyphes de silence
1106 @unnumberedsubsec Glyphes de silence
1107 @translationof Rest glyphs
1108
1109 @lilypond[quote]
1110 \include "font-table.ly"
1111 \markuplist \override-lines #'(word-space . 4)
1112             \doc-chars #rests
1113 @end lilypond
1114
1115
1116 @node Glyphes de crochet de croche
1117 @unnumberedsubsec Glyphes de crochet de croche
1118 @translationof Flag glyphs
1119
1120 @lilypond[quote]
1121 \include "font-table.ly"
1122 \markuplist \override-lines #'(word-space . 4)
1123             \doc-chars #flags
1124 @end lilypond
1125
1126
1127 @node Glyphes de point
1128 @unnumberedsubsec Glyphes de point
1129 @translationof Dot glyphs
1130
1131 @lilypond[quote]
1132 \include "font-table.ly"
1133 \markuplist \override-lines #'(word-space . 4)
1134             \doc-chars #dots
1135 @end lilypond
1136
1137
1138 @node Glyphes de nuance
1139 @unnumberedsubsec Glyphes de nuance
1140 @translationof Dynamic glyphs
1141
1142 @lilypond[quote]
1143 \include "font-table.ly"
1144 \markuplist \override-lines #'(word-space . 4)
1145             \doc-chars #dynamics
1146 @end lilypond
1147
1148
1149 @node Glyphes de script
1150 @unnumberedsubsec Glyphes de script
1151 @translationof Script glyphs
1152
1153 @lilypond[quote]
1154 \include "font-table.ly"
1155 \markuplist \override-lines #'(word-space . 4)
1156             \doc-chars #scripts
1157 @end lilypond
1158
1159
1160 @node Glyphes de flèche
1161 @unnumberedsubsec Glyphes de flèche
1162 @translationof Arrowhead glyphs
1163
1164 @lilypond[quote]
1165 \include "font-table.ly"
1166 \markuplist \override-lines #'(word-space . 4)
1167             \doc-chars #arrowheads
1168 @end lilypond
1169
1170
1171 @node Glyphes d'extrémité d'accolade
1172 @unnumberedsubsec Glyphes d'extrémité d'accolade
1173 @translationof Bracket-tip glyphs
1174
1175 @lilypond[quote]
1176 \include "font-table.ly"
1177 \markuplist \override-lines #'(word-space . 4)
1178             \doc-chars #brackettips
1179 @end lilypond
1180
1181
1182 @node Glyphes de pédale
1183 @unnumberedsubsec Glyphes de pédale
1184 @translationof Pedal glyphs
1185
1186 @lilypond[quote]
1187 \include "font-table.ly"
1188 \markuplist \override-lines #'(word-space . 4)
1189             \doc-chars #pedal
1190 @end lilypond
1191
1192
1193 @node Glyphes d'accordéon
1194 @unnumberedsubsec Glyphes d'accordéon
1195 @translationof Accordion glyphs
1196
1197 @lilypond[quote]
1198 \include "font-table.ly"
1199 \markuplist \override-lines #'(word-space . 4)
1200             \doc-chars #accordion
1201 @end lilypond
1202
1203
1204 @node Glyphes de liaison
1205 @unnumberedsubsec Glyphes de liaison
1206 @translationof Tie glyphs
1207
1208 @lilypond[quote]
1209 \include "font-table.ly"
1210 \markuplist \override-lines #'(word-space . 4)
1211             \doc-chars #ties
1212 @end lilypond
1213
1214
1215 @node Glyphes de style vaticana
1216 @unnumberedsubsec Glyphes de style vaticana
1217 @translationof Vaticana glyphs
1218
1219 @lilypond[quote]
1220 \include "font-table.ly"
1221 \markuplist \override-lines #'(word-space . 4)
1222             \doc-chars #vaticana
1223 @end lilypond
1224
1225
1226 @node Glyphes de style medicaea
1227 @unnumberedsubsec Glyphes de style medicaea
1228 @translationof Medicaea glyphs
1229
1230 @lilypond[quote]
1231 \include "font-table.ly"
1232 \markuplist \override-lines #'(word-space . 4)
1233             \doc-chars #medicaea
1234 @end lilypond
1235
1236
1237 @node Glyphes de style Hufnagel
1238 @unnumberedsubsec Glyphes de style Hufnagel
1239 @translationof Hufnagel glyphs
1240
1241 @lilypond[quote]
1242 \include "font-table.ly"
1243 \markuplist \override-lines #'(word-space . 4)
1244             \doc-chars #hufnagel
1245 @end lilypond
1246
1247
1248 @node Glyphes de style mensural
1249 @unnumberedsubsec Glyphes de style mensural
1250 @translationof Mensural glyphs
1251
1252 @lilypond[quote]
1253 \include "font-table.ly"
1254 \markuplist \override-lines #'(word-space . 4)
1255             \doc-chars #mensural
1256 @end lilypond
1257
1258
1259 @node Glyphes de style néomensural
1260 @unnumberedsubsec Glyphes de style néomensural
1261 @translationof Neomensural glyphs
1262
1263 @lilypond[quote]
1264 \include "font-table.ly"
1265 \markuplist \override-lines #'(word-space . 4)
1266             \doc-chars #neomensural
1267 @end lilypond
1268
1269
1270 @node Glyphes de style Petrucci
1271 @unnumberedsubsec Glyphes de style Petrucci
1272 @translationof Petrucci glyphs
1273
1274 @lilypond[quote]
1275 \include "font-table.ly"
1276 \markuplist \override-lines #'(word-space . 4)
1277             \doc-chars #petrucci
1278 @end lilypond
1279
1280
1281 @node Glyphes de style Solesmes
1282 @unnumberedsubsec Glyphes de style Solesmes
1283 @translationof Solesmes glyphs
1284
1285 @lilypond[quote]
1286 \include "font-table.ly"
1287 \markuplist \override-lines #'(word-space . 4)
1288             \doc-chars #solesmes
1289 @end lilypond
1290
1291
1292 @node Glyphes de style kiévien
1293 @unnumberedsubsec Glyphes de style kiévien
1294 @translationof Kievan Notation glyphs
1295
1296 @lilypond[quote]
1297 \include "font-table.ly"
1298 \markuplist \override-lines #'(word-space . 4)
1299              \doc-chars #kievan
1300 @end lilypond
1301
1302
1303 @node Styles de tête de note
1304 @appendixsec Styles de tête de note
1305 @translationof Note head styles
1306
1307 Voici les différents styles de tête de note disponibles.
1308
1309 @lilypondfile[noindent]{note-head-style.ly}
1310
1311
1312 @node Styles de clef
1313 @appendixsec Styles de clef
1314 @translationof Clef styles
1315
1316 Le tableau suivant répertorie tous les styles de clef disponibles
1317 ainsi que la position du @emph{do médium} par rapport à la clef.
1318
1319 @multitable @columnfractions .30 .2 .30 .2
1320
1321 @headitem
1322 Exemple
1323 @tab
1324 Résultat
1325 @tab
1326 Exemple
1327 @tab
1328 Résultat
1329
1330
1331 @item
1332 @code{\clef G}
1333 @tab
1334 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1335 \clef G c1
1336 @end lilypond
1337
1338 @tab
1339 @code{\clef "G2"}
1340 @tab
1341 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1342 \clef "G2"
1343 c1
1344 @end lilypond
1345
1346 @item
1347 @code{\clef treble}
1348 @tab
1349 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1350 \clef treble
1351 c1
1352 @end lilypond
1353
1354 @tab
1355 @code{\clef violin}
1356 @tab
1357 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1358 \clef violin
1359 c1
1360 @end lilypond
1361
1362 @item
1363 @code{\clef french}
1364 @tab
1365 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1366 \clef french
1367 c1
1368 @end lilypond
1369
1370 @tab
1371 @code{\clef GG}
1372 @tab
1373 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1374 \clef GG
1375 c1
1376 @end lilypond
1377
1378 @item
1379 @code{\clef tenorG}
1380 @tab
1381 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1382 \clef tenorG
1383 c1
1384 @end lilypond
1385
1386 @tab
1387 @code{\clef soprano}
1388 @tab
1389 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1390 \clef soprano
1391 c1
1392 @end lilypond
1393
1394 @item
1395 @code{\clef mezzosoprano}
1396 @tab
1397 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1398 \clef mezzosoprano
1399 c1
1400 @end lilypond
1401
1402 @tab
1403 @code{\clef C}
1404 @tab
1405 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1406 \clef C
1407 c1
1408 @end lilypond
1409
1410 @item
1411 @code{\clef alto}
1412 @tab
1413 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1414 \clef alto
1415 c1
1416 @end lilypond
1417
1418 @tab
1419 @code{\clef tenor}
1420 @tab
1421 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1422 \clef tenor
1423 c1
1424 @end lilypond
1425
1426 @item
1427 @code{\clef baritone}
1428 @tab
1429 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1430 \clef baritone
1431 c1
1432 @end lilypond
1433
1434 @tab
1435 @code{\clef varC}
1436 @tab
1437 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1438 \clef varC
1439 c1
1440 @end lilypond
1441
1442 @item
1443 @code{\clef altovarC}
1444 @tab
1445 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1446 \clef altovarC
1447 c1
1448 @end lilypond
1449
1450 @tab
1451 @code{\clef tenorvarC}
1452 @tab
1453 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1454 \clef tenorvarC
1455 c1
1456 @end lilypond
1457
1458 @item
1459 @code{\clef baritonevarC}
1460 @tab
1461 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1462 \clef baritonevarC
1463 c1
1464 @end lilypond
1465
1466 @tab
1467 @code{\clef varbaritone}
1468 @tab
1469 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1470 \clef varbaritone
1471 c1
1472 @end lilypond
1473
1474 @item
1475 @code{\clef baritonevarF}
1476 @tab
1477 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1478 \clef baritonevarF
1479 c1
1480 @end lilypond
1481
1482 @tab
1483 @code{\clef F}
1484 @tab
1485 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1486 \clef F
1487 c1
1488 @end lilypond
1489
1490 @item
1491 @code{\clef bass}
1492 @tab
1493 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1494 \clef bass
1495 c1
1496 @end lilypond
1497
1498 @tab
1499 @code{\clef subbass}
1500 @tab
1501 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1502 \clef subbass
1503 c1
1504 @end lilypond
1505
1506 @item
1507 @code{\clef percussion}
1508 @tab
1509 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1510 \clef percussion
1511 c1
1512 @end lilypond
1513
1514 @tab
1515 @c @example does not work as expected within multitables
1516 @code{
1517 \new TabStaff @{ @*
1518 @ @ \clef tab @*
1519 @}
1520 }
1521 @tab
1522 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1523 \new TabStaff {
1524   \clef tab
1525   c1
1526 }
1527 @end lilypond
1528
1529 @item
1530 @c @example does not work as expected within multitables
1531 @code{
1532 \new TabStaff @{ @*
1533 @ @ \clef moderntab @*
1534 @}
1535 }
1536 @tab
1537 @lilypond[line-width=3\cm,notime,ragged-right,relative=1]
1538 \new TabStaff {
1539   \clef moderntab
1540   c1
1541 }
1542 @end lilypond
1543
1544
1545 @end multitable
1546
1547
1548 @node Commandes pour markup
1549 @appendixsec Commandes pour @emph{markup}
1550 @translationof Text markup commands
1551
1552 @ignore
1553 All the .tely files included in this appendix are automatically
1554 generated from source files during the build.
1555 For translators: you cannot translate the content of these files.
1556 @end ignore
1557
1558 Les commandes suivantes peuvent être utilisées dans un bloc
1559 @code{\markup @{ @}}.
1560
1561 @include markup-commands.tely
1562
1563
1564 @node Commandes pour liste de markups
1565 @appendixsec Commandes pour liste de @emph{markups}
1566 @translationof Text markup list commands
1567
1568 Les commandes suivantes peuvent être utilisées dans un
1569 bloc @code{\markuplist @{ @}}.
1570
1571 @include markup-list-commands.tely
1572
1573
1574 @node Liste des caractères spéciaux
1575 @appendixsec Liste des caractères spéciaux
1576 @translationof List of special characters
1577
1578 Voici une table des caractères spéciaux disponibles.  Pour plus de
1579 précisions, voir @ref{Équivalents ASCII}.
1580
1581 Cette liste utilise la syntaxe HTML, à l'instar de la plupart des
1582 caractères qui la composent ; les autres sont inspirés du langage
1583 @LaTeX{}.
1584
1585 Les caractères sont ici inclus dans une boîte, de façon à mettre leur
1586 taille en évidence, et un léger décalage a été appliqué pour les
1587 décoller de l'encadrement.
1588
1589 @lilypond[quote]
1590 \include "special-characters.ly"
1591 @end lilypond
1592
1593
1594 @node Liste des signes d'articulation
1595 @appendixsec Liste des signes d'articulation
1596 @translationof List of articulations
1597
1598 Les listes qui suivent recensent les symboles prédéfinis dans le
1599 glyphe Feta que vous pouvez attacher à une note (par ex. @code{f\accent}
1600 ou @code{f->}).  Chaque exemple illustre les trois positionnements : en
1601 surplomb (@emph{up}), en dessous (@emph{down}) et à l'appréciation de
1602 LilyPond (@emph{neutral}).
1603
1604 @c Articulations and ornamentations
1605 @c Fingering instructions (for "thumb")
1606 @c Common notation for unfretted strings
1607 @c   Bowing indications
1608 @c   Harmonics
1609 @c   Snap (Bartók) pizzicato
1610 @c Custom percussion staves (for "halfopen" -- not yet funindexed)
1611 @c References for wind instruments (for "open"/"stopped" -- not yet funindexed)
1612
1613 @menu
1614 * Scripts d'articulation::
1615 * Scripts d'ornement::
1616 * Scripts de point d'orgue et point d'arrêt::
1617 * Scripts spécifiques à certains instruments::
1618 * Scripts de reprise et de répétition::
1619 * Scripts pour musique ancienne::
1620 @end menu
1621
1622 @ignore
1623 The @multitable @columnfraction value discrepancy between the first and
1624 the remaining columns is deliberate; it seems (at least visually
1625 anyway) the gap (after building the documentation) between first and
1626 second column examples was always larger than between the remaining
1627 columns - JL
1628 @end ignore
1629
1630
1631 @node Scripts d'articulation
1632 @unnumberedsubsec Scripts d'articulation
1633 @translationof Articulation scripts
1634
1635 @cindex accent
1636 @cindex espressivo
1637 @cindex marcato
1638 @cindex portato
1639 @cindex staccatissimo
1640 @cindex staccato
1641 @cindex tenuto
1642 @cindex pouce @emph{(thumb)}
1643
1644 @multitable @columnfractions .22 .25 .25 .25
1645
1646 @item
1647 @code{\accent} ou @code{->}
1648 @lilypond[notime,relative=2]
1649 f^\accent e,_\accent b'\accent
1650 @end lilypond
1651 @tab
1652 @code{\espressivo}
1653 @lilypond[notime,relative=2]
1654 f^\espressivo e,_\espressivo b'\espressivo
1655 @end lilypond
1656 @tab
1657 @code{\marcato} ou @code{-^}
1658 @lilypond[notime,relative=2]
1659 f^\marcato e,_\marcato b'\marcato
1660 @end lilypond
1661 @tab
1662 @code{\portato} ou @code{-_}
1663 @lilypond[notime,relative=2]
1664 f^\portato e,_\portato b'\portato
1665 @end lilypond
1666
1667 @item
1668 @code{\staccatissimo} @* ou @code{-!}
1669 @lilypond[notime,relative=2]
1670 f^\staccatissimo e,_\staccatissimo b'\staccatissimo
1671 @end lilypond
1672 @tab
1673 @code{\staccato} ou @code{-.}
1674 @lilypond[notime,relative=2]
1675 f^\staccato e,_\staccato b'\staccato
1676 @end lilypond
1677 @tab
1678 @code{\tenuto} ou @code{--}
1679 @lilypond[notime,relative=2]
1680 f^\tenuto e,_\tenuto b'\tenuto
1681 @end lilypond
1682
1683 @end multitable
1684
1685
1686 @node Scripts d'ornement
1687 @unnumberedsubsec Scripts d'ornement
1688 @translationof Ornament scripts
1689
1690 @cindex trille
1691 @cindex mordant
1692 @cindex grupetto
1693
1694 @multitable @columnfractions .22 .25 .25 .25
1695
1696 @item
1697 @code{\prall}
1698 @lilypond[notime,relative=2]
1699 f^\prall e,_\prall b'\prall
1700 @end lilypond
1701 @tab
1702 @code{\prallup}
1703 @lilypond[notime,relative=2]
1704 f^\prallup e,_\prallup b'\prallup
1705 @end lilypond
1706 @tab
1707 @code{\pralldown}
1708 @lilypond[notime,relative=2]
1709 f^\pralldown e,_\pralldown b'\pralldown
1710 @end lilypond
1711 @tab
1712 @code{\upprall}
1713 @lilypond[notime,relative=2]
1714 f^\upprall e,_\upprall b'\upprall
1715 @end lilypond
1716
1717 @item
1718 @code{\downprall}
1719 @lilypond[notime,relative=2]
1720 f^\downprall e,_\downprall b'\downprall
1721 @end lilypond
1722 @tab
1723 @code{\prallprall}
1724 @lilypond[notime,relative=2]
1725 f^\prallprall e,_\prallprall b'\prallprall
1726 @end lilypond
1727 @tab
1728 @code{\lineprall}
1729 @lilypond[notime,relative=2]
1730 f^\lineprall e,_\lineprall b'\lineprall
1731 @end lilypond
1732 @tab
1733 @code{\prallmordent}
1734 @lilypond[notime,relative=2]
1735 f^\prallmordent e,_\prallmordent b'\prallmordent
1736 @end lilypond
1737
1738 @item
1739 @code{\mordent}
1740 @lilypond[notime,relative=2]
1741 f^\mordent e,_\mordent b'\mordent
1742 @end lilypond
1743 @tab
1744 @code{\upmordent}
1745 @lilypond[notime,relative=2]
1746 f^\upmordent e,_\upmordent b'\upmordent
1747 @end lilypond
1748 @tab
1749 @code{\downmordent}
1750 @lilypond[notime,relative=2]
1751 f^\downmordent e,_\downmordent b'\downmordent
1752 @end lilypond
1753 @tab
1754 @code{\trill}
1755 @lilypond[notime,relative=2]
1756 f^\trill e,_\trill b'\trill
1757 @end lilypond
1758
1759 @item
1760 @code{\turn}
1761 @lilypond[notime,relative=2]
1762 f^\turn e,_\turn b'\reverseturn
1763 @end lilypond
1764 @tab
1765 @code{\reverseturn}
1766 @lilypond[notime,relative=2]
1767 f^\reverseturn e,_\reverseturn b'\reverseturn
1768 @end lilypond
1769
1770 @end multitable
1771
1772
1773 @node Scripts de point d'orgue et point d'arrêt
1774 @unnumberedsubsec Scripts de point d'orgue et point d'arrêt
1775 @translationof Fermata scripts
1776
1777 @cindex point d'orgue
1778 @cindex point d'arrêt
1779
1780 @multitable @columnfractions .22 .25 .25 .25
1781
1782 @item
1783 @code{\shortfermata}
1784 @lilypond[notime,relative=2]
1785 f^\shortfermata e,_\shortfermata b'\shortfermata
1786 @end lilypond
1787 @tab
1788 @code{\fermata}
1789 @lilypond[notime,relative=2]
1790 f^\fermata e,_\fermata b'\fermata
1791 @end lilypond
1792 @tab
1793 @code{\longfermata}
1794 @lilypond[notime,relative=2]
1795 f^\longfermata e,_\longfermata b'\longfermata
1796 @end lilypond
1797 @tab
1798 @code{\verylongfermata}
1799 @lilypond[notime,relative=2]
1800 f^\verylongfermata e,_\verylongfermata b'\verylongfermata
1801 @end lilypond
1802
1803 @end multitable
1804
1805
1806 @node Scripts spécifiques à certains instruments
1807 @unnumberedsubsec Scripts spécifiques à certains instruments
1808 @translationof Instrument-specific scripts
1809
1810 @cindex flageolet
1811 @cindex tirer l'archet
1812 @cindex pousser l'archet
1813 @cindex snappizzicato
1814 @cindex bouché
1815 @cindex sourdine
1816 @cindex ouvert
1817 @cindex orgue, marque de pédale
1818 @cindex pointe
1819 @cindex talon
1820
1821 @multitable @columnfractions .22 .25 .25 .25
1822
1823 @item
1824 @code{\upbow}
1825 @lilypond[notime,relative=2]
1826 f^\upbow e,_\upbow b'\upbow
1827 @end lilypond
1828 @tab
1829 @code{\downbow}
1830 @lilypond[notime,relative=2]
1831 f^\downbow e,_\downbow b'\downbow
1832 @end lilypond
1833 @tab
1834 @code{\flageolet}
1835 @lilypond[notime,relative=2]
1836 f^\flageolet e,_\flageolet b'\flageolet
1837 @end lilypond
1838 @tab
1839 @code{\open}
1840 @lilypond[notime,relative=2]
1841 f^\open e,_\open b'\open
1842 @end lilypond
1843
1844 @item
1845 @code{\halfopen}
1846 @lilypond[notime,relative=2]
1847 f^\halfopen e,_\halfopen b'\halfopen
1848 @end lilypond
1849 @tab
1850 @code{\lheel}
1851 @lilypond[notime,relative=2]
1852 f^\lheel e,_\lheel b'\lheel
1853 @end lilypond
1854 @tab
1855 @code{\rheel}
1856 @lilypond[notime,relative=2]
1857 f^\rheel e,_\rheel b'\rheel
1858 @end lilypond
1859 @tab
1860 @code{\ltoe}
1861 @lilypond[notime,relative=2]
1862 f^\ltoe e,_\ltoe b'\ltoe
1863 @end lilypond
1864
1865 @item
1866 @code{\rtoe}
1867 @lilypond[notime,relative=2]
1868 f^\rtoe e,_\rtoe b'\rtoe
1869 @end lilypond
1870 @tab
1871 @code{\snappizzicato}
1872 @lilypond[notime,relative=2]
1873 f^\snappizzicato e,_\snappizzicato b'\snappizzicato
1874 @end lilypond
1875 @tab
1876 @code{\stopped} ou @code{-+}
1877 @lilypond[notime,relative=2]
1878 f^\stopped e,_\stopped b'\stopped
1879 @end lilypond
1880
1881 @end multitable
1882
1883
1884 @node Scripts de reprise et de répétition
1885 @unnumberedsubsec Scripts de reprise et de répétition
1886 @translationof Repeat sign scripts
1887
1888 @cindex segno
1889 @cindex coda
1890 @cindex varcoda
1891
1892 @multitable @columnfractions .22 .25 .25 .25
1893
1894 @item
1895 @code{\segno}
1896 @lilypond[notime,relative=2]
1897 f^\segno e,_\segno b'\segno
1898 @end lilypond
1899 @tab
1900 @code{\coda}
1901 @lilypond[notime,relative=2]
1902 f^\coda e,_\coda b'\coda
1903 @end lilypond
1904 @tab
1905 @code{\varcoda}
1906 @lilypond[notime,relative=2]
1907 f^\varcoda e,_\varcoda b'\varcoda
1908 @end lilypond
1909
1910 @end multitable
1911
1912
1913 @node Scripts pour musique ancienne
1914 @unnumberedsubsec Scripts pour musique ancienne
1915 @translationof Ancient scripts
1916
1917 @cindex accentus
1918 @cindex circulus
1919 @cindex ictus
1920 @cindex semicirculus
1921 @cindex signumcongruentiae
1922
1923 @multitable @columnfractions .22 .25 .25 .25
1924
1925 @item
1926 @code{\accentus}
1927 @lilypond[notime]
1928 \include "gregorian.ly"
1929 \new VaticanaStaff { e'^\accentus s4 f_\accentus s4 b\accentus}
1930 @end lilypond
1931 @tab
1932 @code{\circulus}
1933 @lilypond[notime]
1934 \include "gregorian.ly"
1935 \new VaticanaStaff { e'^\circulus s4 f_\circulus s4 b\circulus  }
1936 @end lilypond
1937 @tab
1938 @code{\ictus}
1939 @lilypond[notime]
1940 \include "gregorian.ly"
1941 \new VaticanaStaff { e'^\ictus s4 f_\ictus s4 b\ictus}
1942 @end lilypond
1943
1944 @item
1945 @code{\semicirculus}
1946 @lilypond[notime]
1947 \include "gregorian.ly"
1948 \new VaticanaStaff {
1949   e'^\semicirculus s4 f_\semicirculus s4 b\semicirculus
1950 }
1951 @end lilypond
1952 @tab
1953 @code{\signumcongruentiae}
1954 @lilypond[notime]
1955 \include "gregorian.ly"
1956 \new VaticanaStaff {
1957   e'^\signumcongruentiae s4
1958   f_\signumcongruentiae s4
1959   b\signumcongruentiae
1960 }
1961 @end lilypond
1962
1963 @end multitable
1964
1965
1966 @node Notes utilisées en percussion
1967 @appendixsec Notes utilisées en percussion
1968 @translationof Percussion notes
1969
1970 @cindex percussions, nom des notes
1971 @cindex drums, various
1972 @cindex acoustic bass
1973 @cindex bass
1974 @cindex snare
1975 @cindex electric snare
1976 @cindex acoustic snare
1977 @cindex tom tom
1978 @cindex bongo
1979 @cindex conga
1980 @cindex timbale
1981 @cindex sidestick
1982 @cindex floor tom tom
1983 @cindex low tom tom
1984 @cindex high tom tom
1985 @cindex mid tom tom
1986 @cindex high hat
1987 @cindex pedal high hat
1988 @cindex open high hat
1989 @cindex half-open high hat
1990 @cindex cymbal, various
1991 @cindex crash cymbal
1992 @cindex ride cymbal
1993 @cindex chinese cymbal
1994 @cindex splash cymbal
1995 @cindex ride bell
1996 @cindex cowbell
1997 @cindex agogo
1998 @cindex high bongo
1999 @cindex low bongo
2000 @cindex mute bongo
2001 @cindex open bongo
2002 @cindex high conga
2003 @cindex low conga
2004 @cindex mute conga
2005 @cindex open conga
2006 @cindex high timbale
2007 @cindex low timbale
2008 @cindex mute timbale
2009 @cindex open timbale
2010 @cindex sidestick
2011 @cindex guiro
2012 @cindex cabasa
2013 @cindex maracas
2014 @cindex whistle
2015 @cindex handclap
2016 @cindex tambourine
2017 @cindex vibraslap
2018 @cindex tam tam
2019 @cindex claves
2020 @cindex woodblock
2021 @cindex cuica
2022 @cindex triangle
2023
2024 @multitable @columnfractions .22 .25 .25 .25
2025
2026 @item
2027 @code{bassdrum @* bd @*}
2028 @lilypond[notime,ragged-right]
2029 \drums { bd4 bd1 }
2030 @end lilypond
2031 @tab
2032 @code{acousticbassdrum @* bda @*}
2033 @lilypond[notime,ragged-right]
2034 \drums { bda4 bda1 }
2035 @end lilypond
2036 @tab
2037 @code{snare @* sn @*}
2038 @lilypond[notime,ragged-right]
2039 \drums { sn4 sn1 }
2040 @end lilypond
2041 @tab
2042 @code{acousticsnare @* sna @*}
2043 @lilypond[notime,ragged-right]
2044 \drums { sna4 sna1 }
2045 @end lilypond
2046
2047 @item
2048 @code{electricsnare @* sne @*}
2049 @lilypond[notime,ragged-right]
2050 \drums { sne4 sne1 }
2051 @end lilypond
2052 @tab
2053 @code{lowfloortom @* tomfl @*}
2054 @lilypond[notime,ragged-right]
2055 \drums { tomfl4 tomfl1 }
2056 @end lilypond
2057 @tab
2058 @code{highfloortom @* tomfh @*}
2059 @lilypond[notime,ragged-right]
2060 \drums { tomfh4 tomfh1 }
2061 @end lilypond
2062 @tab
2063 @code{lowtom @* toml @*}
2064 @lilypond[notime,ragged-right]
2065 \drums { toml4 toml1 }
2066 @end lilypond
2067
2068 @item
2069 @code{hightom @* tomh @*}
2070 @lilypond[notime,ragged-right]
2071 \drums { tomh4 tomh1 }
2072 @end lilypond
2073 @tab
2074 @code{lowmidtom @* tomml @*}
2075 @lilypond[notime,ragged-right]
2076 \drums { tomml4 tomml1 }
2077 @end lilypond
2078 @tab
2079 @code{highmidtom @* tommh @*}
2080 @lilypond[notime,ragged-right]
2081 \drums { tommh4 tommh1 }
2082 @end lilypond
2083 @tab
2084 @code{highhat @* hh @*}
2085 @lilypond[notime,ragged-right]
2086 \drums { hh4 hh1 }
2087 @end lilypond
2088
2089 @item
2090 @code{closedhihat @* hhc @*}
2091 @lilypond[notime,ragged-right]
2092 \drums { hhc4 hhc1 }
2093 @end lilypond
2094 @tab
2095 @code{openhighhat @* hho @*}
2096 @lilypond[notime,ragged-right]
2097 \drums { hho4 hho1 }
2098 @end lilypond
2099 @tab
2100 @code{halfopenhihat @* hhho @*}
2101 @lilypond[notime,ragged-right]
2102 \drums { hhho4 hhho1 }
2103 @end lilypond
2104 @tab
2105 @code{pedalhihat @* hhp @*}
2106 @lilypond[notime,ragged-right]
2107 \drums { hhp4 hhp1 }
2108 @end lilypond
2109
2110
2111 @item
2112 @code{crashcymbal @* cymc @*}
2113 @lilypond[notime,ragged-right]
2114 \drums { cymc4 cymc1 }
2115 @end lilypond
2116 @tab
2117 @code{crashcymbala @* cymca @*}
2118 @lilypond[notime,ragged-right]
2119 \drums { cymca4 cymca1 }
2120 @end lilypond
2121 @tab
2122 @code{crashcymbalb @* cymcb @*}
2123 @lilypond[notime,ragged-right]
2124 \drums { cymcb4 cymcb1 }
2125 @end lilypond
2126 @tab
2127 @code{ridecymbal @* cymr @*}
2128 @lilypond[notime,ragged-right]
2129 \drums { cymr4 cymr1 }
2130 @end lilypond
2131
2132 @item
2133 @code{ridecymbala @* cymra @*}
2134 @lilypond[notime,ragged-right]
2135 \drums { cymra4 cymra1 }
2136 @end lilypond
2137 @tab
2138 @code{ridecymbalb @* cymrb @*}
2139 @lilypond[notime,ragged-right]
2140 \drums { cymrb4 cymrb1 }
2141 @end lilypond
2142 @tab
2143 @code{chinesecymbal @* cymch @*}
2144 @lilypond[notime,ragged-right]
2145 \drums { cymch4 cymch1 }
2146 @end lilypond
2147 @tab
2148 @code{splashcymbal @* cyms @*}
2149 @lilypond[notime,ragged-right]
2150 \drums { cyms4 cyms1 }
2151 @end lilypond
2152
2153 @item
2154 @code{ridebell @* rb @*}
2155 @lilypond[notime,ragged-right]
2156 \drums { rb4 rb1 }
2157 @end lilypond
2158 @tab
2159 @code{cowbell @* cb @*}
2160 @lilypond[notime,ragged-right]
2161 \drums { cb4 cb1 }
2162 @end lilypond
2163 @tab
2164 @code{hibongo @* boh @*}
2165 @lilypond[notime,ragged-right]
2166 \drums { boh4 boh1 }
2167 @end lilypond
2168 @tab
2169 @code{openhibongo @* boho @*}
2170 @lilypond[notime,ragged-right]
2171 \drums { boho4 boho1 }
2172 @end lilypond
2173
2174 @item
2175 @code{mutehibongo @* bohm @*}
2176 @lilypond[notime,ragged-right]
2177 \drums { bohm4 bohm1 }
2178 @end lilypond
2179 @tab
2180 @code{lobongo @* bol @*}
2181 @lilypond[notime,ragged-right]
2182 \drums { bol4 bol1 }
2183 @end lilypond
2184 @tab
2185 @code{openlobongo @* bolo @*}
2186 @lilypond[notime,ragged-right]
2187 \drums { bolo4 bolo1 }
2188 @end lilypond
2189 @tab
2190 @code{mutelobongo @* bolm @*}
2191 @lilypond[notime,ragged-right]
2192 \drums { bolm4 bolm1 }
2193 @end lilypond
2194
2195
2196 @item
2197 @code{hiconga @* cgh @*}
2198 @lilypond[notime,ragged-right]
2199 \drums { cgh4 cgh1 }
2200 @end lilypond
2201 @tab
2202 @code{openhiconga @* cgho @*}
2203 @lilypond[notime,ragged-right]
2204 \drums { cgho4 cgho1 }
2205 @end lilypond
2206 @tab
2207 @code{mutehiconga @* cghm @*}
2208 @lilypond[notime,ragged-right]
2209 \drums { cghm4 cghm1 }
2210 @end lilypond
2211 @tab
2212 @code{loconga @* cgl @*}
2213 @lilypond[notime,ragged-right]
2214 \drums { cgl4 cgl1 }
2215 @end lilypond
2216
2217 @item
2218 @code{openloconga @* cglo @*}
2219 @lilypond[notime,ragged-right]
2220 \drums { cglo4 cglo1 }
2221 @end lilypond
2222 @tab
2223 @code{muteloconga @* cglm @*}
2224 @lilypond[notime,ragged-right]
2225 \drums { cglm4 cglm1 }
2226 @end lilypond
2227 @tab
2228 @code{hitimbale @* timh @*}
2229 @lilypond[notime,ragged-right]
2230 \drums { timh4 timh1 }
2231 @end lilypond
2232 @tab
2233 @code{lotimbale @* timl @*}
2234 @lilypond[notime,ragged-right]
2235 \drums { timl4 timl1 }
2236 @end lilypond
2237
2238 @item
2239 @code{hiagogo @* agh @*}
2240 @lilypond[notime,ragged-right]
2241 \drums { agh4 agh1 }
2242 @end lilypond
2243 @tab
2244 @code{loagogo @* agl @*}
2245 @lilypond[notime,ragged-right]
2246 \drums { agl4 agl1 }
2247 @end lilypond
2248 @tab
2249 @code{sidestick @* ss @*}
2250 @lilypond[notime,ragged-right]
2251 \drums { ss4 ss1 }
2252 @end lilypond
2253 @tab
2254 @code{hisidestick @* ssh @*}
2255 @lilypond[notime,ragged-right]
2256 \drums { ssh4 ssh1 }
2257 @end lilypond
2258
2259 @item
2260 @code{losidestick @* ssl @*}
2261 @lilypond[notime,ragged-right]
2262 \drums { ssl4 ssl1 }
2263 @end lilypond
2264 @tab
2265 @code{guiro @* gui @*}
2266 @lilypond[notime,ragged-right]
2267 \drums { gui4 gui1 }
2268 @end lilypond
2269 @tab
2270 @code{shortguiro @* guis @*}
2271 @lilypond[notime,ragged-right]
2272 \drums { guis4 guis1 }
2273 @end lilypond
2274 @tab
2275 @code{longguiro @* guil @*}
2276 @lilypond[notime,ragged-right]
2277 \drums { guil4 guil1 }
2278 @end lilypond
2279
2280 @item
2281 @code{cabasa @* cab @*}
2282 @lilypond[notime,ragged-right]
2283 \drums { cab4 cab1 }
2284 @end lilypond
2285 @tab
2286 @code{maracas @* mar @*}
2287 @lilypond[notime,ragged-right]
2288 \drums { mar4 mar1 }
2289 @end lilypond
2290 @tab
2291 @code{shortwhistle @* whs @*}
2292 @lilypond[notime,ragged-right]
2293 \drums { whs4 whs1 }
2294 @end lilypond
2295 @tab
2296 @code{longwhistle @* whl @*}
2297 @lilypond[notime,ragged-right]
2298 \drums { whl4 whl1 }
2299 @end lilypond
2300
2301 @item
2302 @code{handclap @* hc @*}
2303 @lilypond[notime,ragged-right]
2304 \drums { hc4 hc1 }
2305 @end lilypond
2306 @tab
2307 @code{tambourine @* tamb @*}
2308 @lilypond[notime,ragged-right]
2309 \drums { tamb4 tamb1 }
2310 @end lilypond
2311 @tab
2312 @code{vibraslap @* vibs @*}
2313 @lilypond[notime,ragged-right]
2314 \drums { vibs4 vibs1 }
2315 @end lilypond
2316 @tab
2317 @code{tamtam @* tt @*}
2318 @lilypond[notime,ragged-right]
2319 \drums { tt4 tt1 }
2320 @end lilypond
2321
2322 @item
2323 @code{claves @* cl @*}
2324 @lilypond[notime,ragged-right]
2325 \drums { cl4 cl1 }
2326 @end lilypond
2327 @tab
2328 @code{hiwoodblock @* wbh @*}
2329 @lilypond[notime,ragged-right]
2330 \drums { wbh4 wbh1 }
2331 @end lilypond
2332 @tab
2333 @code{lowoodblock @* wbl @*}
2334 @lilypond[notime,ragged-right]
2335 \drums { wbl4 wbl1 }
2336 @end lilypond
2337 @tab
2338 @code{opencuica @* cuio @*}
2339 @lilypond[notime,ragged-right]
2340 \drums { cuio4 cuio1 }
2341 @end lilypond
2342
2343 @item
2344 @code{mutecuica @* cuim @*}
2345 @lilypond[notime,ragged-right]
2346 \drums { cuim4 cuim1 }
2347 @end lilypond
2348 @tab
2349 @code{triangle @* tri @*}
2350 @lilypond[notime,ragged-right]
2351 \drums { tri4 tri1 }
2352 @end lilypond
2353 @tab
2354 @code{opentriangle @* trio @*}
2355 @lilypond[notime,ragged-right]
2356 \drums { trio4 trio1 }
2357 @end lilypond
2358 @tab
2359 @code{mutetriangle @* trim}
2360 @lilypond[notime,ragged-right]
2361 \drums { trim4 trim1 }
2362 @end lilypond
2363
2364 @item
2365 @code{oneup @* ua @*}
2366 @lilypond[notime,ragged-right]
2367 \drums { ua4 ua1 }
2368 @end lilypond
2369 @tab
2370 @code{twoup @* ub @*}
2371 @lilypond[notime,ragged-right]
2372 \drums { ub4 ub1 }
2373 @end lilypond
2374 @tab
2375 @code{threeup @* uc @*}
2376 @lilypond[notime,ragged-right]
2377 \drums { uc4 uc1 }
2378 @end lilypond
2379 @tab
2380 @code{fourup @* ud @*}
2381 @lilypond[notime,ragged-right]
2382 \drums { ud4 ud1 }
2383 @end lilypond
2384
2385 @item
2386 @code{fiveup @* ue @*}
2387 @lilypond[notime,ragged-right]
2388 \drums { ue4 ue1 }
2389 @end lilypond
2390 @tab
2391 @code{onedown @* da @*}
2392 @lilypond[notime,ragged-right]
2393 \drums { da4 da1 }
2394 @end lilypond
2395 @tab
2396 @code{twodown @* db @*}
2397 @lilypond[notime,ragged-right]
2398 \drums { db4 db1 }
2399 @end lilypond
2400 @tab
2401 @code{threedown @* dc @*}
2402 @lilypond[notime,ragged-right]
2403 \drums { dc4 dc1 }
2404 @end lilypond
2405
2406 @item
2407 @code{fourdown @* dd @*}
2408 @lilypond[notime,ragged-right]
2409 \drums { dd4 dd1 }
2410 @end lilypond
2411 @tab
2412 @code{fivedown @* de @*}
2413 @lilypond[notime,ragged-right]
2414 \drums { de4 de1 }
2415 @end lilypond
2416
2417
2418 @end multitable
2419
2420
2421 @node Glossaire technique
2422 @appendixsec Glossaire technique
2423 @translationof Technical glossary
2424
2425 Ce glossaire regroupe les termes techniques et concepts utilisés en
2426 interne par LilyPond.  Ils apparaissent aussi bien dans les manuels, que
2427 sur les listes de diffusion et dans le code source.
2428
2429 @menu
2430 * alist (liste associative)::
2431 * callback (rappel)::
2432 * closure (clôture)::
2433 * glyphe::
2434 * grob (objet graphique)::
2435 * inaltérable::
2436 * interface::
2437 * lexer (analyseur lexical)::
2438 * altérable::
2439 * output-def (définition de sortie)::
2440 * parser (analyseur syntaxique)::
2441 * variable de l'analyseur grammatical::
2442 * prob (objet de propriété)::
2443 * smob (objet Scheme)::
2444 * stencil::
2445 @end menu
2446
2447
2448 @node alist (liste associative)
2449 @unnumberedsubsec alist (liste associative)
2450 @translationof alist
2451
2452 @cindex alist
2453 @cindex liste associative
2454
2455 Une liste associative -- @strong{alist} pour @emph{association list} --
2456 est une paire Scheme qui associe une valeur à une clé :
2457 @code{(clé . valeur)}.  Le fichier @file{scm/lily.scm} contient par
2458 exemple une @emph{alist} @w{@qq{type-p-name-alist}} qui associe certains
2459 types de prédicat (p. ex. @code{ly:music?}) à des noms (p. ex.
2460 @qq{music}) de telle sorte qu'une erreur lors d'un contrôle de typage
2461 puisse être rapportée en console avec mention du type de prédicat
2462 attendu.
2463
2464
2465 @node callback (rappel)
2466 @unnumberedsubsec callback (rappel)
2467 @translationof callback
2468
2469 @cindex callback
2470 @cindex rappel
2471
2472 Un @strong{rappel}, @emph{callback} en anglais, est une routine,
2473 fonction ou méthode qui est passée en argument à une autre fonction.
2474 Cette dernière peut alors faire usage de cette fonction de rappel comme
2475 de n'importe quelle autre fonction, alors qu'elle ne la connaît pas par
2476 avance.  Cette façon de procéder permet à des couches logicielles de bas
2477 niveau d'appeler des fonctions définies à des niveaux plus élevés.
2478 LilyPond utilise abondamment les @emph{callbacks} afin que le code
2479 Scheme saisi par l'utilisateur puisse définir les actions de bas niveau
2480 à opérer.
2481
2482
2483 @node closure (clôture)
2484 @unnumberedsubsec closure (clôture)
2485 @translationof closure
2486
2487 @cindex clôture
2488 @cindex closure
2489
2490 En Scheme, une @strong{clôture} (en anglais, @emph{closure}) est créée
2491 lorsqu'une fonction, généralement une expression lambda, est passée en
2492 tant que variable.  La clôture comporte, en plus du code de la fonction,
2493 des références à des variables libres dans l'environnement lexical --
2494 variables utilisées dans l'expression mais définies ailleurs.  Lorsque
2495 la fonction est par la suite appliquée aux différents arguments, les
2496 références aux variables libres, capturées par la clôture, permettent
2497 d'obtenir la valeur de ces variables libres qui sera utilisée lors des
2498 calculs.  L'une des propriétés intéressantes des clôtures est la
2499 rétention de la valeur de variables internes tout au long des
2500 différentes invocations, leur état étant alors persistant.
2501
2502
2503 @node glyphe
2504 @unnumberedsubsec glyphe
2505 @translationof glyph
2506
2507 @cindex glyphe
2508 @cindex fonte
2509 @cindex type de caractère
2510
2511 Un @strong{glyphe} est une représentation graphique particulière d'un
2512 caractère typographique ou d'une combinaison de deux caractères formant
2513 une ligature.  Un jeu de glyphes aux mêmes style et allure constitue une
2514 fonte ; un jeu de fontes comprenant plusieurs styles et tailles constitue
2515 un type de caractère.
2516
2517 @seealso
2518 Manuel de notation :
2519 @ref{Fontes},
2520 @ref{Caractères spéciaux}.
2521
2522
2523 @node grob (objet graphique)
2524 @unnumberedsubsec grob (objet graphique)
2525 @translationof grob
2526
2527 @cindex grob
2528 @cindex graphique, objet
2529 @cindex rendu, objets de
2530 @cindex objets de rendu
2531
2532 Dans LilyPond, les objets représentants les différents éléments de
2533 notation, comme les têtes de note, hampes, liaisons, doigtés, clefs etc.
2534 sont appelés « objets de rendu » ou objet graphique -- en anglais
2535 @emph{GRaphical OBjects} couramment abrégé en @strong{grob}.  Ils sont
2536 représentés par des instances de la classe @code{grob}.
2537
2538 @seealso
2539 Manuel d'initiation :
2540 @rlearning{Objets et interfaces},
2541 @rlearning{Conventions de nommage des objets et propriétés},
2542 @rlearning{Propriétés des objets de rendu}.
2543
2544 Référence des propriétés internes :
2545 @rinternals{grob-interface},
2546 @rinternals{All layout objects}.
2547
2548
2549 @node inaltérable
2550 @unnumberedsubsec inaltérable
2551 @translationof immutable
2552
2553 @cindex inaltérables, objets
2554 @cindex inaltérables, propriétés
2555 @cindex propriétés communes
2556
2557 Un objet est dit @strong{inaltérable} -- @emph{immutable} en anglais --
2558 dès lors que son état ne peut être modifié après sa création ; les
2559 objets altérables, à l'inverse, peuvent être modifiés après création.
2560
2561 Pour LilyPond, une propriété est inaltérable ou commune lorsqu'elle
2562 définit les style ou le comportement par défaut d'objets graphiques ;
2563 une telle propriété est partagée par un certain nombre de @emph{grobs}.
2564 En apparente contradiction avec ce que leur nom laisse accroire, de
2565 telles propriétés peuvent être adaptées par @code{\override} et
2566 @code{\revert}.
2567
2568 @seealso
2569 Manuel de notation :
2570 @ref{altérable}.
2571
2572
2573 @node interface
2574 @unnumberedsubsec interface
2575 @translationof interface
2576
2577 @cindex interface
2578 @cindex grob-interface
2579 @cindex objet graphique, interface
2580
2581 Les actions et propriétés communes à plusieurs objets graphiques sont
2582 regroupées dans un objet appelé @code{grob-interface}, ou « interface »
2583 pour faire court.
2584
2585 @seealso
2586 Manuel d'initiation :
2587 @rlearning{Objets et interfaces},
2588 @rlearning{Conventions de nommage des objets et propriétés},
2589 @rlearning{Propriétés listées par interface}.
2590
2591 Manuel de notation :
2592 @ref{Interfaces de rendu}.
2593
2594 Référence des propriétés internes :
2595 @rinternals{Graphical Object Interfaces}.
2596
2597
2598 @node lexer (analyseur lexical)
2599 @unnumberedsubsec lexer (analyseur lexical)
2600 @translationof lexer
2601
2602 @cindex lexer
2603 @cindex analyse lexicale
2604 @cindex Flex
2605
2606 Un @strong{lexer} est un programme chargé de convertir une séquence de
2607 caractères en une séquence de jetons.  Cette opération s'appelle
2608 l'analyse lexicale.  L'analyseur lexical de LilyPond convertit le flot
2609 d'information contenu dans un fichier @file{.ly} en flot de jetons qui
2610 pourront être traités lors de l'étape suivant, l'analyse
2611 grammaticale abordée à la rubrique @ref{parser (analyseur syntaxique)}.
2612 L'analyseur lexical de LilyPond repose sur @code{Flex} ; les règles
2613 lexicales sont regroupées dans le fichier @file{lily/lexer.ll}.  Ce
2614 fichier, partie intégrante des sources, n'est pas distribué avec les
2615 programmes binaires de LilyPond.
2616
2617
2618 @node altérable
2619 @unnumberedsubsec altérable
2620 @translationof mutable
2621
2622 @cindex altérables, objets et propriétés
2623 @cindex propriétés altérables
2624 @cindex objets altérables
2625
2626 Un objet est dit @strong{altérable} -- @emph{mutable} en anglais --
2627 lorsque son état est sujet à modification après sa création, à l'inverse
2628 des objets inaltérables dont l'état est figé dès leur création.
2629
2630 Les propriétés altérables contiennent, pour LilyPond, des valeurs
2631 spécifiques à un objet graphique.  En particulier, les listes d'autres
2632 objets ou résultats de calculs sont enregistrés sous dorme de propriétés
2633 altérables.
2634
2635 @seealso
2636 Manuel de notation :
2637 @ref{inaltérable}.
2638
2639
2640 @node output-def (définition de sortie)
2641 @unnumberedsubsec output-def (définition de sortie)
2642 @translationof output-def
2643
2644 @cindex output-def
2645 @cindex sortie, définition
2646 @cindex définition de sortie
2647
2648 Une instance de la classe @code{Output-def} contient les méthodes et
2649 structures des données associées à un bloc de sortie.  Ces instances
2650 sont créées par les blocs @code{\midi}, @code{\layout} et @code{\paper}.
2651
2652
2653 @node parser (analyseur syntaxique)
2654 @unnumberedsubsec parser (analyseur syntaxique)
2655 @translationof parser
2656
2657 @cindex parser
2658 @cindex analyseur syntaxique
2659 @cindex Bison
2660 @cindex grammaire de LilyPond
2661 @cindex BNF
2662
2663 Un analyseur syntaxique -- @strong{parser} en anglais -- est un
2664 programme qui analyse la séquence de jetons produite par l'analyseur
2665 lexical pour en déterminer la structure grammaticale.  Les jetons sont,
2666 pour ce faire, regroupés progressivement en tronçons plus importants,
2667 selon des règles grammaticales.  Lorsque la séquence de jetons est
2668 valide, les produit final est une arborescence de jetons ayant à sa base
2669 le symbole grammatical de début.  Dès lors que cette étape n'est pas
2670 concluante, le fichier est déclaré invalide ; un message approprié est
2671 alors émis.  Les différents regroupements syntaxiques ainsi que les
2672 règles de construction des regroupements relatifs à la grammaire de
2673 LilyPond sont définis dans le fichier @file{lily/parser.yy} et présentés
2674 selon la forme de Backus-Naur (BNF) à la rubrique
2675 @rcontribnamed{LilyPond grammar, Grammaire de LilyPond}.  Ce
2676 fichier est utilisé par le générateur de @emph{parser} Bison lors
2677 de la construction du programme. Partie intégrante des sources, il
2678 n'est pas distribué avec les programmes binaires de LilyPond.
2679
2680
2681 @node variable de l'analyseur grammatical
2682 @unnumberedsubsec variable de l'analyseur grammatical
2683 @translationof parser variable
2684
2685 @cindex parser, variable
2686 @cindex Scheme, variable
2687 @cindex globale, variable
2688 @cindex afterGraceFraction
2689 @cindex musicQuotes
2690 @cindex mode
2691 @cindex output-count
2692 @cindex output-suffix
2693 @cindex partCombineListener
2694 @cindex pitchnames
2695 @cindex toplevel-bookparts
2696 @cindex toplevel-scores
2697 @cindex showLastLength
2698 @cindex showFirstLength
2699
2700 Il s'agit de variables définies directement en Scheme.  Dans la mesure
2701 où leur champ sémantique peut porter à confusion, il est fortement
2702 déconseillé de les utiliser tels quels.
2703
2704 La modification des valeurs de l'une de ces variables dans un fichier
2705 @file{.ly} sera effective de manière globale.  Les valeurs modifiées,
2706 sauf à être explicitement remises à leur état d'origine, affecteront
2707 tous les blocs @code{\score} rencontrés, y compris s'ils proviennent
2708 d'autres fichiers ajoutés par une commande @code{\include}.  Ceci peut
2709 avoir des conséquences inattendues et les erreurs qui pourraient en
2710 découler difficiles à localiser dans le cadre d'un projet d'envergure.
2711
2712 LilyPond utilise les variables suivantes :
2713
2714 @itemize
2715 @item afterGraceFraction
2716 @item musicQuotes
2717 @item mode
2718 @item output-count
2719 @item output-suffix
2720 @item partCombineListener
2721 @item pitchnames
2722 @item toplevel-bookparts
2723 @item toplevel-scores
2724 @item showLastLength
2725 @item showFirstLength
2726 @end itemize
2727
2728
2729 @node prob (objet de propriété)
2730 @unnumberedsubsec prob (objet de propriété)
2731 @translationof prob
2732
2733 @cindex prob
2734 @cindex propriété objet
2735 @cindex objet de propriété
2736
2737 Les objets de propriété -- @strong{probs} pour @emph{PRoperty OBjects}
2738 -- sont des instances de la classe @code{Prob}, une classe de base
2739 simple pour les objets qui disposent de de listes associatives de
2740 propriétés altérables et inaltérables ainsi que les méthodes pour les
2741 manipuler.  Les classes @code{Music} et @code{Stream_event} dérivent
2742 d'un @code{prob}.  Les instances de la classe @code{prob} se créent
2743 aussi pour garder trace du contenu des systèmes une fois formatés et
2744 des blocs de titrage lors de la phase de mise en forme des pages.
2745
2746
2747 @node smob (objet Scheme)
2748 @unnumberedsubsec smob (objet Scheme)
2749 @translationof smob
2750
2751 @cindex smob
2752 @cindex Scheme, objet
2753 @cindex objet Scheme
2754
2755 Les objets Scheme -- @strong{Smobs} pour @emph{ScheMe OBjects} -- font
2756 partie du mécanisme utilisé par l'interpréteur Guile pour exporter en
2757 code Scheme les objets C ou C++.  Dans LilyPond, les @emph{smobs} sont
2758 créés, grâce à des macros, à partir d'objets C++.    On peut distinguer
2759 deux types d'objets @emph{smob} : des @emph{smobs} simples destinés aux
2760 objets inaltérables comme les nombres par exemples, et des @emph{smobs}
2761 complexes utilisés pour des objets possédant une identité.  De plus
2762 amples informations sont disponibles dans les sources de LilyPond, au
2763 sein du fichier @file{lily/includes/smob.hh}.
2764
2765
2766 @node stencil
2767 @unnumberedsubsec stencil
2768 @translationof stencil
2769
2770 @cindex stencil
2771
2772 Une instance de la classe @strong{stencil} comporte l'information
2773 nécessaire à l'impression d'un objet typographique.  Il s'agit d'un
2774 @emph{smob} simple qui contient un espace de confinement qui définit
2775 l'envergure verticale et horizontale de l'objet ainsi qu'une expression
2776 Scheme qui imprimera l'objet après évaluation.  Les stencils peuvent se
2777 combiner et adopter une forme plus complexe définie par une arborescence
2778 d'expressions Scheme des stencils qui la composent.
2779
2780 La propriété @code{stencil}, qui permet de connecter un @emph{grob} à
2781 son stencil, est définie par l'interface @code{grob-interface}.
2782
2783 @seealso
2784 Référence des propriétés internes :
2785 @rinternals{grob-interface}.
2786
2787
2788 @node Liste des propriétés de contexte
2789 @appendixsec Liste des propriétés de contexte
2790 @translationof All context properties
2791
2792 @include context-properties.tely
2793
2794
2795 @node Propriétés de mise en forme
2796 @appendixsec Propriétés de mise en forme
2797 @translationof Layout properties
2798
2799 @include layout-properties.tely
2800
2801
2802 @node Fonctions musicales prédéfinies
2803 @appendixsec Fonctions musicales prédéfinies
2804 @translationof Available music functions
2805
2806 @include identifiers.tely
2807
2808
2809 @node Identificateurs de modification de contexte
2810 @appendixsec Identificateurs de modification de contexte
2811 @translationof Context modification identifiers
2812
2813 Les commandes suivantes permettent de modifier des contextes au sein
2814 d'un bloc @code{\layout} ou @code{\with}.
2815
2816 @include context-mod-identifiers.tely
2817
2818
2819 @node Types de prédicats prédéfinis
2820 @appendixsec Types de prédicats prédéfinis
2821 @translationof Predefined type predicates
2822
2823 @include type-predicates.tely
2824
2825
2826 @node Fonctions Scheme
2827 @appendixsec Fonctions Scheme
2828 @translationof Scheme functions
2829
2830 @include scheme-functions.tely