]> git.lyx.org Git - features.git/blob - lib/doc/fr/EmbeddedObjects.lyx
db435ea8d68b831f3ee4789ec42753cb945d4d04
[features.git] / lib / doc / fr / EmbeddedObjects.lyx
1 #LyX 2.1 created this file. For more info see http://www.lyx.org/
2 \lyxformat 459
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % if pdflatex is used
8 \usepackage{ifpdf}
9 \ifpdf
10
11 % set fonts for nicer pdf view
12 \IfFileExists{lmodern.sty}
13  {\usepackage{lmodern}}{}
14
15 \fi % end if pdflatex is used
16
17 % that links to image floats jumps
18 % to the beginning of the float and 
19 % not to its caption
20 \usepackage[figure]{hypcap}
21
22 % the pages of the TOC are numbered roman
23 % and a PDF-bookmark for the TOC is added
24 \let\myTOC\tableofcontents
25 \renewcommand\tableofcontents{%
26   \frontmatter
27   \pdfbookmark[1]{\contentsname}{}
28   \myTOC
29   \mainmatter }
30
31 % provides caption formatting
32 \usepackage[labelfont={bf,sf}]{caption}[2004/07/16]
33
34 % provides commands to set caption
35 % beside tables/images
36 \newcommand{\TabBesBeg}[1][1.0]{%
37  \let\MyTable\table
38  \let\MyEndtable\endtable
39  \renewenvironment{table}[1]{\begin{SCtable}[#1]##1}{\end{SCtable}}}
40
41 \newcommand{\TabBesEnd}{%
42  \let\table\MyTable
43  \let\endtable\MyEndtable}
44
45 \newcommand{\FigBesBeg}[1][1.0]{%
46  \let\MyFigure\figure
47  \let\MyEndfigure\endfigure
48  \renewenvironment{figure}[1]{\begin{SCfigure}[#1]##1}{\end{SCfigure}}}
49
50 \newcommand{\FigBesEnd}{%
51  \let\figure\MyFigure
52  \let\endfigure\MyEndfigure}
53
54 % enables calculation of values,
55 \usepackage{calc}
56
57 % increase the bottom float placement fraction
58 \renewcommand{\bottomfraction}{0.5}
59
60 % avoids that floats are placed before their
61 % corresponding section starts
62 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
63
64 % speed up the longtable calculation
65 \setcounter{LTchunksize}{100}
66
67 % used for scaled and rotated boxes
68 \@ifundefined{rotatebox}{\usepackage{graphicx}}{}
69
70 % used for colored tables
71 \@ifundefined{textcolor}
72  {\usepackage{color}}{}
73 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
74 \definecolor{lightgrey}{gray}{0.8}
75
76 % check for package colortbl
77 % used for colored table cells
78 \newboolean{colortbl}
79 \IfFileExists{colortbl.sty}
80  {\usepackage{colortbl}
81   \setboolean{colortbl}{true}}
82  {\setboolean{colortbl}{false}}
83
84 % used for colored table rows
85 \usepackage[table]{xcolor}
86
87 % used to have extra space in table cells
88 \@ifundefined{extrarowheight}
89  {\usepackage{array}}{}
90 \setlength{\extrarowheight}{2pt}
91
92 % used for customized tables
93 % ---
94 \newcolumntype{M}[1]
95  {>{\centering\hspace{0pt}}m{#1}}
96
97 \newcolumntype{S}[2]
98  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
99
100 \newcolumntype{K}[1]
101  {>{\columncolor{#1}\hspace{0pt}}c}
102
103 \newcolumntype{V}{!{\vrule width 1.5pt}}
104
105 \newcolumntype{W}{!{\color{green}\vline}}
106 % ---
107
108 % insert additional vertical space of
109 % 1.5 mm between footnotes
110 \let\myFoot\footnote
111 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
112
113 % number algorithm floats within chapters
114 \numberwithin{algorithm}{chapter}
115
116
117 % ------------------------------------
118 % used to check for needed LaTeX packages
119 \usepackage{ifthen}
120
121 % check for package arydshln
122 % used for tables with dashed lines
123 \newboolean{arydshln}
124 \IfFileExists{arydshln.sty}
125  {\usepackage{arydshln}
126   \setboolean{arydshln}{true}}
127  {\setboolean{arydshln}{false}}
128
129 % check for package marginnote
130 % used for margin notes
131 \newboolean{marginnote}
132 \IfFileExists{marginnote.sty}
133  {\usepackage{marginnote}
134   \let\marginpar\marginnote
135   \setboolean{marginnote}{true}}
136  {\setboolean{marginnote}{false}}
137
138 % check for package sidecap
139 % used for captions on the side
140 \newboolean{sidecap}
141 \IfFileExists{sidecap.sty}
142  {\usepackage{sidecap}
143   \setboolean{sidecap}{true}}
144  {\setboolean{sidecap}{false}}
145
146 % check for picinpar
147 % used for surrounded fixed objects
148 \newboolean{picinpar}
149 \IfFileExists{picinpar.sty}
150  {\usepackage{picinpar}
151   \setboolean{picinpar}{true}}
152  {\setboolean{picinpar}{false}}
153
154 % check for lettrine
155 \newboolean{lettrine}
156 \IfFileExists{lettrine.sty}
157  {\usepackage{lettrine}
158   \setboolean{lettrine}{true}}
159  {\setboolean{lettrine}{false}}
160
161 % check for diagbox
162 \newboolean{diagbox}
163 \IfFileExists{diagbox.sty}
164  {\usepackage{diagbox}
165   \setboolean{diagbox}{true}}
166  {\setboolean{diagbox}{false}}
167
168 % use normal list environments also in French documents
169 \frenchbsetup{StandardLayout}
170
171 % workaround for a bug in KOMA-script 3.10a
172 % remove this if a newer KOMA-script version is released!
173 \usepackage{everysel,sidecap}
174 \end_preamble
175 \options fleqn,bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading,usenames,dvipsnames
176 \use_default_options false
177 \begin_modules
178 initials
179 \end_modules
180 \maintain_unincluded_children false
181 \language french
182 \language_package default
183 \inputencoding auto
184 \fontencoding global
185 \font_roman default
186 \font_sans default
187 \font_typewriter default
188 \font_math auto
189 \font_default_family default
190 \use_non_tex_fonts false
191 \font_sc false
192 \font_osf false
193 \font_sf_scale 100
194 \font_tt_scale 100
195 \graphics default
196 \default_output_format default
197 \output_sync 0
198 \bibtex_command default
199 \index_command default
200 \paperfontsize 12
201 \spacing single
202 \use_hyperref true
203 \pdf_title "LyX's Figure, Table, Floats, Notes, and Boxes manual"
204 \pdf_author "L'équipe LyX, Uwe Stöhr, traduction: Adrien Rebollo et Siegfried Meunier-Guttin-Cluzel"
205 \pdf_subject "LyX-documentation about figures, tables, floats, notes, and boxes"
206 \pdf_keywords "LyX, Tables, Figures, Floats, Boxes, Notes"
207 \pdf_bookmarks true
208 \pdf_bookmarksnumbered true
209 \pdf_bookmarksopen true
210 \pdf_bookmarksopenlevel 1
211 \pdf_breaklinks false
212 \pdf_pdfborder false
213 \pdf_colorlinks true
214 \pdf_backref false
215 \pdf_pdfusetitle false
216 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
217 \papersize default
218 \use_geometry false
219 \use_package amsmath 2
220 \use_package amssymb 2
221 \use_package esint 0
222 \use_package mathdots 1
223 \use_package mathtools 0
224 \use_package mhchem 1
225 \use_package stackrel 0
226 \use_package stmaryrd 0
227 \use_package undertilde 0
228 \cite_engine basic
229 \cite_engine_type numerical
230 \biblio_style plain
231 \use_bibtopic false
232 \use_indices false
233 \paperorientation portrait
234 \suppress_date false
235 \justification true
236 \use_refstyle 0
237 \notefontcolor #0000ff
238 \index Index
239 \shortcut idx
240 \color #008000
241 \end_index
242 \secnumdepth 3
243 \tocdepth 3
244 \paragraph_separation skip
245 \defskip medskip
246 \quotes_language french
247 \papercolumns 1
248 \papersides 2
249 \paperpagestyle default
250 \bullet 1 1 34 -1
251 \bullet 2 2 35 -1
252 \bullet 3 2 7 -1
253 \tracking_changes false
254 \output_changes false
255 \html_math_output 0
256 \html_css_as_file 0
257 \html_be_strict false
258 \end_header
259
260 \begin_body
261
262 \begin_layout Title
263 Manuel détaillé pour les figures, les tableaux, les flottants, les notes,
264  les boîtes et les objets externes de LyX
265 \end_layout
266
267 \begin_layout Author
268 par l'Équipe LyX
269 \begin_inset Foot
270 status collapsed
271
272 \begin_layout Plain Layout
273 \noindent
274 Merci d'envoyer vos commentaires et corrections à la liste de diffusion
275  de la documentation de LyX: 
276 \begin_inset CommandInset href
277 LatexCommand href
278 name "lyx-docs@lists.lyx.org"
279 target "lyx-docs@lists.lyx.org?subject=EmbeddedObjects manual"
280 type "mailto:"
281
282 \end_inset
283
284
285 \end_layout
286
287 \end_inset
288
289
290 \begin_inset Note Note
291 status open
292
293 \begin_layout Plain Layout
294 auteur original : Uwe Stöhr
295 \end_layout
296
297 \begin_layout Plain Layout
298 Traduction française : Siegfried Meunier-Guttin-Cluzel
299 \end_layout
300
301 \begin_layout Plain Layout
302 remplacement de Éditer/Visionner/Insérer/Naviguer par Édition/Affichage/Insertio
303 n/Navigation, 31/10/2012, JPChrétien
304 \end_layout
305
306 \begin_layout Plain Layout
307 version 2.0.x novembre 2011
308 \end_layout
309
310 \end_inset
311
312
313 \begin_inset Newline newline
314 \end_inset
315
316
317 \begin_inset Newline newline
318 \end_inset
319
320
321 \family sans
322 Version 2.0.x
323 \end_layout
324
325 \begin_layout Standard
326 \begin_inset CommandInset toc
327 LatexCommand tableofcontents
328
329 \end_inset
330
331
332 \end_layout
333
334 \begin_layout Standard
335 \begin_inset Note Note
336 status open
337
338 \begin_layout Plain Layout
339 Pour pouvoir exporter ce document en PDF, PS ou DVI, les paquetages LaTeX
340  
341 \series bold
342 arydshln
343 \series default
344
345 \series bold
346 colortbl
347 \series default
348
349 \series bold
350 diagbox, lettrine, marginnote, picinpar
351 \series default
352 , et 
353 \series bold
354 sidecap
355 \series default
356  doivent être installés.
357  Si ce n'est pas le cas, vous pouvez quand même exporter le document mais
358  les sections qui nécessitent les paquetages en question n'apparaîtront
359  pas sur la sortie.
360 \end_layout
361
362 \begin_layout Plain Layout
363 Vous pouvez trouver la dernière version au format PDF de ce manuel ici :
364 \begin_inset Newline newline
365 \end_inset
366
367
368 \series bold
369 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
370 \end_layout
371
372 \end_inset
373
374
375 \end_layout
376
377 \begin_layout Chapter
378 Figures
379 \begin_inset Index idx
380 status collapsed
381
382 \begin_layout Plain Layout
383 Figures
384 \end_layout
385
386 \end_inset
387
388
389 \begin_inset Index idx
390 status collapsed
391
392 \begin_layout Plain Layout
393 Graphiques|see
394 \begin_inset ERT
395 status collapsed
396
397 \begin_layout Plain Layout
398
399 {
400 \end_layout
401
402 \end_inset
403
404 Figures
405 \begin_inset ERT
406 status collapsed
407
408 \begin_layout Plain Layout
409
410 }
411 \end_layout
412
413 \end_inset
414
415
416 \end_layout
417
418 \end_inset
419
420
421 \end_layout
422
423 \begin_layout Section
424 La fenêtre de dialogue graphique
425 \begin_inset Index idx
426 status collapsed
427
428 \begin_layout Plain Layout
429 Figures ! Fenêtre de dialogue Graphique
430 \end_layout
431
432 \end_inset
433
434
435 \begin_inset CommandInset label
436 LatexCommand label
437 name "sec:Graphics-Dialog"
438
439 \end_inset
440
441
442 \end_layout
443
444 \begin_layout Standard
445 Pour placer une figure dans votre document, cliquez sur le bouton 
446 \begin_inset Info
447 type  "icon"
448 arg   "dialog-show-new-inset graphics"
449 \end_inset
450
451  dans la barre d'outils, ou faites 
452 \family sans
453 Insertion\SpecialChar \menuseparator
454 Graphique
455 \family default
456 .
457  Une fenêtre de dialogue va s'ouvrir où vous pourrez choisir le fichier
458  à charger.
459  L'image apparaîtra dans la sortie finale à la position exacte qu'elle a
460  dans le texte.
461 \end_layout
462
463 \begin_layout Standard
464 La fenêtre de dialogue Graphique peut être rappelée à tout moment en cliquant
465  sur une image
466 \begin_inset Note Note
467 status collapsed
468
469 \begin_layout Plain Layout
470 Ça marche aussi avec le bouton gauche ! (NdT)
471 \end_layout
472
473 \end_inset
474
475 .
476  Cette fenêtre de dialogue possède trois onglets:
477 \end_layout
478
479 \begin_layout Description
480 Graphique Cet onglet vous permet de choisir le fichier contenant votre image
481  et d'ajuster l'apparence qu'elle aura sur la sortie imprimée.
482  Les unités de longueurs utilisées sont décrites dans l'appendice
483 \begin_inset space ~
484 \end_inset
485
486
487 \begin_inset CommandInset ref
488 LatexCommand ref
489 reference "cha:Unités-de-longueur"
490
491 \end_inset
492
493 .
494 \begin_inset Newline newline
495 \end_inset
496
497
498 \begin_inset Index idx
499 status collapsed
500
501 \begin_layout Plain Layout
502 Figures ! Pivotées
503 \end_layout
504
505 \end_inset
506
507 Vous pouvez faire pivoter vos images dans le sens inverse des aiguilles
508  d'une montre, en donnant l'angle de rotation et la position du pivot.
509  L'image apparaîtra pivotée dans LyX.
510 \begin_inset Newline newline
511 \end_inset
512
513
514 \begin_inset Index idx
515 status collapsed
516
517 \begin_layout Plain Layout
518 Figures ! Redimensionnées
519 \end_layout
520
521 \end_inset
522
523 La taille de l'image peut être modifiée, soit en donnant un facteur d'échelle
524  sous forme d'un pourcentage, soit en donnant directement sa hauteur et
525  sa largeur.
526  Si vous ne fixez que la largeur ou que la hauteur, l'autre dimension sera
527  déterminée automatiquement.
528  Si vous fixez les deux, l'image sera transformée à la taille voulue, avec
529  éventuellement une distorsion.
530  Pour éviter une telle distorsion de l'image, vous pouvez utiliser l'option
531  
532 \family sans
533 Conserver
534 \begin_inset space ~
535 \end_inset
536
537 les
538 \begin_inset space ~
539 \end_inset
540
541 proportions
542 \family default
543 .
544  L'image sera mise à l'échelle de façon à ce que ses dimensions ne dépassent
545  pas les valeurs fixées.
546  
547 \begin_inset Newline newline
548 \end_inset
549
550 Les images peuvent être modifiée en utilisant le programme de votre choix
551  en faisant un clic droit dessus et en choisissant 
552 \family sans
553 Éditer le fichier ailleurs
554 \family default
555  dans le menu contextuel qui apparaît.
556  Ce programme peut être sélectionné pour chaque format d'image dans la rubrique
557  
558 \family sans
559 Formats
560 \begin_inset space ~
561 \end_inset
562
563 de
564 \begin_inset space ~
565 \end_inset
566
567 fichiers
568 \family default
569  dans la fenêtre de dialogue de 
570 \family sans
571 Préférences
572 \family default
573  de LyX.
574 \end_layout
575
576 \begin_layout Description
577 Rogner Une autre façon d'ajuster la hauteur et la largeur de l'image dans
578  la sortie finale est de modifier les coordonnées de la zone de l'image
579  qui est affichée.
580  Cette zone peut être calculée automatiquement à partir des données présentes
581  dans le fichier en appuyant sur le bouton 
582 \family sans
583 Valeurs
584 \begin_inset space ~
585 \end_inset
586
587 du
588 \begin_inset space ~
589 \end_inset
590
591 Fichier
592 \family default
593 .
594  Avec l'option 
595 \family sans
596 Couper
597 \begin_inset space ~
598 \end_inset
599
600 à
601 \begin_inset space ~
602 \end_inset
603
604 la
605 \begin_inset space ~
606 \end_inset
607
608 boîte
609 \begin_inset space ~
610 \end_inset
611
612 de
613 \begin_inset space ~
614 \end_inset
615
616 délimitation, 
617 \family default
618 seule la portion de l'image qui est dans la zone définie sera imprimée.
619  En principe vous n'avez pas à vous occuper des coordonnées de l'image et
620  donc vous pouvez ignorer l'onglet 
621 \family sans
622 Rogner
623 \family default
624 .
625 \end_layout
626
627 \begin_layout Description
628
629 \family sans
630 Options
631 \begin_inset space ~
632 \end_inset
633
634 LaTeX
635 \begin_inset space ~
636 \end_inset
637
638 et
639 \begin_inset space ~
640 \end_inset
641
642 LyX
643 \family default
644  Avec cet onglet, vous pouvez modifier l'apparence de l'image dans LyX et
645  les experts ès-LaTeX pourront fournir des options supplémentaires pour
646  LaTeX
647 \begin_inset Newline newline
648 \end_inset
649
650 L'option 
651 \family sans
652 Mode brouillon
653 \family default
654  fait que l'image apparaîtra sur la sortie sous la forme d'un cadre vide
655  avec la taille de l'image.
656 \begin_inset Newline newline
657 \end_inset
658
659 L'option 
660 \family sans
661 Ne
662 \begin_inset space ~
663 \end_inset
664
665 pas
666 \begin_inset space ~
667 \end_inset
668
669 décompresser
670 \begin_inset space ~
671 \end_inset
672
673 à
674 \begin_inset space ~
675 \end_inset
676
677 l'exportation
678 \family default
679  n'affectera que les graphiques EPS zippés, par exemple 
680 \family typewriter
681 x.eps.gz
682 \family default
683 .
684  Quand cette option est activée, les images ne sont pas décompressées à
685  l'exportation, vu que LaTeX peut les traiter telles-quelles
686 \begin_inset Newline newline
687 \end_inset
688
689 Les graphiques EPS zippés sont utiles pour économiser de la place sur les
690  disques quand on utilise PostScript comme format de sortie, voir l'appendice
691 \begin_inset space ~
692 \end_inset
693
694
695 \begin_inset CommandInset ref
696 LatexCommand ref
697 reference "sec:PostScript"
698
699 \end_inset
700
701 .
702  Pour zipper un graphique EPS, utilisez les commandes suivantes dans un
703  terminal UNIX ou une console Windows:
704 \begin_inset Newline newline
705 \end_inset
706
707
708 \series bold
709 gzip x.eps
710 \series default
711
712 \begin_inset Newline newline
713 \end_inset
714
715
716 \series bold
717 zgrep %%Bounding x.eps.gz > x.eps.bb
718 \series default
719
720 \begin_inset Newline newline
721 \end_inset
722
723 La seconde commande va créer le fichier contenant la description de la boîte
724  de délimitation 
725 \begin_inset Quotes eld
726 \end_inset
727
728
729 \family typewriter
730 x.eps.bb
731 \family default
732
733 \begin_inset Quotes erd
734 \end_inset
735
736  qui est indispensable pour que LaTeX puisse traiter un fichier compressé.
737 \begin_inset Newline newline
738 \end_inset
739
740 Dans la section 
741 \family sans
742 Groupe
743 \begin_inset space ~
744 \end_inset
745
746 de
747 \begin_inset space ~
748 \end_inset
749
750 graphiques
751 \family default
752  vous pouvez définir ou de choisir un groupe de paramètres d'image
753 \begin_inset Index idx
754 status collapsed
755
756 \begin_layout Plain Layout
757 Figures ! Groupes de paramétrisation
758 \end_layout
759
760 \end_inset
761
762 .
763  Les images qui sont rassemblées dans un tel groupe partagent leurs paramètres,
764  ce qui fait qu'il suffit de modifier une image du groupe pour que toutes
765  les autres soient automatiquement modifiées de la même manière.
766  Vous pouvez par exemple modifier la taille de tout un lot d'images sans
767  avoir à modifier leur taille manuellement une par une.
768  On peut rattacher une image à un groupe existant en utilisant le menu contextue
769 l de l'image et en cochant le nom du groupe dans la liste
770 \begin_inset Foot
771 status collapsed
772
773 \begin_layout Plain Layout
774 La liste des groupes n'apparaît que si au moins un groupe a été défini (N.d.T.)
775 \end_layout
776
777 \end_inset
778
779 .
780 \end_layout
781
782 \begin_layout Standard
783 \begin_inset VSpace bigskip
784 \end_inset
785
786
787 \end_layout
788
789 \begin_layout Standard
790 Voici un exemple d'image au format EPS
791 \begin_inset Foot
792 status collapsed
793
794 \begin_layout Plain Layout
795 Les format d'images sont décrits dans la section
796 \begin_inset space ~
797 \end_inset
798
799
800 \begin_inset CommandInset ref
801 LatexCommand ref
802 reference "sec:Image-Formats"
803
804 \end_inset
805
806 .
807 \end_layout
808
809 \end_inset
810
811  qui se trouve dans son propre paragraphe, ce dernier étant centré horizontaleme
812 nt:
813 \end_layout
814
815 \begin_layout Standard
816 \align center
817 \begin_inset Graphics
818         filename ../clipart/mobius.eps
819         scale 70
820         scaleBeforeRotation
821         rotateOrigin center
822
823 \end_inset
824
825
826 \end_layout
827
828 \begin_layout Standard
829 Et voici la même image mais en mode brouillon:
830 \end_layout
831
832 \begin_layout Standard
833 \align center
834 \begin_inset Graphics
835         filename ../clipart/mobius.eps
836         scale 70
837         draft
838         scaleBeforeRotation
839         rotateOrigin center
840
841 \end_inset
842
843
844 \end_layout
845
846 \begin_layout Section
847 Figures flottantes
848 \begin_inset CommandInset label
849 LatexCommand label
850 name "sec:Figure-Floats"
851
852 \end_inset
853
854
855 \begin_inset Index idx
856 status collapsed
857
858 \begin_layout Plain Layout
859 Flottants ! Figures
860 \end_layout
861
862 \end_inset
863
864
865 \begin_inset Index idx
866 status collapsed
867
868 \begin_layout Plain Layout
869 Figures ! Flottants
870 \end_layout
871
872 \end_inset
873
874
875 \end_layout
876
877 \begin_layout Standard
878 Pour des explications d'ordre général concernant les flottants, jetez un
879  coup d'œil à la section
880 \begin_inset space ~
881 \end_inset
882
883
884 \begin_inset CommandInset ref
885 LatexCommand ref
886 reference "sec:Flottants-Introduction"
887
888 \end_inset
889
890 .
891 \end_layout
892
893 \begin_layout Standard
894 Le bouton 
895 \begin_inset Info
896 type  "icon"
897 arg   "float-insert figure"
898 \end_inset
899
900  de la barre d'outils et le menu 
901 \family sans
902 Insertion\SpecialChar \menuseparator
903 Flottant\SpecialChar \menuseparator
904 Figure
905 \family default
906  insèrent un flottant avec l'étiquette 
907 \begin_inset Quotes eld
908 \end_inset
909
910
911 \series bold
912 Figure
913 \begin_inset space ~
914 \end_inset
915
916 #:
917 \series default
918
919 \begin_inset Quotes erd
920 \end_inset
921
922  (# est le numéro réel de l'image).
923  Vous pouvez insérer l'image au dessus de la légende comme pour la figure
924 \begin_inset space ~
925 \end_inset
926
927
928 \begin_inset CommandInset ref
929 LatexCommand ref
930 reference "fig:kill-plat"
931
932 \end_inset
933
934  ou en dessous de la légende comme pour la Figure
935 \begin_inset space ~
936 \end_inset
937
938
939 \begin_inset CommandInset ref
940 LatexCommand ref
941 reference "fig:escher"
942
943 \end_inset
944
945 .
946  Vous trouverez plus d'information sur le positionnement des légendes dans
947  la section
948 \begin_inset space ~
949 \end_inset
950
951
952 \begin_inset CommandInset ref
953 LatexCommand ref
954 reference "sec:Placement-légende"
955
956 \end_inset
957
958 .
959 \end_layout
960
961 \begin_layout Standard
962 \begin_inset Float figure
963 wide false
964 sideways false
965 status open
966
967 \begin_layout Plain Layout
968 \align center
969 \begin_inset Graphics
970         filename ../clipart/platypus.eps
971         width 50col%
972         scaleBeforeRotation
973         rotateOrigin center
974
975 \end_inset
976
977
978 \end_layout
979
980 \begin_layout Plain Layout
981 \begin_inset Caption Standard
982
983 \begin_layout Plain Layout
984 \begin_inset CommandInset label
985 LatexCommand label
986 name "fig:kill-plat"
987
988 \end_inset
989
990 Un ornithorynque sévèrement déformé dans un flottant de figure.
991 \end_layout
992
993 \end_inset
994
995
996 \end_layout
997
998 \end_inset
999
1000
1001 \end_layout
1002
1003 \begin_layout Standard
1004 \begin_inset Float figure
1005 wide false
1006 sideways false
1007 status open
1008
1009 \begin_layout Plain Layout
1010 \begin_inset Caption Standard
1011
1012 \begin_layout Plain Layout
1013 \begin_inset CommandInset label
1014 LatexCommand label
1015 name "fig:escher"
1016
1017 \end_inset
1018
1019 M.C.
1020  Escher sous LSD.
1021 \end_layout
1022
1023 \end_inset
1024
1025
1026 \end_layout
1027
1028 \begin_layout Plain Layout
1029 \align center
1030 \begin_inset Graphics
1031         filename ../clipart/escher-lsd.eps
1032         scale 80
1033         scaleBeforeRotation
1034         rotateOrigin center
1035
1036 \end_inset
1037
1038
1039 \end_layout
1040
1041 \end_inset
1042
1043
1044 \end_layout
1045
1046 \begin_layout Standard
1047 \begin_inset Index idx
1048 status collapsed
1049
1050 \begin_layout Plain Layout
1051 References@Références ! à des Figures
1052 \end_layout
1053
1054 \end_inset
1055
1056 Les figure
1057 \begin_inset space ~
1058 \end_inset
1059
1060
1061 \begin_inset CommandInset ref
1062 LatexCommand ref
1063 reference "fig:kill-plat"
1064
1065 \end_inset
1066
1067  et 
1068 \begin_inset CommandInset ref
1069 LatexCommand ref
1070 reference "fig:escher"
1071
1072 \end_inset
1073
1074  sont des exemples de figures référencées.
1075  Dans le texte, on fait référence à une figure en faisant référence à sa
1076  légende.
1077  On insère donc une étiquette dans la légende en utilisant le menu 
1078 \family sans
1079 Insertion
1080 \family default
1081 \SpecialChar \menuseparator
1082
1083 \family sans
1084 Étiquette
1085 \family default
1086  ou le bouton 
1087 \begin_inset Info
1088 type  "icon"
1089 arg   "label-insert"
1090 \end_inset
1091
1092  de la barre d'outils.
1093  On peut alors faire référence à cette étiquette en utilisant le menu 
1094 \family sans
1095 Insertion\SpecialChar \menuseparator
1096 Référence
1097 \begin_inset space ~
1098 \end_inset
1099
1100 croisée
1101 \family default
1102  ou le bouton 
1103 \begin_inset Info
1104 type  "icon"
1105 arg   "dialog-show-new-inset ref"
1106 \end_inset
1107
1108  de la barre d'outils.
1109  Il est important d'utiliser des références pour les flottants de figures
1110  plutôt que des locutions vagues du genre 
1111 \begin_inset Quotes eld
1112 \end_inset
1113
1114 la figure ci-dessous
1115 \begin_inset Quotes erd
1116 \end_inset
1117
1118 , puisque LaTeX va repositionner la figure dans le document final.
1119  Votre figure risque de ne plus être ci-dessous du tout !
1120 \begin_inset Newline newline
1121 \end_inset
1122
1123 Le référencement est expliqué plus en détail dans la section
1124 \begin_inset space ~
1125 \end_inset
1126
1127
1128 \begin_inset CommandInset ref
1129 LatexCommand ref
1130 reference "sec:Referencer-les-Flottants"
1131
1132 \end_inset
1133
1134 .
1135 \end_layout
1136
1137 \begin_layout Standard
1138 En principe on met une seule figure dans un flottant, mais parfois vous
1139  pouvez vouloir deux figures avec chacune sa sous-légende.
1140  C'est possible en insérant des flottants d'image dans des flottants d'image
1141  existants.
1142  Notez que seule la légende principale des flottants est reprise dans la
1143  liste des figures.
1144  La figure
1145 \begin_inset space ~
1146 \end_inset
1147
1148
1149 \begin_inset CommandInset ref
1150 LatexCommand ref
1151 reference "fig:Deux-images-déformées"
1152
1153 \end_inset
1154
1155  est un exemple de flottant de figure avec deux images mises l'une à côté
1156  de l'autre.
1157  Vous pouvez aussi mettre les images les unes sous les autres.
1158  Les figures
1159 \begin_inset space ~
1160 \end_inset
1161
1162
1163 \begin_inset CommandInset ref
1164 LatexCommand ref
1165 reference "fig:Structure-indéfinissable"
1166
1167 \end_inset
1168
1169  et 
1170 \begin_inset CommandInset ref
1171 LatexCommand ref
1172 reference "fig:Un-ornithorynque"
1173
1174 \end_inset
1175
1176  sont des sous-figures.
1177 \end_layout
1178
1179 \begin_layout Standard
1180 \begin_inset Float figure
1181 wide false
1182 sideways false
1183 status open
1184
1185 \begin_layout Plain Layout
1186 \begin_inset space \hfill{}
1187 \end_inset
1188
1189
1190 \begin_inset Float figure
1191 wide false
1192 sideways false
1193 status open
1194
1195 \begin_layout Plain Layout
1196 \begin_inset Caption Standard
1197
1198 \begin_layout Plain Layout
1199 \begin_inset CommandInset label
1200 LatexCommand label
1201 name "fig:Structure-indéfinissable"
1202
1203 \end_inset
1204
1205 Structure indéfinissable
1206 \end_layout
1207
1208 \end_inset
1209
1210
1211 \end_layout
1212
1213 \begin_layout Plain Layout
1214 \begin_inset Graphics
1215         filename ../clipart/escher-lsd.eps
1216         width 45col%
1217         scaleBeforeRotation
1218         groupId Déformés
1219
1220 \end_inset
1221
1222
1223 \end_layout
1224
1225 \end_inset
1226
1227
1228 \begin_inset space \hfill{}
1229 \end_inset
1230
1231
1232 \begin_inset Float figure
1233 wide false
1234 sideways false
1235 status open
1236
1237 \begin_layout Plain Layout
1238 \begin_inset Caption Standard
1239
1240 \begin_layout Plain Layout
1241 \begin_inset CommandInset label
1242 LatexCommand label
1243 name "fig:Un-ornithorynque"
1244
1245 \end_inset
1246
1247 Un ornithorynque
1248 \end_layout
1249
1250 \end_inset
1251
1252
1253 \end_layout
1254
1255 \begin_layout Plain Layout
1256 \begin_inset Graphics
1257         filename ../clipart/platypus.eps
1258         width 45col%
1259         scaleBeforeRotation
1260         groupId Déformés
1261
1262 \end_inset
1263
1264
1265 \end_layout
1266
1267 \end_inset
1268
1269
1270 \begin_inset space \hfill{}
1271 \end_inset
1272
1273
1274 \end_layout
1275
1276 \begin_layout Plain Layout
1277 \begin_inset Caption Standard
1278
1279 \begin_layout Plain Layout
1280 \begin_inset CommandInset label
1281 LatexCommand label
1282 name "fig:Deux-images-déformées"
1283
1284 \end_inset
1285
1286 Deux images déformées.
1287  Les deux images font partie du groupe de paramétrisation 
1288 \begin_inset Quotes eld
1289 \end_inset
1290
1291 déformés
1292 \begin_inset Quotes erd
1293 \end_inset
1294
1295 .
1296 \end_layout
1297
1298 \end_inset
1299
1300
1301 \end_layout
1302
1303 \end_inset
1304
1305
1306 \end_layout
1307
1308 \begin_layout Section
1309 Les formats d'images
1310 \begin_inset CommandInset label
1311 LatexCommand label
1312 name "sec:Image-Formats"
1313
1314 \end_inset
1315
1316
1317 \begin_inset Index idx
1318 status collapsed
1319
1320 \begin_layout Plain Layout
1321 Formats d' images
1322 \end_layout
1323
1324 \end_inset
1325
1326
1327 \begin_inset Index idx
1328 status collapsed
1329
1330 \begin_layout Plain Layout
1331 Figures ! Formats d'images
1332 \end_layout
1333
1334 \end_inset
1335
1336
1337 \end_layout
1338
1339 \begin_layout Standard
1340 Vous pouvez insérer des images dans n'importe quel format connu.
1341  Mais, comme nous l'avons expliqué dans l'appendice
1342 \begin_inset space ~
1343 \end_inset
1344
1345
1346 \begin_inset CommandInset ref
1347 LatexCommand ref
1348 reference "cha:Formats-fichiers-graphiques"
1349
1350 \end_inset
1351
1352 , chaque format pour la sortie du document ne va accepter qu'un petit nombre
1353  de formats d'images.
1354  Pour s'en sortir LyX utilise le programme 
1355 \family typewriter
1356 ImageMagick
1357 \family default
1358  en arrière plan pour convertir les formats que vous utilisez dans un des
1359  formats acceptés par le format de sortie.
1360  Ces conversions prenant forcément du temps, vous pouvez accélérer vos exportati
1361 ons en n'utilisant que les formats listés dans les sous sections de l'appendice
1362 \begin_inset space ~
1363 \end_inset
1364
1365
1366 \begin_inset CommandInset ref
1367 LatexCommand ref
1368 reference "cha:Formats-fichiers-graphiques"
1369
1370 \end_inset
1371
1372 .
1373 \end_layout
1374
1375 \begin_layout Standard
1376 Comme pour les polices de caractères, il y a deux grands types de formats
1377  d'images:
1378 \end_layout
1379
1380 \begin_layout Description
1381 Les
1382 \begin_inset space ~
1383 \end_inset
1384
1385 images
1386 \begin_inset space ~
1387 \end_inset
1388
1389 Matricielles
1390 \begin_inset space ~
1391 \end_inset
1392
1393 (ou
1394 \begin_inset space ~
1395 \end_inset
1396
1397 bitmap) l'image est décomposée en une mosaïque de points (ou pixels), souvent
1398  enregistrés sous un format compressé.
1399  Elles ne sont pas facilement redimensionnables et on voit apparaître des
1400  petits carrés quand on utilise des agrandissements trop importants (aspect
1401  
1402 \begin_inset Quotes eld
1403 \end_inset
1404
1405 pixellisé
1406 \begin_inset Quotes erd
1407 \end_inset
1408
1409 ).
1410  Les formats matriciels les plus connus sont le GIF (
1411 \begin_inset Quotes eld
1412 \end_inset
1413
1414 Graphics Interchange Format
1415 \begin_inset Quotes erd
1416 \end_inset
1417
1418 , avec comme extension de fichier 
1419 \begin_inset Quotes eld
1420 \end_inset
1421
1422
1423 \family typewriter
1424 .gif
1425 \family default
1426
1427 \begin_inset Quotes erd
1428 \end_inset
1429
1430 )
1431 \begin_inset Index idx
1432 status collapsed
1433
1434 \begin_layout Plain Layout
1435 GIF|see
1436 \begin_inset ERT
1437 status collapsed
1438
1439 \begin_layout Plain Layout
1440
1441 {
1442 \end_layout
1443
1444 \end_inset
1445
1446 Format d'image
1447 \begin_inset ERT
1448 status collapsed
1449
1450 \begin_layout Plain Layout
1451
1452 }
1453 \end_layout
1454
1455 \end_inset
1456
1457
1458 \end_layout
1459
1460 \end_inset
1461
1462 , le PNG (
1463 \begin_inset Quotes eld
1464 \end_inset
1465
1466 Portable Network Graphics, extension 
1467 \begin_inset Quotes eld
1468 \end_inset
1469
1470
1471 \family typewriter
1472 .png
1473 \family default
1474
1475 \begin_inset Quotes erd
1476 \end_inset
1477
1478 )
1479 \begin_inset Index idx
1480 status collapsed
1481
1482 \begin_layout Plain Layout
1483 PNG|see
1484 \begin_inset ERT
1485 status collapsed
1486
1487 \begin_layout Plain Layout
1488
1489 {
1490 \end_layout
1491
1492 \end_inset
1493
1494 Formats d'image
1495 \begin_inset ERT
1496 status collapsed
1497
1498 \begin_layout Plain Layout
1499
1500 }
1501 \end_layout
1502
1503 \end_inset
1504
1505
1506 \end_layout
1507
1508 \end_inset
1509
1510  et le JPG (
1511 \begin_inset Quotes eld
1512 \end_inset
1513
1514 Joint Photographic Expert Group, extension 
1515 \begin_inset Quotes eld
1516 \end_inset
1517
1518
1519 \family typewriter
1520 .jpg
1521 \family default
1522
1523 \begin_inset Quotes erd
1524 \end_inset
1525
1526  ou 
1527 \begin_inset Quotes eld
1528 \end_inset
1529
1530
1531 \family typewriter
1532 .jpeg
1533 \family default
1534
1535 \begin_inset Quotes erd
1536 \end_inset
1537
1538 )
1539 \begin_inset Index idx
1540 status collapsed
1541
1542 \begin_layout Plain Layout
1543 JPG|see
1544 \begin_inset ERT
1545 status collapsed
1546
1547 \begin_layout Plain Layout
1548
1549 {
1550 \end_layout
1551
1552 \end_inset
1553
1554 Formats d'image
1555 \begin_inset ERT
1556 status collapsed
1557
1558 \begin_layout Plain Layout
1559
1560 }
1561 \end_layout
1562
1563 \end_inset
1564
1565
1566 \end_layout
1567
1568 \end_inset
1569
1570 .
1571 \end_layout
1572
1573 \begin_layout Description
1574 Les
1575 \begin_inset space ~
1576 \end_inset
1577
1578 images
1579 \begin_inset space ~
1580 \end_inset
1581
1582 Vectorielles
1583 \begin_inset space ~
1584 \end_inset
1585
1586 (ou
1587 \begin_inset space ~
1588 \end_inset
1589
1590 redimensionnables) l'image est décrite sous forme d'objets, ou vecteurs
1591  (lignes, courbes, formes géométriques, caractères...) et peut donc être redimensio
1592 nnée comme on le veut sans perte de précision.
1593  La possibilité de redimensionner les images est très utilisé pour les présentat
1594 ions, vu que le passage par un vidéo-projecteur entraîne forcément un redimensio
1595 nnement.
1596  Le redimensionnement permet aussi de présenter des documents en ligne où
1597  le lecteur pourra agrandir les diagrammes comme il le souhaite pour en
1598  étudier les détails.
1599 \begin_inset Newline newline
1600 \end_inset
1601
1602 Les principaux formats vectoriels sont le SVG (
1603 \begin_inset Quotes eld
1604 \end_inset
1605
1606 Scalable Vector Graphics
1607 \begin_inset Quotes erd
1608 \end_inset
1609
1610 , extension
1611 \begin_inset Quotes eld
1612 \end_inset
1613
1614
1615 \family typewriter
1616 .svg
1617 \family default
1618
1619 \begin_inset Quotes erd
1620 \end_inset
1621
1622 )
1623 \begin_inset Index idx
1624 status collapsed
1625
1626 \begin_layout Plain Layout
1627 SVG|see
1628 \begin_inset ERT
1629 status collapsed
1630
1631 \begin_layout Plain Layout
1632
1633 {
1634 \end_layout
1635
1636 \end_inset
1637
1638 Format d'image
1639 \begin_inset ERT
1640 status collapsed
1641
1642 \begin_layout Plain Layout
1643
1644 }
1645 \end_layout
1646
1647 \end_inset
1648
1649
1650 \end_layout
1651
1652 \end_inset
1653
1654 , l'EPS ( 
1655 \begin_inset Quotes eld
1656 \end_inset
1657
1658 encapsulated PostScript
1659 \begin_inset Quotes erd
1660 \end_inset
1661
1662 , extension
1663 \begin_inset Quotes eld
1664 \end_inset
1665
1666
1667 \family typewriter
1668 .eps
1669 \family default
1670
1671 \begin_inset Quotes erd
1672 \end_inset
1673
1674 )
1675 \begin_inset Index idx
1676 status collapsed
1677
1678 \begin_layout Plain Layout
1679 EPS|see
1680 \begin_inset ERT
1681 status collapsed
1682
1683 \begin_layout Plain Layout
1684
1685 {
1686 \end_layout
1687
1688 \end_inset
1689
1690 Format d'image
1691 \begin_inset ERT
1692 status collapsed
1693
1694 \begin_layout Plain Layout
1695
1696 }
1697 \end_layout
1698
1699 \end_inset
1700
1701
1702 \end_layout
1703
1704 \end_inset
1705
1706 , le PDF (
1707 \begin_inset Quotes eld
1708 \end_inset
1709
1710 Portable Document Format
1711 \begin_inset Quotes erd
1712 \end_inset
1713
1714 , extension
1715 \begin_inset Quotes eld
1716 \end_inset
1717
1718
1719 \family typewriter
1720 .pdf
1721 \family default
1722
1723 \begin_inset Quotes erd
1724 \end_inset
1725
1726 )
1727 \begin_inset Index idx
1728 status collapsed
1729
1730 \begin_layout Plain Layout
1731 PDF|see
1732 \begin_inset ERT
1733 status collapsed
1734
1735 \begin_layout Plain Layout
1736
1737 {
1738 \end_layout
1739
1740 \end_inset
1741
1742 Format d'image
1743 \begin_inset ERT
1744 status collapsed
1745
1746 \begin_layout Plain Layout
1747
1748 }
1749 \end_layout
1750
1751 \end_inset
1752
1753
1754 \end_layout
1755
1756 \end_inset
1757
1758  et le WMF (
1759 \begin_inset Quotes eld
1760 \end_inset
1761
1762 Windows Metafile
1763 \begin_inset Quotes erd
1764 \end_inset
1765
1766 , extension 
1767 \begin_inset Quotes eld
1768 \end_inset
1769
1770
1771 \family typewriter
1772 .wfm
1773 \family default
1774
1775 \begin_inset Quotes erd
1776 \end_inset
1777
1778  ou 
1779 \begin_inset Quotes eld
1780 \end_inset
1781
1782
1783 \family typewriter
1784 .emf
1785 \family default
1786
1787 \begin_inset Quotes erd
1788 \end_inset
1789
1790 )
1791 \begin_inset Index idx
1792 status collapsed
1793
1794 \begin_layout Plain Layout
1795 WMF|see
1796 \begin_inset ERT
1797 status collapsed
1798
1799 \begin_layout Plain Layout
1800
1801 {
1802 \end_layout
1803
1804 \end_inset
1805
1806 Formats d'images
1807 \begin_inset ERT
1808 status collapsed
1809
1810 \begin_layout Plain Layout
1811
1812 }
1813 \end_layout
1814
1815 \end_inset
1816
1817
1818 \end_layout
1819
1820 \end_inset
1821
1822 .
1823  En fait vous pouvez convertir n'importe quel format matriciel en PDF ou
1824  en EPS, mais le résultat ne sera pas redimensionnable.
1825  Dans ce cas seul une en-tête est réellement ajoutée à l'image initiale.
1826 \begin_inset Foot
1827 status collapsed
1828
1829 \begin_layout Plain Layout
1830 Dans le cas du PDF l'image initiale est aussi compressée.
1831 \end_layout
1832
1833 \end_inset
1834
1835
1836 \end_layout
1837
1838 \begin_layout Standard
1839 Les fichiers PDF générés par 
1840 \family typewriter
1841 Adobe Photoshop
1842 \family default
1843 , par exemple, sont des images matricielles.
1844 \end_layout
1845
1846 \begin_layout Standard
1847 En principe il est quasiment impossible de convertir une image matricielle
1848  en graphique vectoriel, seul le contraire est possible.
1849  Seuls les formats d'image PDF et EPS peuvent être directement incorporés
1850  dans respectivement un fichier de sortie PDF ou PostScript.
1851  Les images en SVG ou en WMF sont recalculées sous forme de bitmaps quand
1852  la sortie est générée puisqu'il n'existe pas actuellement de convertisseurs
1853  WMF/SVG
1854 \begin_inset Formula $\to$
1855 \end_inset
1856
1857 PDF/EPS convenables.
1858 \end_layout
1859
1860 \begin_layout Chapter
1861 Tableaux
1862 \begin_inset Index idx
1863 status collapsed
1864
1865 \begin_layout Plain Layout
1866 Tableau
1867 \end_layout
1868
1869 \end_inset
1870
1871
1872 \end_layout
1873
1874 \begin_layout Section
1875 Introduction
1876 \begin_inset Index idx
1877 status collapsed
1878
1879 \begin_layout Plain Layout
1880 Tableau ! Introduction
1881 \end_layout
1882
1883 \end_inset
1884
1885
1886 \end_layout
1887
1888 \begin_layout Standard
1889 Vous pouvez insérer un tableau en utilisant soit le bouton de la barre d'outils
1890  
1891 \begin_inset Info
1892 type  "icon"
1893 arg   "tabular-insert"
1894 \end_inset
1895
1896  soit 
1897 \family sans
1898 Insertion\SpecialChar \menuseparator
1899 Tableau
1900 \family default
1901 .
1902  Le bouton vous offre un moyen graphique pour choisir la taille du tableau
1903  : Vous déplacez le curseur de la souris pour indiquer le nombre de lignes
1904  et de colonnes que doit avoir le tableau qui va être créé et vous appuyez
1905  sur un bouton de la souris pour valider votre choix.
1906  Quand vous utilisez le menu pour créer un tableau, une fenêtre apparaît,
1907  vous demandant le nombre de lignes et de colonnes.
1908 \begin_inset Newline newline
1909 \end_inset
1910
1911 Le tableau a implicitementune bordure au dessus et à gauche de chaque case,
1912  une à droite de la colonne la plus à droite et une en bas de la rangée
1913  du bas, qui forment une boîte autour du tableau.
1914  En plus, la rangée supérieure a aussi une bordure en bas, ce qui fait qu'elle
1915  apparaît séparée du reste du tableau.
1916  Voici un exemple :
1917 \end_layout
1918
1919 \begin_layout Standard
1920 \align center
1921 \begin_inset Tabular
1922 <lyxtabular version="3" rows="4" columns="4">
1923 <features rotate="0" tabularvalignment="middle">
1924 <column alignment="center" valignment="top" width="0">
1925 <column alignment="center" valignment="top" width="0">
1926 <column alignment="center" valignment="top" width="0">
1927 <column alignment="center" valignment="top" width="0">
1928 <row>
1929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1930 \begin_inset Text
1931
1932 \begin_layout Plain Layout
1933
1934 \end_layout
1935
1936 \end_inset
1937 </cell>
1938 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1939 \begin_inset Text
1940
1941 \begin_layout Plain Layout
1942 1
1943 \end_layout
1944
1945 \end_inset
1946 </cell>
1947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1948 \begin_inset Text
1949
1950 \begin_layout Plain Layout
1951 2
1952 \end_layout
1953
1954 \end_inset
1955 </cell>
1956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1957 \begin_inset Text
1958
1959 \begin_layout Plain Layout
1960 3
1961 \end_layout
1962
1963 \end_inset
1964 </cell>
1965 </row>
1966 <row>
1967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1968 \begin_inset Text
1969
1970 \begin_layout Plain Layout
1971 A
1972 \end_layout
1973
1974 \end_inset
1975 </cell>
1976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1977 \begin_inset Text
1978
1979 \begin_layout Plain Layout
1980
1981 \end_layout
1982
1983 \end_inset
1984 </cell>
1985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1986 \begin_inset Text
1987
1988 \begin_layout Plain Layout
1989
1990 \end_layout
1991
1992 \end_inset
1993 </cell>
1994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1995 \begin_inset Text
1996
1997 \begin_layout Plain Layout
1998
1999 \end_layout
2000
2001 \end_inset
2002 </cell>
2003 </row>
2004 <row>
2005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2006 \begin_inset Text
2007
2008 \begin_layout Plain Layout
2009 B
2010 \end_layout
2011
2012 \end_inset
2013 </cell>
2014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2015 \begin_inset Text
2016
2017 \begin_layout Plain Layout
2018
2019 \end_layout
2020
2021 \end_inset
2022 </cell>
2023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2024 \begin_inset Text
2025
2026 \begin_layout Plain Layout
2027
2028 \end_layout
2029
2030 \end_inset
2031 </cell>
2032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2033 \begin_inset Text
2034
2035 \begin_layout Plain Layout
2036
2037 \end_layout
2038
2039 \end_inset
2040 </cell>
2041 </row>
2042 <row>
2043 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2044 \begin_inset Text
2045
2046 \begin_layout Plain Layout
2047 C
2048 \end_layout
2049
2050 \end_inset
2051 </cell>
2052 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2053 \begin_inset Text
2054
2055 \begin_layout Plain Layout
2056
2057 \end_layout
2058
2059 \end_inset
2060 </cell>
2061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2062 \begin_inset Text
2063
2064 \begin_layout Plain Layout
2065
2066 \end_layout
2067
2068 \end_inset
2069 </cell>
2070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2071 \begin_inset Text
2072
2073 \begin_layout Plain Layout
2074
2075 \end_layout
2076
2077 \end_inset
2078 </cell>
2079 </row>
2080 </lyxtabular>
2081
2082 \end_inset
2083
2084
2085 \end_layout
2086
2087 \begin_layout Section
2088 La fenêtre 
2089 \family sans
2090 tableau
2091 \family default
2092
2093 \begin_inset Index idx
2094 status collapsed
2095
2096 \begin_layout Plain Layout
2097 Tableau ! Fenêtre de dialogue
2098 \end_layout
2099
2100 \end_inset
2101
2102
2103 \end_layout
2104
2105 \begin_layout Standard
2106 Vous pouvez agir sur un tableau en cliquant dessus avec le bouton droit
2107  de la souris, ce qui fait apparaître une fenêtre avec des options.
2108  Dans cette fenêtre vous pouvez modifier les réglages concernant la cellule,
2109  la colonne et la ligne dans laquelle le curseur se trouve.
2110  La plupart des options peuvent s'appliquer à des sélections.
2111  Ce qui signifie que si vous avez sélectionné plus d'une cellule, plus d'une
2112  ligne ou plus d'une colonne, l'action demandée prendra en compte toute
2113  votre sélection.
2114  Notez qu'il y a une différence entre sélectionner le 
2115 \emph on
2116 contenu 
2117 \emph default
2118 d'une cellule et sélectionner la cellule elle-même.
2119 \begin_inset Newline newline
2120 \end_inset
2121
2122 En cochant l'option 
2123 \family sans
2124 Application
2125 \begin_inset space ~
2126 \end_inset
2127
2128 immédiate
2129 \family default
2130  de la fenêtre de dialogue, chaque modification d'un champ de la fenêtre
2131  est appliquée directement.
2132  Si vous déplacez le curseur vers une autre celule du tableau, la fenêtre
2133  s'adapte avec les valeurs des paramètres de la nouvelle cellule.
2134  Si vous modifiez les valeurs des longueurs qui se trouvent dans la fenêtre
2135  de dialogue, vous devez appuyer sur 
2136 \family sans
2137 Entrée
2138 \family default
2139  pour que la modification soit appliquée.
2140 \begin_inset Newline newline
2141 \end_inset
2142
2143 Vous pouvez utiliser les onglets suivants de la fenêtre de dialogue de tableaux
2144  :
2145 \end_layout
2146
2147 \begin_layout Description
2148 Paramètres
2149 \begin_inset space ~
2150 \end_inset
2151
2152 du
2153 \begin_inset space ~
2154 \end_inset
2155
2156 tableau Avec cet onglet, vous pouvez choisir l'alignement horizontal et
2157  la largeur de la colonne courante.
2158  L'alignement horizontal 
2159 \family sans
2160 Au
2161 \begin_inset space ~
2162 \end_inset
2163
2164 séparateur
2165 \begin_inset space ~
2166 \end_inset
2167
2168 décimal
2169 \family default
2170  est décrit dans la section
2171 \begin_inset space ~
2172 \end_inset
2173
2174
2175 \begin_inset CommandInset ref
2176 LatexCommand ref
2177 reference "sub:Alignements-de-cellules"
2178
2179 \end_inset
2180
2181 .
2182  Quand vous avez fixé une largeur, vous pouvez aussi modifier l'alignement
2183  vertical de la ligne courante.
2184  Une largeur fixée va permettre aux cellules d'avoir des sauts de lignes
2185  et donc, plusieurs paragraphes de texte, voir la section
2186 \begin_inset space ~
2187 \end_inset
2188
2189
2190 \begin_inset CommandInset ref
2191 LatexCommand ref
2192 reference "sub:Lignes-multiple-dans-cellule"
2193
2194 \end_inset
2195
2196 .
2197  Si vous ne fixez pas la largeur, la colonne sera aussi large qu'il le faudra
2198  pour accommoder le contenu de cellule le plus large.
2199 \begin_inset Newline newline
2200 \end_inset
2201
2202 Vous pouvez aussi marquer une ou plusieurs cellules d'une ligne comme étant
2203  un multicolonne, voir la section
2204 \begin_inset space ~
2205 \end_inset
2206
2207
2208 \begin_inset CommandInset ref
2209 LatexCommand ref
2210 reference "sub:Multicolonnes"
2211
2212 \end_inset
2213
2214  ou une cellule d'une colonne comme cellule multiligne, voir la section
2215 \begin_inset space ~
2216 \end_inset
2217
2218
2219 \begin_inset CommandInset ref
2220 LatexCommand ref
2221 reference "sub:Multi-lignes"
2222
2223 \end_inset
2224
2225 .
2226 \begin_inset Newline newline
2227 \end_inset
2228
2229 L'option 
2230 \family sans
2231 Tourner
2232 \begin_inset space ~
2233 \end_inset
2234
2235 la
2236 \begin_inset space ~
2237 \end_inset
2238
2239 case
2240 \begin_inset space ~
2241 \end_inset
2242
2243 de
2244 \begin_inset space ~
2245 \end_inset
2246
2247 90°
2248 \family default
2249  fait pivoter la case courante ou une sélection de 90° dans le sens anti-horaire.
2250  L'option 
2251 \family sans
2252 Tourner
2253 \begin_inset space ~
2254 \end_inset
2255
2256 le
2257 \begin_inset space ~
2258 \end_inset
2259
2260 tableau
2261 \begin_inset space ~
2262 \end_inset
2263
2264 de
2265 \begin_inset space ~
2266 \end_inset
2267
2268 90°
2269 \family default
2270  fait pivoter tout le tableau.
2271  Ces rotations ne sont pas visibles dans LyX, mais devraient l'être dans
2272  la sortie finale.
2273  Pour plus d'information voir la section
2274 \begin_inset space ~
2275 \end_inset
2276
2277
2278 \begin_inset CommandInset ref
2279 LatexCommand ref
2280 reference "sec:Rotated-Table-Cells"
2281
2282 \end_inset
2283
2284 .
2285 \begin_inset Newline newline
2286 \end_inset
2287
2288
2289 \begin_inset Note Greyedout
2290 status open
2291
2292 \begin_layout Plain Layout
2293
2294 \series bold
2295 Note:
2296 \series default
2297  La plupart des visualiseurs DVI ne sont 
2298 \emph on
2299 pas
2300 \emph default
2301  capables d'afficher ces rotations.
2302 \end_layout
2303
2304 \end_inset
2305
2306
2307 \begin_inset Newline newline
2308 \end_inset
2309
2310 Le paramètre global d'alignement vertical dans la ligne sert pour les tableaux
2311  qui sont incorporés dans une ligne de texte :
2312 \begin_inset Newline newline
2313 \end_inset
2314
2315 Une ligne avec des tableaux alignés de différentes manières: 
2316 \begin_inset Tabular
2317 <lyxtabular version="3" rows="2" columns="2">
2318 <features rotate="0" tabularvalignment="top">
2319 <column alignment="center" valignment="top" width="0pt">
2320 <column alignment="center" valignment="top" width="0">
2321 <row>
2322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2323 \begin_inset Text
2324
2325 \begin_layout Plain Layout
2326
2327 \end_layout
2328
2329 \end_inset
2330 </cell>
2331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2332 \begin_inset Text
2333
2334 \begin_layout Plain Layout
2335 1
2336 \end_layout
2337
2338 \end_inset
2339 </cell>
2340 </row>
2341 <row>
2342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2343 \begin_inset Text
2344
2345 \begin_layout Plain Layout
2346 A
2347 \end_layout
2348
2349 \end_inset
2350 </cell>
2351 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2352 \begin_inset Text
2353
2354 \begin_layout Plain Layout
2355
2356 \end_layout
2357
2358 \end_inset
2359 </cell>
2360 </row>
2361 </lyxtabular>
2362
2363 \end_inset
2364
2365  
2366 \begin_inset Tabular
2367 <lyxtabular version="3" rows="2" columns="2">
2368 <features rotate="0" tabularvalignment="middle">
2369 <column alignment="center" valignment="top" width="0">
2370 <column alignment="center" valignment="top" width="0">
2371 <row>
2372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2373 \begin_inset Text
2374
2375 \begin_layout Plain Layout
2376
2377 \end_layout
2378
2379 \end_inset
2380 </cell>
2381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2382 \begin_inset Text
2383
2384 \begin_layout Plain Layout
2385 1
2386 \end_layout
2387
2388 \end_inset
2389 </cell>
2390 </row>
2391 <row>
2392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2393 \begin_inset Text
2394
2395 \begin_layout Plain Layout
2396 A
2397 \end_layout
2398
2399 \end_inset
2400 </cell>
2401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2402 \begin_inset Text
2403
2404 \begin_layout Plain Layout
2405
2406 \end_layout
2407
2408 \end_inset
2409 </cell>
2410 </row>
2411 </lyxtabular>
2412
2413 \end_inset
2414
2415  
2416 \begin_inset Tabular
2417 <lyxtabular version="3" rows="2" columns="2">
2418 <features rotate="0" tabularvalignment="bottom">
2419 <column alignment="center" valignment="top" width="0pt">
2420 <column alignment="center" valignment="top" width="0">
2421 <row>
2422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2423 \begin_inset Text
2424
2425 \begin_layout Plain Layout
2426
2427 \end_layout
2428
2429 \end_inset
2430 </cell>
2431 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2432 \begin_inset Text
2433
2434 \begin_layout Plain Layout
2435 1
2436 \end_layout
2437
2438 \end_inset
2439 </cell>
2440 </row>
2441 <row>
2442 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2443 \begin_inset Text
2444
2445 \begin_layout Plain Layout
2446 A
2447 \end_layout
2448
2449 \end_inset
2450 </cell>
2451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2452 \begin_inset Text
2453
2454 \begin_layout Plain Layout
2455
2456 \end_layout
2457
2458 \end_inset
2459 </cell>
2460 </row>
2461 </lyxtabular>
2462
2463 \end_inset
2464
2465
2466 \begin_inset Newline newline
2467 \end_inset
2468
2469 On peut aussi entrer des paramètres LaTeX pour obtenir des mise en formes
2470  spéciales pour le tableau, voir les sections
2471 \begin_inset space ~
2472 \end_inset
2473
2474
2475 \begin_inset CommandInset ref
2476 LatexCommand ref
2477 reference "sub:Calculs-multicolonnes"
2478
2479 \end_inset
2480
2481  et 
2482 \begin_inset CommandInset ref
2483 LatexCommand ref
2484 reference "sec:Tableaux-Colorés"
2485
2486 \end_inset
2487
2488 .
2489 \end_layout
2490
2491 \begin_layout Description
2492
2493 \family sans
2494 Bordures
2495 \family default
2496  Cet onglet vous permet d'ajouter ou de supprimer les bordures pour la ligne
2497  ou la colonne courante.
2498  
2499 \begin_inset Newline newline
2500 \end_inset
2501
2502 En utilisant le style 
2503 \family sans
2504 Formel
2505 \family default
2506  à la place du style par 
2507 \family sans
2508 Défaut
2509 \family default
2510 , on va convertir le tableau en tableau formel comme on le décrit dans la
2511  section
2512 \begin_inset space ~
2513 \end_inset
2514
2515
2516 \begin_inset CommandInset ref
2517 LatexCommand ref
2518 reference "sec:Tableaux-Formels"
2519
2520 \end_inset
2521
2522 .
2523 \begin_inset Newline newline
2524 \end_inset
2525
2526 Vous pouvez aussi utiliser cet onglet pour ajouter un espacement vertical
2527  dans les lignes du tableau comme c'est décrit dans la section
2528 \begin_inset space ~
2529 \end_inset
2530
2531
2532 \begin_inset CommandInset ref
2533 LatexCommand ref
2534 reference "sub:Espacement-lignes"
2535
2536 \end_inset
2537
2538 .
2539 \end_layout
2540
2541 \begin_layout Description
2542 Tableau
2543 \begin_inset space ~
2544 \end_inset
2545
2546 long Cet onglet est utilisé pour transformer un tableau en ce que l'on nomme
2547  un 
2548 \begin_inset Quotes eld
2549 \end_inset
2550
2551
2552 \emph on
2553 tableau long
2554 \emph default
2555
2556 \begin_inset Quotes erd
2557 \end_inset
2558
2559  qui peut continuer sur plusieurs pages.
2560  Les sections
2561 \begin_inset space ~
2562 \end_inset
2563
2564
2565 \begin_inset CommandInset ref
2566 LatexCommand ref
2567 reference "sec:Tableaux-longs"
2568
2569 \end_inset
2570
2571  et 
2572 \begin_inset CommandInset ref
2573 LatexCommand ref
2574 reference "sec:Questions-sur-tableaux-longs"
2575
2576 \end_inset
2577
2578  décrivent ces tableaux longs plus en détail.
2579 \end_layout
2580
2581 \begin_layout Section
2582 La barre d'outils tableau
2583 \begin_inset Index idx
2584 status collapsed
2585
2586 \begin_layout Plain Layout
2587 Tableau ! Barre d'outils
2588 \end_layout
2589
2590 \end_inset
2591
2592
2593 \end_layout
2594
2595 \begin_layout Standard
2596 La barre d'outils tableau est une alternative à la fenêtre de dialogue qui
2597  permet de modifier plus rapidement les tableaux.
2598  Elle apparaît normalement en bas de la fenêtre principale de LyX quand
2599  le curseur se trouve à l'intérieur d'un tableau.
2600  Vous pouvez aussi choisir de la faire apparaître de façon permanente grâce
2601  au menu 
2602 \family sans
2603 Visualiser\SpecialChar \menuseparator
2604 Barres
2605 \begin_inset space ~
2606 \end_inset
2607
2608 d'outils\SpecialChar \menuseparator
2609 Tableau
2610 \family default
2611 .
2612 \end_layout
2613
2614 \begin_layout Standard
2615 La barre d'outils contient les icônes suivantes :
2616 \end_layout
2617
2618 \begin_layout Labeling
2619 \labelwidthstring 00.00.0000
2620 \begin_inset Info
2621 type  "icon"
2622 arg   "inset-modify tabular append-row"
2623 \end_inset
2624
2625  ajoute une ligne sous la cellule ou la sélection courante
2626 \end_layout
2627
2628 \begin_layout Labeling
2629 \labelwidthstring 00.00.0000
2630 \begin_inset Info
2631 type  "icon"
2632 arg   "inset-modify tabular append-column"
2633 \end_inset
2634
2635  ajoute une colonne à la droite de la cellule ou de la sélection courante
2636 \end_layout
2637
2638 \begin_layout Labeling
2639 \labelwidthstring 00.00.0000
2640 \begin_inset Info
2641 type  "icon"
2642 arg   "inset-modify tabular delete-row"
2643 \end_inset
2644
2645  supprime la ligne ou la sélection courante
2646 \end_layout
2647
2648 \begin_layout Labeling
2649 \labelwidthstring 00.00.0000
2650 \begin_inset Info
2651 type  "icon"
2652 arg   "inset-modify tabular delete-column"
2653 \end_inset
2654
2655  supprime la colonne ou la sélection courante
2656 \end_layout
2657
2658 \begin_layout Labeling
2659 \labelwidthstring 00.00.0000
2660 \begin_inset Info
2661 type  "icon"
2662 arg   "inset-modify tabular toggle-line-top"
2663 \end_inset
2664
2665  ajoute une ligne en haut de la cellule, de la ligne ou de la sélection
2666  courante
2667 \end_layout
2668
2669 \begin_layout Labeling
2670 \labelwidthstring 00.00.0000
2671 \begin_inset Info
2672 type  "icon"
2673 arg   "inset-modify tabular toggle-line-bottom"
2674 \end_inset
2675
2676  ajoute une ligne en bas de la cellule, de la ligne ou de la sélection courante
2677 \end_layout
2678
2679 \begin_layout Labeling
2680 \labelwidthstring 00.00.0000
2681 \begin_inset Info
2682 type  "icon"
2683 arg   "inset-modify tabular toggle-line-left"
2684 \end_inset
2685
2686  ajoute une ligne sur le côté gauche de la cellule, de la ligne 
2687 \begin_inset Note Note
2688 status collapsed
2689
2690 \begin_layout Plain Layout
2691 ou colonne ?
2692 \end_layout
2693
2694 \end_inset
2695
2696  ou de la sélection courante
2697 \end_layout
2698
2699 \begin_layout Labeling
2700 \labelwidthstring 00.00.0000
2701 \begin_inset Info
2702 type  "icon"
2703 arg   "inset-modify tabular toggle-line-right"
2704 \end_inset
2705
2706  ajoute une ligne sur le côté droit de la cellule, de la ligne 
2707 \begin_inset Note Note
2708 status collapsed
2709
2710 \begin_layout Plain Layout
2711 ou colonne ?
2712 \end_layout
2713
2714 \end_inset
2715
2716  ou de la sélection courante
2717 \end_layout
2718
2719 \begin_layout Labeling
2720 \labelwidthstring 00.00.0000
2721 \begin_inset Info
2722 type  "icon"
2723 arg   "inset-modify tabular set-all-lines"
2724 \end_inset
2725
2726  ajoute des lignes autour de la cellule ou de la sélection de cellules courante
2727  - si la cellule courante n'est pas multi-colonnes cela affecte aussi la
2728  colonne et la ligne courante
2729 \end_layout
2730
2731 \begin_layout Labeling
2732 \labelwidthstring 00.00.0000
2733 \begin_inset Info
2734 type  "icon"
2735 arg   "inset-modify tabular unset-all-lines"
2736 \end_inset
2737
2738  supprime toutes les lignes autour de la cellule ou de la sélection de cellules
2739  courante - si la cellule courante n'est pas multi-colonnes cela affecte
2740  aussi la colonne et la ligne courante
2741 \end_layout
2742
2743 \begin_layout Labeling
2744 \labelwidthstring 00.00.0000
2745 \begin_inset Info
2746 type  "icon"
2747 arg   "inset-modify tabular m-align-left"
2748 \end_inset
2749
2750  aligne à gauche le contenu de la cellule ou de la colonne courante
2751 \end_layout
2752
2753 \begin_layout Labeling
2754 \labelwidthstring 00.00.0000
2755 \begin_inset Info
2756 type  "icon"
2757 arg   "inset-modify tabular m-align-center"
2758 \end_inset
2759
2760  centre horizontalement le contenu de la cellule ou de la colonne courante
2761 \end_layout
2762
2763 \begin_layout Labeling
2764 \labelwidthstring 00.00.0000
2765 \begin_inset Info
2766 type  "icon"
2767 arg   "inset-modify tabular m-align-right"
2768 \end_inset
2769
2770  aligne à droite le contenu de la cellule ou de la colonne courante
2771 \end_layout
2772
2773 \begin_layout Labeling
2774 \labelwidthstring 00.00.0000
2775 \begin_inset Info
2776 type  "icon"
2777 arg   "inset-modify tabular align-decimal"
2778 \end_inset
2779
2780  aligne le contenu de la colonne courante sur un caractère
2781 \end_layout
2782
2783 \begin_layout Labeling
2784 \labelwidthstring 00.00.0000
2785 \begin_inset Info
2786 type  "icon"
2787 arg   "inset-modify tabular m-valign-top"
2788 \end_inset
2789
2790  aligne le contenu de la cellule courante verticalement vers le haut
2791 \end_layout
2792
2793 \begin_layout Labeling
2794 \labelwidthstring 00.00.0000
2795 \begin_inset Info
2796 type  "icon"
2797 arg   "inset-modify tabular m-valign-middle"
2798 \end_inset
2799
2800  centre verticalement le contenu de la cellule courante
2801 \end_layout
2802
2803 \begin_layout Labeling
2804 \labelwidthstring 00.00.0000
2805 \begin_inset Info
2806 type  "icon"
2807 arg   "inset-modify tabular m-valign-bottom"
2808 \end_inset
2809
2810  aligne le contenu de la cellule courante verticalement vers le bas
2811 \end_layout
2812
2813 \begin_layout Labeling
2814 \labelwidthstring 00.00.0000
2815 \begin_inset Info
2816 type  "icon"
2817 arg   "inset-modify tabular set-rotate-cell"
2818 \end_inset
2819
2820  fait pivoter la cellule ou la sélection courante de 90° dans le sens anti-horai
2821 re
2822 \end_layout
2823
2824 \begin_layout Labeling
2825 \labelwidthstring 00.00.0000
2826 \begin_inset Info
2827 type  "icon"
2828 arg   "inset-modify tabular set-rotate-tabular"
2829 \end_inset
2830
2831  fait pivoter tout le tableau de 90° dans le sens anti-horaire
2832 \end_layout
2833
2834 \begin_layout Labeling
2835 \labelwidthstring 00.00.0000
2836 \begin_inset Info
2837 type  "icon"
2838 arg   "inset-modify tabular multicolumn"
2839 \end_inset
2840
2841  transforme en multi-colonne la cellule ou la sélection courante
2842 \end_layout
2843
2844 \begin_layout Labeling
2845 \labelwidthstring 00.00.0000
2846 \begin_inset Info
2847 type  "icon"
2848 arg   "inset-modify tabular multirow"
2849 \end_inset
2850
2851  transforme en multi-ligne la cellule ou la sélection courante
2852 \end_layout
2853
2854 \begin_layout Standard
2855 \begin_inset Note Greyedout
2856 status open
2857
2858 \begin_layout Plain Layout
2859
2860 \series bold
2861 Note :
2862 \series default
2863  Pour la sortie, l'alignement vertical de la première cellule d'une ligne
2864  est utilisé pour toutes les autres cellules de la ligne.
2865 \end_layout
2866
2867 \end_inset
2868
2869
2870 \end_layout
2871
2872 \begin_layout Section
2873 Le menu Édition tableau
2874 \begin_inset Index idx
2875 status collapsed
2876
2877 \begin_layout Plain Layout
2878 Tableau ! Menu Édition
2879 \end_layout
2880
2881 \end_inset
2882
2883
2884 \end_layout
2885
2886 \begin_layout Standard
2887 En plus de la fenêtre de dialogue et de la barre d'outils tableau, le menu
2888  
2889 \family sans
2890 Édition\SpecialChar \menuseparator
2891 Tableau
2892 \family default
2893  vous permet d'ajouter ou de supprimer les lignes de bordure de la colonne
2894  ou de la ligne courante et aussi de transformer la sélection courante en
2895  multi-colonne.
2896  Ce menu n'est accessible que si le curseur se trouve dans un tableau.
2897 \end_layout
2898
2899 \begin_layout Section
2900 Flottant de tableau
2901 \begin_inset CommandInset label
2902 LatexCommand label
2903 name "sec:Table-Floats"
2904
2905 \end_inset
2906
2907
2908 \begin_inset Index idx
2909 status collapsed
2910
2911 \begin_layout Plain Layout
2912 Flottants ! Tableaux
2913 \end_layout
2914
2915 \end_inset
2916
2917
2918 \begin_inset Index idx
2919 status collapsed
2920
2921 \begin_layout Plain Layout
2922 Tableau ! Flottants
2923 \end_layout
2924
2925 \end_inset
2926
2927
2928 \end_layout
2929
2930 \begin_layout Standard
2931 Pour des explications générales sur les flottants, jetez un œil à la section
2932 \begin_inset space ~
2933 \end_inset
2934
2935
2936 \begin_inset CommandInset ref
2937 LatexCommand ref
2938 reference "sec:Flottants-Introduction"
2939
2940 \end_inset
2941
2942 .
2943 \end_layout
2944
2945 \begin_layout Standard
2946 \begin_inset Float table
2947 placement h
2948 wide false
2949 sideways false
2950 status open
2951
2952 \begin_layout Plain Layout
2953 \begin_inset Caption Standard
2954
2955 \begin_layout Plain Layout
2956 \begin_inset CommandInset label
2957 LatexCommand label
2958 name "tab:Flottant-de-tableau"
2959
2960 \end_inset
2961
2962 Un flottant de tableau.
2963 \end_layout
2964
2965 \end_inset
2966
2967
2968 \end_layout
2969
2970 \begin_layout Plain Layout
2971 \align center
2972 \begin_inset Tabular
2973 <lyxtabular version="3" rows="3" columns="3">
2974 <features rotate="0" tabularvalignment="middle">
2975 <column alignment="center" valignment="top" width="0pt">
2976 <column alignment="center" valignment="top" width="0pt">
2977 <column alignment="center" valignment="top" width="0pt">
2978 <row>
2979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2980 \begin_inset Text
2981
2982 \begin_layout Plain Layout
2983 1
2984 \end_layout
2985
2986 \end_inset
2987 </cell>
2988 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2989 \begin_inset Text
2990
2991 \begin_layout Plain Layout
2992 2
2993 \end_layout
2994
2995 \end_inset
2996 </cell>
2997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2998 \begin_inset Text
2999
3000 \begin_layout Plain Layout
3001 3
3002 \end_layout
3003
3004 \end_inset
3005 </cell>
3006 </row>
3007 <row>
3008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3009 \begin_inset Text
3010
3011 \begin_layout Plain Layout
3012 Jules
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3018 \begin_inset Text
3019
3020 \begin_layout Plain Layout
3021 Marie
3022 \end_layout
3023
3024 \end_inset
3025 </cell>
3026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3027 \begin_inset Text
3028
3029 \begin_layout Plain Layout
3030 Jean
3031 \end_layout
3032
3033 \end_inset
3034 </cell>
3035 </row>
3036 <row>
3037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3038 \begin_inset Text
3039
3040 \begin_layout Plain Layout
3041 \begin_inset Formula $\int x^{2}dx$
3042 \end_inset
3043
3044
3045 \end_layout
3046
3047 \end_inset
3048 </cell>
3049 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3050 \begin_inset Text
3051
3052 \begin_layout Plain Layout
3053 \begin_inset Formula $\left[\begin{array}{cc}
3054 a & b\\
3055 c & d
3056 \end{array}\right]$
3057 \end_inset
3058
3059
3060 \end_layout
3061
3062 \end_inset
3063 </cell>
3064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3065 \begin_inset Text
3066
3067 \begin_layout Plain Layout
3068 \begin_inset Formula $1+1=2$
3069 \end_inset
3070
3071
3072 \end_layout
3073
3074 \end_inset
3075 </cell>
3076 </row>
3077 </lyxtabular>
3078
3079 \end_inset
3080
3081
3082 \end_layout
3083
3084 \end_inset
3085
3086
3087 \end_layout
3088
3089 \begin_layout Standard
3090 Les flottants de tableau sont insérés en utilisant le menu 
3091 \family sans
3092 Insertion\SpecialChar \menuseparator
3093 Flottant\SpecialChar \menuseparator
3094 Tableau
3095 \family default
3096  ou le bouton 
3097 \begin_inset Info
3098 type  "icon"
3099 arg   "float-insert table"
3100 \end_inset
3101
3102  de la barre d'outils.
3103 \end_layout
3104
3105 \begin_layout Standard
3106 Le flottant apparaît à l'écran comme une boîte repliable avec une légende
3107  qui a comme étiquette 
3108 \begin_inset Quotes eld
3109 \end_inset
3110
3111 Tableau
3112 \begin_inset space ~
3113 \end_inset
3114
3115 #:
3116 \begin_inset Quotes erd
3117 \end_inset
3118
3119  (où # est le numéro du tableau).
3120  Vous pouvez insérer le tableau au dessus ou en dessous de la légende.
3121 \end_layout
3122
3123 \begin_layout Standard
3124 Le tableau
3125 \begin_inset space ~
3126 \end_inset
3127
3128
3129 \begin_inset CommandInset ref
3130 LatexCommand ref
3131 reference "tab:Flottant-de-tableau"
3132
3133 \end_inset
3134
3135  est un exemple de tableau dans un flottant de tableau.
3136 \end_layout
3137
3138 \begin_layout Standard
3139 On met habituellement la légende au dessus des tableaux, mais cette règle
3140  n'est malheureusement pas respectée par certaines classes standard de LaTeX.
3141  Cela signifie que si vous utilisez un document appartenant aux classes
3142  
3143 \family sans
3144 article
3145 \family default
3146
3147 \family sans
3148 book
3149 \family default
3150
3151 \family sans
3152 letter
3153 \family default
3154 , ou
3155 \family sans
3156  report
3157 \family default
3158  il n'y aura pas d'espace entre la légende et le tableau.
3159  Pour insérer l'espace nécessaire vous devez ajouter l'option suivante à
3160  la commande de chargement du paquetage LaTeX 
3161 \series bold
3162 caption
3163 \series default
3164
3165 \begin_inset Index idx
3166 status collapsed
3167
3168 \begin_layout Plain Layout
3169 Paquetages LaTeX ! caption
3170 \end_layout
3171
3172 \end_inset
3173
3174  dans le préambule de votre document.
3175 \begin_inset Foot
3176 status collapsed
3177
3178 \begin_layout Plain Layout
3179 Pour plus d'information voyez la section
3180 \begin_inset space ~
3181 \end_inset
3182
3183
3184 \begin_inset CommandInset ref
3185 LatexCommand ref
3186 reference "sec:Placement-légende"
3187
3188 \end_inset
3189
3190 .
3191 \end_layout
3192
3193 \end_inset
3194
3195 :
3196 \end_layout
3197
3198 \begin_layout Standard
3199
3200 \series bold
3201 tableposition=top
3202 \end_layout
3203
3204 \begin_layout Standard
3205 Le paquetage 
3206 \series bold
3207 caption
3208 \series default
3209 , qui est décrit dans la section
3210 \begin_inset space ~
3211 \end_inset
3212
3213
3214 \begin_inset CommandInset ref
3215 LatexCommand ref
3216 reference "sec:Formatage-légende"
3217
3218 \end_inset
3219
3220 , est utilisé pour ajuster le format des légendes.
3221 \end_layout
3222
3223 \begin_layout Standard
3224 Dans le texte, on fait référence à un tableau
3225 \begin_inset Index idx
3226 status collapsed
3227
3228 \begin_layout Plain Layout
3229 References@Références ! à des Tableaux
3230 \end_layout
3231
3232 \end_inset
3233
3234  en faisant référence à sa légende.
3235  On insère donc une étiquette dans la légende en utilisant le menu 
3236 \family sans
3237 Insertion
3238 \family default
3239 \SpecialChar \menuseparator
3240
3241 \family sans
3242 Étiquette
3243 \family default
3244  ou le bouton 
3245 \begin_inset Info
3246 type  "icon"
3247 arg   "label-insert"
3248 \end_inset
3249
3250  de la barre d'outils.
3251  On peut alors faire référence à cette étiquette en utilisant le menu 
3252 \family sans
3253 Insertion\SpecialChar \menuseparator
3254 Référence
3255 \begin_inset space ~
3256 \end_inset
3257
3258 croisée
3259 \family default
3260  ou le bouton 
3261 \begin_inset Info
3262 type  "icon"
3263 arg   "dialog-show-new-inset ref"
3264 \end_inset
3265
3266  de la barre d'outils.
3267 \begin_inset Newline newline
3268 \end_inset
3269
3270 Les références croisées sont expliquées en détail dans la section
3271 \begin_inset space ~
3272 \end_inset
3273
3274
3275 \begin_inset CommandInset ref
3276 LatexCommand ref
3277 reference "sec:Referencer-les-Flottants"
3278
3279 \end_inset
3280
3281 .
3282 \end_layout
3283
3284 \begin_layout Section
3285 Tableaux Longs
3286 \begin_inset CommandInset label
3287 LatexCommand label
3288 name "sec:Tableaux-longs"
3289
3290 \end_inset
3291
3292
3293 \begin_inset Index idx
3294 status collapsed
3295
3296 \begin_layout Plain Layout
3297 Tableaux longs
3298 \end_layout
3299
3300 \end_inset
3301
3302
3303 \begin_inset Index idx
3304 status collapsed
3305
3306 \begin_layout Plain Layout
3307 Tableau ! Tableaux longs
3308 \end_layout
3309
3310 \end_inset
3311
3312
3313 \end_layout
3314
3315 \begin_layout Standard
3316 Si un tableau est trop haut pour tenir sur un page, vous pouvez utiliser
3317  l'option 
3318 \family sans
3319 Utiliser
3320 \begin_inset space ~
3321 \end_inset
3322
3323 les
3324 \begin_inset space ~
3325 \end_inset
3326
3327 tableaux
3328 \begin_inset space ~
3329 \end_inset
3330
3331 longs
3332 \family default
3333  de l'onglet 
3334 \family sans
3335 Tableau
3336 \begin_inset space ~
3337 \end_inset
3338
3339 long
3340 \family default
3341  de la fenêtre 
3342 \family sans
3343 Paramètres
3344 \begin_inset space ~
3345 \end_inset
3346
3347 du
3348 \begin_inset space ~
3349 \end_inset
3350
3351 tableau
3352 \family default
3353  pour le répartir automatiquement sur plusieurs pages.
3354  En cochant cette option, vous activez les options suivantes:
3355 \end_layout
3356
3357 \begin_layout Description
3358 En-tête: La ligne courante et toutes celles situées au-dessus et qui n'ont
3359  pas d'attributs particuliers, sont définies comme faisant partie des lignes
3360  d'en-tête utilisées pour toutes les pages du tableau long; sauf pour la
3361  première page, si 
3362 \family sans
3363 Premier
3364 \begin_inset space ~
3365 \end_inset
3366
3367 en-tête
3368 \family default
3369  est défini.
3370  Ces lignes forment l'en-tête principal.
3371 \end_layout
3372
3373 \begin_layout Description
3374 Premier
3375 \begin_inset space ~
3376 \end_inset
3377
3378 En-tête: La ligne courante et toutes celles situées au-dessus et qui n'ont
3379  pas d'attributs particuliers, sont définies comme faisant partie des lignes
3380  d'en-tête utilisées pour la première page du tableau long.
3381 \end_layout
3382
3383 \begin_layout Description
3384 Pied: La ligne courante et toutes celles situées au-dessous et qui n'ont
3385  pas d'attributs particuliers, sont définies comme faisant partie des lignes
3386  constituant les pieds de toutes les pages du tableau long; sauf de la dernière
3387  page si 
3388 \family sans
3389 Dernier
3390 \begin_inset space ~
3391 \end_inset
3392
3393 pied
3394 \family default
3395  est défini.
3396 \end_layout
3397
3398 \begin_layout Description
3399 Dernier
3400 \begin_inset space ~
3401 \end_inset
3402
3403 pied: La ligne courante et toutes celles situées au-dessous et qui n'ont
3404  pas d'attributs particuliers, sont définies comme faisant partie des lignes
3405  constituant le pied de la dernière page du tableau long.
3406 \end_layout
3407
3408 \begin_layout Description
3409 Légende La ligne courante contient la légende du tableau.
3410  La première ligne est transformée en une colonne unique et une légende
3411  est insérée.
3412  Vous trouverez d'autres explications sur les légendes pour les tableaux
3413  longs dans la section
3414 \begin_inset space ~
3415 \end_inset
3416
3417
3418 \begin_inset CommandInset ref
3419 LatexCommand ref
3420 reference "sub:Tableaux-longs-légende"
3421
3422 \end_inset
3423
3424 .
3425 \end_layout
3426
3427 \begin_layout Standard
3428 Vous pouvez aussi préciser une ligne où la table devra être coupée.
3429  Voyez le tableau long qui suit pour voir comment ça marche :
3430 \end_layout
3431
3432 \begin_layout Standard
3433 \align center
3434 \begin_inset Tabular
3435 <lyxtabular version="3" rows="69" columns="3">
3436 <features rotate="0" islongtable="true" longtabularalignment="center">
3437 <column alignment="left" valignment="top" width="0cm">
3438 <column alignment="left" valignment="top" width="0pt">
3439 <column alignment="center" valignment="top" width="0pt">
3440 <row endfirsthead="true">
3441 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3442 \begin_inset Text
3443
3444 \begin_layout Plain Layout
3445
3446 \series bold
3447 Exemple d'annuaire téléphonique (ignorez les noms)
3448 \end_layout
3449
3450 \end_inset
3451 </cell>
3452 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3453 \begin_inset Text
3454
3455 \begin_layout Plain Layout
3456
3457 \end_layout
3458
3459 \end_inset
3460 </cell>
3461 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3462 \begin_inset Text
3463
3464 \begin_layout Plain Layout
3465
3466 \end_layout
3467
3468 \end_inset
3469 </cell>
3470 </row>
3471 <row endfirsthead="true">
3472 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3473 \begin_inset Text
3474
3475 \begin_layout Plain Layout
3476
3477 \series bold
3478 NOM
3479 \end_layout
3480
3481 \end_inset
3482 </cell>
3483 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3484 \begin_inset Text
3485
3486 \begin_layout Plain Layout
3487
3488 \end_layout
3489
3490 \end_inset
3491 </cell>
3492 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3493 \begin_inset Text
3494
3495 \begin_layout Plain Layout
3496
3497 \series bold
3498 TEL.
3499 \end_layout
3500
3501 \end_inset
3502 </cell>
3503 </row>
3504 <row endhead="true">
3505 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3506 \begin_inset Text
3507
3508 \begin_layout Plain Layout
3509
3510 \series bold
3511 Exemple d'annuaire téléphonique
3512 \end_layout
3513
3514 \end_inset
3515 </cell>
3516 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3517 \begin_inset Text
3518
3519 \begin_layout Plain Layout
3520
3521 \end_layout
3522
3523 \end_inset
3524 </cell>
3525 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3526 \begin_inset Text
3527
3528 \begin_layout Plain Layout
3529
3530 \end_layout
3531
3532 \end_inset
3533 </cell>
3534 </row>
3535 <row endhead="true">
3536 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3537 \begin_inset Text
3538
3539 \begin_layout Plain Layout
3540
3541 \series bold
3542 NOM
3543 \end_layout
3544
3545 \end_inset
3546 </cell>
3547 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3548 \begin_inset Text
3549
3550 \begin_layout Plain Layout
3551
3552 \end_layout
3553
3554 \end_inset
3555 </cell>
3556 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3557 \begin_inset Text
3558
3559 \begin_layout Plain Layout
3560
3561 \series bold
3562 TEL.
3563 \end_layout
3564
3565 \end_inset
3566 </cell>
3567 </row>
3568 <row endfoot="true">
3569 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
3570 \begin_inset Text
3571
3572 \begin_layout Plain Layout
3573  continue page suivante
3574 \end_layout
3575
3576 \end_inset
3577 </cell>
3578 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3579 \begin_inset Text
3580
3581 \begin_layout Plain Layout
3582
3583 \end_layout
3584
3585 \end_inset
3586 </cell>
3587 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Plain Layout
3591
3592 \end_layout
3593
3594 \end_inset
3595 </cell>
3596 </row>
3597 <row>
3598 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3599 \begin_inset Text
3600
3601 \begin_layout Plain Layout
3602
3603 \series bold
3604 Annovi
3605 \end_layout
3606
3607 \end_inset
3608 </cell>
3609 <cell alignment="center" valignment="top" usebox="none">
3610 \begin_inset Text
3611
3612 \begin_layout Plain Layout
3613 Silvia
3614 \end_layout
3615
3616 \end_inset
3617 </cell>
3618 <cell alignment="right" valignment="top" leftline="true" rightline="true" usebox="none">
3619 \begin_inset Text
3620
3621 \begin_layout Plain Layout
3622 111
3623 \end_layout
3624
3625 \end_inset
3626 </cell>
3627 </row>
3628 <row>
3629 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3630 \begin_inset Text
3631
3632 \begin_layout Plain Layout
3633
3634 \series bold
3635 Bertoli
3636 \end_layout
3637
3638 \end_inset
3639 </cell>
3640 <cell alignment="center" valignment="top" usebox="none">
3641 \begin_inset Text
3642
3643 \begin_layout Plain Layout
3644 Stefano
3645 \end_layout
3646
3647 \end_inset
3648 </cell>
3649 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3650 \begin_inset Text
3651
3652 \begin_layout Plain Layout
3653 111
3654 \end_layout
3655
3656 \end_inset
3657 </cell>
3658 </row>
3659 <row>
3660 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3661 \begin_inset Text
3662
3663 \begin_layout Plain Layout
3664
3665 \series bold
3666 Bozzi
3667 \end_layout
3668
3669 \end_inset
3670 </cell>
3671 <cell alignment="center" valignment="top" usebox="none">
3672 \begin_inset Text
3673
3674 \begin_layout Plain Layout
3675 Walter
3676 \end_layout
3677
3678 \end_inset
3679 </cell>
3680 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3681 \begin_inset Text
3682
3683 \begin_layout Plain Layout
3684 111
3685 \end_layout
3686
3687 \end_inset
3688 </cell>
3689 </row>
3690 <row>
3691 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3692 \begin_inset Text
3693
3694 \begin_layout Plain Layout
3695
3696 \series bold
3697 Cachia
3698 \end_layout
3699
3700 \end_inset
3701 </cell>
3702 <cell alignment="center" valignment="top" usebox="none">
3703 \begin_inset Text
3704
3705 \begin_layout Plain Layout
3706 Maria
3707 \end_layout
3708
3709 \end_inset
3710 </cell>
3711 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3712 \begin_inset Text
3713
3714 \begin_layout Plain Layout
3715 111
3716 \end_layout
3717
3718 \end_inset
3719 </cell>
3720 </row>
3721 <row>
3722 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3723 \begin_inset Text
3724
3725 \begin_layout Plain Layout
3726
3727 \series bold
3728 Cachia
3729 \end_layout
3730
3731 \end_inset
3732 </cell>
3733 <cell alignment="center" valignment="top" usebox="none">
3734 \begin_inset Text
3735
3736 \begin_layout Plain Layout
3737 Maurizio
3738 \end_layout
3739
3740 \end_inset
3741 </cell>
3742 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3743 \begin_inset Text
3744
3745 \begin_layout Plain Layout
3746 111
3747 \end_layout
3748
3749 \end_inset
3750 </cell>
3751 </row>
3752 <row>
3753 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3754 \begin_inset Text
3755
3756 \begin_layout Plain Layout
3757
3758 \series bold
3759 Cinquemani
3760 \end_layout
3761
3762 \end_inset
3763 </cell>
3764 <cell alignment="center" valignment="top" usebox="none">
3765 \begin_inset Text
3766
3767 \begin_layout Plain Layout
3768 Giusi
3769 \end_layout
3770
3771 \end_inset
3772 </cell>
3773 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3774 \begin_inset Text
3775
3776 \begin_layout Plain Layout
3777 111
3778 \end_layout
3779
3780 \end_inset
3781 </cell>
3782 </row>
3783 <row>
3784 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Plain Layout
3788
3789 \series bold
3790 Colin
3791 \end_layout
3792
3793 \end_inset
3794 </cell>
3795 <cell alignment="center" valignment="top" usebox="none">
3796 \begin_inset Text
3797
3798 \begin_layout Plain Layout
3799 Bernard
3800 \end_layout
3801
3802 \end_inset
3803 </cell>
3804 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3805 \begin_inset Text
3806
3807 \begin_layout Plain Layout
3808 111
3809 \end_layout
3810
3811 \end_inset
3812 </cell>
3813 </row>
3814 <row>
3815 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3816 \begin_inset Text
3817
3818 \begin_layout Plain Layout
3819
3820 \series bold
3821 Concli
3822 \end_layout
3823
3824 \end_inset
3825 </cell>
3826 <cell alignment="center" valignment="top" usebox="none">
3827 \begin_inset Text
3828
3829 \begin_layout Plain Layout
3830 Gianfranco
3831 \end_layout
3832
3833 \end_inset
3834 </cell>
3835 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3836 \begin_inset Text
3837
3838 \begin_layout Plain Layout
3839 111
3840 \end_layout
3841
3842 \end_inset
3843 </cell>
3844 </row>
3845 <row>
3846 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3847 \begin_inset Text
3848
3849 \begin_layout Plain Layout
3850
3851 \series bold
3852 Dal Bosco
3853 \end_layout
3854
3855 \end_inset
3856 </cell>
3857 <cell alignment="center" valignment="top" usebox="none">
3858 \begin_inset Text
3859
3860 \begin_layout Plain Layout
3861 Carolina
3862 \end_layout
3863
3864 \end_inset
3865 </cell>
3866 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Plain Layout
3870 111
3871 \end_layout
3872
3873 \end_inset
3874 </cell>
3875 </row>
3876 <row>
3877 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3878 \begin_inset Text
3879
3880 \begin_layout Plain Layout
3881
3882 \series bold
3883 Dalpiaz
3884 \end_layout
3885
3886 \end_inset
3887 </cell>
3888 <cell alignment="center" valignment="top" usebox="none">
3889 \begin_inset Text
3890
3891 \begin_layout Plain Layout
3892 Annamaria
3893 \end_layout
3894
3895 \end_inset
3896 </cell>
3897 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3898 \begin_inset Text
3899
3900 \begin_layout Plain Layout
3901 111
3902 \end_layout
3903
3904 \end_inset
3905 </cell>
3906 </row>
3907 <row>
3908 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3909 \begin_inset Text
3910
3911 \begin_layout Plain Layout
3912
3913 \series bold
3914 Feliciello
3915 \end_layout
3916
3917 \end_inset
3918 </cell>
3919 <cell alignment="center" valignment="top" usebox="none">
3920 \begin_inset Text
3921
3922 \begin_layout Plain Layout
3923 Domenico
3924 \end_layout
3925
3926 \end_inset
3927 </cell>
3928 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3929 \begin_inset Text
3930
3931 \begin_layout Plain Layout
3932 111
3933 \end_layout
3934
3935 \end_inset
3936 </cell>
3937 </row>
3938 <row>
3939 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3940 \begin_inset Text
3941
3942 \begin_layout Plain Layout
3943
3944 \series bold
3945 Focarelli
3946 \end_layout
3947
3948 \end_inset
3949 </cell>
3950 <cell alignment="center" valignment="top" usebox="none">
3951 \begin_inset Text
3952
3953 \begin_layout Plain Layout
3954 Paola
3955 \end_layout
3956
3957 \end_inset
3958 </cell>
3959 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3960 \begin_inset Text
3961
3962 \begin_layout Plain Layout
3963 111
3964 \end_layout
3965
3966 \end_inset
3967 </cell>
3968 </row>
3969 <row>
3970 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3971 \begin_inset Text
3972
3973 \begin_layout Plain Layout
3974
3975 \series bold
3976 Galletti
3977 \end_layout
3978
3979 \end_inset
3980 </cell>
3981 <cell alignment="center" valignment="top" usebox="none">
3982 \begin_inset Text
3983
3984 \begin_layout Plain Layout
3985 Oreste
3986 \end_layout
3987
3988 \end_inset
3989 </cell>
3990 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3991 \begin_inset Text
3992
3993 \begin_layout Plain Layout
3994 111
3995 \end_layout
3996
3997 \end_inset
3998 </cell>
3999 </row>
4000 <row>
4001 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4002 \begin_inset Text
4003
4004 \begin_layout Plain Layout
4005
4006 \series bold
4007 Gasparini
4008 \end_layout
4009
4010 \end_inset
4011 </cell>
4012 <cell alignment="center" valignment="top" usebox="none">
4013 \begin_inset Text
4014
4015 \begin_layout Plain Layout
4016 Franca
4017 \end_layout
4018
4019 \end_inset
4020 </cell>
4021 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4022 \begin_inset Text
4023
4024 \begin_layout Plain Layout
4025 111
4026 \end_layout
4027
4028 \end_inset
4029 </cell>
4030 </row>
4031 <row>
4032 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4033 \begin_inset Text
4034
4035 \begin_layout Plain Layout
4036
4037 \series bold
4038 Rizzardi
4039 \end_layout
4040
4041 \end_inset
4042 </cell>
4043 <cell alignment="center" valignment="top" usebox="none">
4044 \begin_inset Text
4045
4046 \begin_layout Plain Layout
4047 Paola
4048 \end_layout
4049
4050 \end_inset
4051 </cell>
4052 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4053 \begin_inset Text
4054
4055 \begin_layout Plain Layout
4056 111
4057 \end_layout
4058
4059 \end_inset
4060 </cell>
4061 </row>
4062 <row>
4063 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4064 \begin_inset Text
4065
4066 \begin_layout Plain Layout
4067
4068 \series bold
4069 Lassini
4070 \end_layout
4071
4072 \end_inset
4073 </cell>
4074 <cell alignment="center" valignment="top" usebox="none">
4075 \begin_inset Text
4076
4077 \begin_layout Plain Layout
4078 Giancarlo
4079 \end_layout
4080
4081 \end_inset
4082 </cell>
4083 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4084 \begin_inset Text
4085
4086 \begin_layout Plain Layout
4087 111
4088 \end_layout
4089
4090 \end_inset
4091 </cell>
4092 </row>
4093 <row>
4094 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4095 \begin_inset Text
4096
4097 \begin_layout Plain Layout
4098
4099 \series bold
4100 Malfatti
4101 \end_layout
4102
4103 \end_inset
4104 </cell>
4105 <cell alignment="center" valignment="top" usebox="none">
4106 \begin_inset Text
4107
4108 \begin_layout Plain Layout
4109 Luciano
4110 \end_layout
4111
4112 \end_inset
4113 </cell>
4114 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4115 \begin_inset Text
4116
4117 \begin_layout Plain Layout
4118 111
4119 \end_layout
4120
4121 \end_inset
4122 </cell>
4123 </row>
4124 <row>
4125 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4126 \begin_inset Text
4127
4128 \begin_layout Plain Layout
4129
4130 \series bold
4131 Malfatti
4132 \end_layout
4133
4134 \end_inset
4135 </cell>
4136 <cell alignment="center" valignment="top" usebox="none">
4137 \begin_inset Text
4138
4139 \begin_layout Plain Layout
4140 Valeriano
4141 \end_layout
4142
4143 \end_inset
4144 </cell>
4145 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4146 \begin_inset Text
4147
4148 \begin_layout Plain Layout
4149 111
4150 \end_layout
4151
4152 \end_inset
4153 </cell>
4154 </row>
4155 <row>
4156 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4157 \begin_inset Text
4158
4159 \begin_layout Plain Layout
4160
4161 \series bold
4162 Meneguzzo
4163 \end_layout
4164
4165 \end_inset
4166 </cell>
4167 <cell alignment="center" valignment="top" usebox="none">
4168 \begin_inset Text
4169
4170 \begin_layout Plain Layout
4171 Roberto
4172 \end_layout
4173
4174 \end_inset
4175 </cell>
4176 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4177 \begin_inset Text
4178
4179 \begin_layout Plain Layout
4180 111
4181 \end_layout
4182
4183 \end_inset
4184 </cell>
4185 </row>
4186 <row>
4187 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \begin_layout Plain Layout
4191
4192 \series bold
4193 Mezzadra
4194 \end_layout
4195
4196 \end_inset
4197 </cell>
4198 <cell alignment="center" valignment="top" usebox="none">
4199 \begin_inset Text
4200
4201 \begin_layout Plain Layout
4202 Roberto
4203 \end_layout
4204
4205 \end_inset
4206 </cell>
4207 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4208 \begin_inset Text
4209
4210 \begin_layout Plain Layout
4211 111
4212 \end_layout
4213
4214 \end_inset
4215 </cell>
4216 </row>
4217 <row>
4218 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4219 \begin_inset Text
4220
4221 \begin_layout Plain Layout
4222
4223 \series bold
4224 Pirpamer
4225 \end_layout
4226
4227 \end_inset
4228 </cell>
4229 <cell alignment="center" valignment="top" usebox="none">
4230 \begin_inset Text
4231
4232 \begin_layout Plain Layout
4233 Erich
4234 \end_layout
4235
4236 \end_inset
4237 </cell>
4238 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4239 \begin_inset Text
4240
4241 \begin_layout Plain Layout
4242 111
4243 \end_layout
4244
4245 \end_inset
4246 </cell>
4247 </row>
4248 <row>
4249 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4250 \begin_inset Text
4251
4252 \begin_layout Plain Layout
4253
4254 \series bold
4255 Pochiesa
4256 \end_layout
4257
4258 \end_inset
4259 </cell>
4260 <cell alignment="center" valignment="top" usebox="none">
4261 \begin_inset Text
4262
4263 \begin_layout Plain Layout
4264 Paolo
4265 \end_layout
4266
4267 \end_inset
4268 </cell>
4269 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4270 \begin_inset Text
4271
4272 \begin_layout Plain Layout
4273 111, 222
4274 \end_layout
4275
4276 \end_inset
4277 </cell>
4278 </row>
4279 <row>
4280 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4281 \begin_inset Text
4282
4283 \begin_layout Plain Layout
4284
4285 \series bold
4286 Radina
4287 \end_layout
4288
4289 \end_inset
4290 </cell>
4291 <cell alignment="center" valignment="top" usebox="none">
4292 \begin_inset Text
4293
4294 \begin_layout Plain Layout
4295 Claudio
4296 \end_layout
4297
4298 \end_inset
4299 </cell>
4300 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4301 \begin_inset Text
4302
4303 \begin_layout Plain Layout
4304 111
4305 \end_layout
4306
4307 \end_inset
4308 </cell>
4309 </row>
4310 <row>
4311 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4312 \begin_inset Text
4313
4314 \begin_layout Plain Layout
4315
4316 \series bold
4317 Stuffer
4318 \end_layout
4319
4320 \end_inset
4321 </cell>
4322 <cell alignment="center" valignment="top" usebox="none">
4323 \begin_inset Text
4324
4325 \begin_layout Plain Layout
4326 Oskar
4327 \end_layout
4328
4329 \end_inset
4330 </cell>
4331 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4332 \begin_inset Text
4333
4334 \begin_layout Plain Layout
4335 111
4336 \end_layout
4337
4338 \end_inset
4339 </cell>
4340 </row>
4341 <row>
4342 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4343 \begin_inset Text
4344
4345 \begin_layout Plain Layout
4346
4347 \series bold
4348 Tacchelli
4349 \end_layout
4350
4351 \end_inset
4352 </cell>
4353 <cell alignment="center" valignment="top" usebox="none">
4354 \begin_inset Text
4355
4356 \begin_layout Plain Layout
4357 Ugo
4358 \end_layout
4359
4360 \end_inset
4361 </cell>
4362 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4363 \begin_inset Text
4364
4365 \begin_layout Plain Layout
4366 111
4367 \end_layout
4368
4369 \end_inset
4370 </cell>
4371 </row>
4372 <row>
4373 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4374 \begin_inset Text
4375
4376 \begin_layout Plain Layout
4377
4378 \series bold
4379 Tezzele
4380 \end_layout
4381
4382 \end_inset
4383 </cell>
4384 <cell alignment="center" valignment="top" usebox="none">
4385 \begin_inset Text
4386
4387 \begin_layout Plain Layout
4388 Margit
4389 \end_layout
4390
4391 \end_inset
4392 </cell>
4393 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4394 \begin_inset Text
4395
4396 \begin_layout Plain Layout
4397 111
4398 \end_layout
4399
4400 \end_inset
4401 </cell>
4402 </row>
4403 <row>
4404 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4405 \begin_inset Text
4406
4407 \begin_layout Plain Layout
4408
4409 \series bold
4410 Unterkalmsteiner
4411 \end_layout
4412
4413 \end_inset
4414 </cell>
4415 <cell alignment="center" valignment="top" usebox="none">
4416 \begin_inset Text
4417
4418 \begin_layout Plain Layout
4419 Frieda
4420 \end_layout
4421
4422 \end_inset
4423 </cell>
4424 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4425 \begin_inset Text
4426
4427 \begin_layout Plain Layout
4428 111
4429 \end_layout
4430
4431 \end_inset
4432 </cell>
4433 </row>
4434 <row>
4435 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4436 \begin_inset Text
4437
4438 \begin_layout Plain Layout
4439
4440 \series bold
4441 Vieider
4442 \end_layout
4443
4444 \end_inset
4445 </cell>
4446 <cell alignment="center" valignment="top" usebox="none">
4447 \begin_inset Text
4448
4449 \begin_layout Plain Layout
4450 Hilde
4451 \end_layout
4452
4453 \end_inset
4454 </cell>
4455 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4456 \begin_inset Text
4457
4458 \begin_layout Plain Layout
4459 111
4460 \end_layout
4461
4462 \end_inset
4463 </cell>
4464 </row>
4465 <row>
4466 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4467 \begin_inset Text
4468
4469 \begin_layout Plain Layout
4470
4471 \series bold
4472 Vigna
4473 \end_layout
4474
4475 \end_inset
4476 </cell>
4477 <cell alignment="center" valignment="top" usebox="none">
4478 \begin_inset Text
4479
4480 \begin_layout Plain Layout
4481 Jürgen
4482 \end_layout
4483
4484 \end_inset
4485 </cell>
4486 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4487 \begin_inset Text
4488
4489 \begin_layout Plain Layout
4490 111
4491 \end_layout
4492
4493 \end_inset
4494 </cell>
4495 </row>
4496 <row>
4497 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4498 \begin_inset Text
4499
4500 \begin_layout Plain Layout
4501
4502 \series bold
4503 Weber
4504 \end_layout
4505
4506 \end_inset
4507 </cell>
4508 <cell alignment="center" valignment="top" usebox="none">
4509 \begin_inset Text
4510
4511 \begin_layout Plain Layout
4512 Maurizio
4513 \end_layout
4514
4515 \end_inset
4516 </cell>
4517 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4518 \begin_inset Text
4519
4520 \begin_layout Plain Layout
4521 111
4522 \end_layout
4523
4524 \end_inset
4525 </cell>
4526 </row>
4527 <row>
4528 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4529 \begin_inset Text
4530
4531 \begin_layout Plain Layout
4532
4533 \series bold
4534 Winkler
4535 \end_layout
4536
4537 \end_inset
4538 </cell>
4539 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
4540 \begin_inset Text
4541
4542 \begin_layout Plain Layout
4543 Franz
4544 \end_layout
4545
4546 \end_inset
4547 </cell>
4548 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4549 \begin_inset Text
4550
4551 \begin_layout Plain Layout
4552 111
4553 \end_layout
4554
4555 \end_inset
4556 </cell>
4557 </row>
4558 <row>
4559 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4560 \begin_inset Text
4561
4562 \begin_layout Plain Layout
4563  
4564 \end_layout
4565
4566 \end_inset
4567 </cell>
4568 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4569 \begin_inset Text
4570
4571 \begin_layout Plain Layout
4572
4573 \end_layout
4574
4575 \end_inset
4576 </cell>
4577 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4578 \begin_inset Text
4579
4580 \begin_layout Plain Layout
4581
4582 \end_layout
4583
4584 \end_inset
4585 </cell>
4586 </row>
4587 <row>
4588 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4589 \begin_inset Text
4590
4591 \begin_layout Plain Layout
4592
4593 \series bold
4594 Annovi
4595 \end_layout
4596
4597 \end_inset
4598 </cell>
4599 <cell alignment="center" valignment="top" usebox="none">
4600 \begin_inset Text
4601
4602 \begin_layout Plain Layout
4603 Silvia
4604 \end_layout
4605
4606 \end_inset
4607 </cell>
4608 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4609 \begin_inset Text
4610
4611 \begin_layout Plain Layout
4612 555
4613 \end_layout
4614
4615 \end_inset
4616 </cell>
4617 </row>
4618 <row>
4619 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4620 \begin_inset Text
4621
4622 \begin_layout Plain Layout
4623
4624 \series bold
4625 Bertoli
4626 \end_layout
4627
4628 \end_inset
4629 </cell>
4630 <cell alignment="center" valignment="top" usebox="none">
4631 \begin_inset Text
4632
4633 \begin_layout Plain Layout
4634 Stefano
4635 \end_layout
4636
4637 \end_inset
4638 </cell>
4639 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4640 \begin_inset Text
4641
4642 \begin_layout Plain Layout
4643 555
4644 \end_layout
4645
4646 \end_inset
4647 </cell>
4648 </row>
4649 <row>
4650 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4651 \begin_inset Text
4652
4653 \begin_layout Plain Layout
4654
4655 \series bold
4656 Bozzi
4657 \end_layout
4658
4659 \end_inset
4660 </cell>
4661 <cell alignment="center" valignment="top" usebox="none">
4662 \begin_inset Text
4663
4664 \begin_layout Plain Layout
4665 Walter
4666 \end_layout
4667
4668 \end_inset
4669 </cell>
4670 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4671 \begin_inset Text
4672
4673 \begin_layout Plain Layout
4674 555
4675 \end_layout
4676
4677 \end_inset
4678 </cell>
4679 </row>
4680 <row>
4681 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4682 \begin_inset Text
4683
4684 \begin_layout Plain Layout
4685
4686 \series bold
4687 Cachia
4688 \end_layout
4689
4690 \end_inset
4691 </cell>
4692 <cell alignment="center" valignment="top" usebox="none">
4693 \begin_inset Text
4694
4695 \begin_layout Plain Layout
4696 Maria
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4702 \begin_inset Text
4703
4704 \begin_layout Plain Layout
4705 555
4706 \end_layout
4707
4708 \end_inset
4709 </cell>
4710 </row>
4711 <row>
4712 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4713 \begin_inset Text
4714
4715 \begin_layout Plain Layout
4716
4717 \series bold
4718 Cachia
4719 \end_layout
4720
4721 \end_inset
4722 </cell>
4723 <cell alignment="center" valignment="top" usebox="none">
4724 \begin_inset Text
4725
4726 \begin_layout Plain Layout
4727 Maurizio
4728 \end_layout
4729
4730 \end_inset
4731 </cell>
4732 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4733 \begin_inset Text
4734
4735 \begin_layout Plain Layout
4736 555
4737 \end_layout
4738
4739 \end_inset
4740 </cell>
4741 </row>
4742 <row>
4743 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4744 \begin_inset Text
4745
4746 \begin_layout Plain Layout
4747
4748 \series bold
4749 Cinquemani
4750 \end_layout
4751
4752 \end_inset
4753 </cell>
4754 <cell alignment="center" valignment="top" usebox="none">
4755 \begin_inset Text
4756
4757 \begin_layout Plain Layout
4758 Giusi
4759 \end_layout
4760
4761 \end_inset
4762 </cell>
4763 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4764 \begin_inset Text
4765
4766 \begin_layout Plain Layout
4767 555
4768 \end_layout
4769
4770 \end_inset
4771 </cell>
4772 </row>
4773 <row>
4774 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4775 \begin_inset Text
4776
4777 \begin_layout Plain Layout
4778
4779 \series bold
4780 Colin
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 <cell alignment="center" valignment="top" usebox="none">
4786 \begin_inset Text
4787
4788 \begin_layout Plain Layout
4789 Bernard
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4795 \begin_inset Text
4796
4797 \begin_layout Plain Layout
4798 555
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 </row>
4804 <row>
4805 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4806 \begin_inset Text
4807
4808 \begin_layout Plain Layout
4809
4810 \series bold
4811 Concli
4812 \end_layout
4813
4814 \end_inset
4815 </cell>
4816 <cell alignment="center" valignment="top" usebox="none">
4817 \begin_inset Text
4818
4819 \begin_layout Plain Layout
4820 Gianfranco
4821 \end_layout
4822
4823 \end_inset
4824 </cell>
4825 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4826 \begin_inset Text
4827
4828 \begin_layout Plain Layout
4829 555
4830 \end_layout
4831
4832 \end_inset
4833 </cell>
4834 </row>
4835 <row>
4836 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4837 \begin_inset Text
4838
4839 \begin_layout Plain Layout
4840
4841 \series bold
4842 Dal Bosco
4843 \end_layout
4844
4845 \end_inset
4846 </cell>
4847 <cell alignment="center" valignment="top" usebox="none">
4848 \begin_inset Text
4849
4850 \begin_layout Plain Layout
4851 Carolina
4852 \end_layout
4853
4854 \end_inset
4855 </cell>
4856 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4857 \begin_inset Text
4858
4859 \begin_layout Plain Layout
4860 555
4861 \end_layout
4862
4863 \end_inset
4864 </cell>
4865 </row>
4866 <row>
4867 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4868 \begin_inset Text
4869
4870 \begin_layout Plain Layout
4871
4872 \series bold
4873 Dalpiaz
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 <cell alignment="center" valignment="top" usebox="none">
4879 \begin_inset Text
4880
4881 \begin_layout Plain Layout
4882 Annamaria
4883 \end_layout
4884
4885 \end_inset
4886 </cell>
4887 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4888 \begin_inset Text
4889
4890 \begin_layout Plain Layout
4891 555
4892 \end_layout
4893
4894 \end_inset
4895 </cell>
4896 </row>
4897 <row>
4898 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4899 \begin_inset Text
4900
4901 \begin_layout Plain Layout
4902
4903 \series bold
4904 Feliciello
4905 \end_layout
4906
4907 \end_inset
4908 </cell>
4909 <cell alignment="center" valignment="top" usebox="none">
4910 \begin_inset Text
4911
4912 \begin_layout Plain Layout
4913 Domenico
4914 \end_layout
4915
4916 \end_inset
4917 </cell>
4918 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4919 \begin_inset Text
4920
4921 \begin_layout Plain Layout
4922 555
4923 \end_layout
4924
4925 \end_inset
4926 </cell>
4927 </row>
4928 <row>
4929 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4930 \begin_inset Text
4931
4932 \begin_layout Plain Layout
4933
4934 \series bold
4935 Focarelli
4936 \end_layout
4937
4938 \end_inset
4939 </cell>
4940 <cell alignment="center" valignment="top" usebox="none">
4941 \begin_inset Text
4942
4943 \begin_layout Plain Layout
4944 Paola
4945 \end_layout
4946
4947 \end_inset
4948 </cell>
4949 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4950 \begin_inset Text
4951
4952 \begin_layout Plain Layout
4953 555
4954 \end_layout
4955
4956 \end_inset
4957 </cell>
4958 </row>
4959 <row>
4960 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4961 \begin_inset Text
4962
4963 \begin_layout Plain Layout
4964
4965 \series bold
4966 Galletti
4967 \end_layout
4968
4969 \end_inset
4970 </cell>
4971 <cell alignment="center" valignment="top" usebox="none">
4972 \begin_inset Text
4973
4974 \begin_layout Plain Layout
4975 Oreste
4976 \end_layout
4977
4978 \end_inset
4979 </cell>
4980 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4981 \begin_inset Text
4982
4983 \begin_layout Plain Layout
4984 555
4985 \end_layout
4986
4987 \end_inset
4988 </cell>
4989 </row>
4990 <row>
4991 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4992 \begin_inset Text
4993
4994 \begin_layout Plain Layout
4995
4996 \series bold
4997 Gasparini
4998 \end_layout
4999
5000 \end_inset
5001 </cell>
5002 <cell alignment="center" valignment="top" usebox="none">
5003 \begin_inset Text
5004
5005 \begin_layout Plain Layout
5006 Franca
5007 \end_layout
5008
5009 \end_inset
5010 </cell>
5011 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5012 \begin_inset Text
5013
5014 \begin_layout Plain Layout
5015 555
5016 \end_layout
5017
5018 \end_inset
5019 </cell>
5020 </row>
5021 <row>
5022 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5023 \begin_inset Text
5024
5025 \begin_layout Plain Layout
5026
5027 \series bold
5028 Rizzardi
5029 \end_layout
5030
5031 \end_inset
5032 </cell>
5033 <cell alignment="center" valignment="top" usebox="none">
5034 \begin_inset Text
5035
5036 \begin_layout Plain Layout
5037 Paola
5038 \end_layout
5039
5040 \end_inset
5041 </cell>
5042 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5043 \begin_inset Text
5044
5045 \begin_layout Plain Layout
5046 555
5047 \end_layout
5048
5049 \end_inset
5050 </cell>
5051 </row>
5052 <row>
5053 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5054 \begin_inset Text
5055
5056 \begin_layout Plain Layout
5057
5058 \series bold
5059 Lassini
5060 \end_layout
5061
5062 \end_inset
5063 </cell>
5064 <cell alignment="center" valignment="top" usebox="none">
5065 \begin_inset Text
5066
5067 \begin_layout Plain Layout
5068 Giancarlo
5069 \end_layout
5070
5071 \end_inset
5072 </cell>
5073 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5074 \begin_inset Text
5075
5076 \begin_layout Plain Layout
5077 555
5078 \end_layout
5079
5080 \end_inset
5081 </cell>
5082 </row>
5083 <row>
5084 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5085 \begin_inset Text
5086
5087 \begin_layout Plain Layout
5088
5089 \series bold
5090 Malfatti
5091 \end_layout
5092
5093 \end_inset
5094 </cell>
5095 <cell alignment="center" valignment="top" usebox="none">
5096 \begin_inset Text
5097
5098 \begin_layout Plain Layout
5099 Luciano
5100 \end_layout
5101
5102 \end_inset
5103 </cell>
5104 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5105 \begin_inset Text
5106
5107 \begin_layout Plain Layout
5108 555
5109 \end_layout
5110
5111 \end_inset
5112 </cell>
5113 </row>
5114 <row>
5115 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5116 \begin_inset Text
5117
5118 \begin_layout Plain Layout
5119
5120 \series bold
5121 Malfatti
5122 \end_layout
5123
5124 \end_inset
5125 </cell>
5126 <cell alignment="center" valignment="top" usebox="none">
5127 \begin_inset Text
5128
5129 \begin_layout Plain Layout
5130 Valeriano
5131 \end_layout
5132
5133 \end_inset
5134 </cell>
5135 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5136 \begin_inset Text
5137
5138 \begin_layout Plain Layout
5139 555
5140 \end_layout
5141
5142 \end_inset
5143 </cell>
5144 </row>
5145 <row>
5146 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5147 \begin_inset Text
5148
5149 \begin_layout Plain Layout
5150
5151 \series bold
5152 Meneguzzo
5153 \end_layout
5154
5155 \end_inset
5156 </cell>
5157 <cell alignment="center" valignment="top" usebox="none">
5158 \begin_inset Text
5159
5160 \begin_layout Plain Layout
5161 Roberto
5162 \end_layout
5163
5164 \end_inset
5165 </cell>
5166 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5167 \begin_inset Text
5168
5169 \begin_layout Plain Layout
5170 555
5171 \end_layout
5172
5173 \end_inset
5174 </cell>
5175 </row>
5176 <row>
5177 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5178 \begin_inset Text
5179
5180 \begin_layout Plain Layout
5181
5182 \series bold
5183 Mezzadra
5184 \end_layout
5185
5186 \end_inset
5187 </cell>
5188 <cell alignment="center" valignment="top" usebox="none">
5189 \begin_inset Text
5190
5191 \begin_layout Plain Layout
5192 Roberto
5193 \end_layout
5194
5195 \end_inset
5196 </cell>
5197 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5198 \begin_inset Text
5199
5200 \begin_layout Plain Layout
5201 555
5202 \end_layout
5203
5204 \end_inset
5205 </cell>
5206 </row>
5207 <row>
5208 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5209 \begin_inset Text
5210
5211 \begin_layout Plain Layout
5212
5213 \series bold
5214 Pirpamer
5215 \end_layout
5216
5217 \end_inset
5218 </cell>
5219 <cell alignment="center" valignment="top" usebox="none">
5220 \begin_inset Text
5221
5222 \begin_layout Plain Layout
5223 Erich
5224 \end_layout
5225
5226 \end_inset
5227 </cell>
5228 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5229 \begin_inset Text
5230
5231 \begin_layout Plain Layout
5232 555
5233 \end_layout
5234
5235 \end_inset
5236 </cell>
5237 </row>
5238 <row>
5239 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5240 \begin_inset Text
5241
5242 \begin_layout Plain Layout
5243
5244 \series bold
5245 Pochiesa
5246 \end_layout
5247
5248 \end_inset
5249 </cell>
5250 <cell alignment="center" valignment="top" usebox="none">
5251 \begin_inset Text
5252
5253 \begin_layout Plain Layout
5254 Paolo
5255 \end_layout
5256
5257 \end_inset
5258 </cell>
5259 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5260 \begin_inset Text
5261
5262 \begin_layout Plain Layout
5263 555, 222
5264 \end_layout
5265
5266 \end_inset
5267 </cell>
5268 </row>
5269 <row>
5270 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5271 \begin_inset Text
5272
5273 \begin_layout Plain Layout
5274
5275 \series bold
5276 Radina
5277 \end_layout
5278
5279 \end_inset
5280 </cell>
5281 <cell alignment="center" valignment="top" usebox="none">
5282 \begin_inset Text
5283
5284 \begin_layout Plain Layout
5285 Claudio
5286 \end_layout
5287
5288 \end_inset
5289 </cell>
5290 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5291 \begin_inset Text
5292
5293 \begin_layout Plain Layout
5294 555
5295 \end_layout
5296
5297 \end_inset
5298 </cell>
5299 </row>
5300 <row>
5301 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5302 \begin_inset Text
5303
5304 \begin_layout Plain Layout
5305
5306 \series bold
5307 Stuffer
5308 \end_layout
5309
5310 \end_inset
5311 </cell>
5312 <cell alignment="center" valignment="top" usebox="none">
5313 \begin_inset Text
5314
5315 \begin_layout Plain Layout
5316 Oskar
5317 \end_layout
5318
5319 \end_inset
5320 </cell>
5321 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5322 \begin_inset Text
5323
5324 \begin_layout Plain Layout
5325 555
5326 \end_layout
5327
5328 \end_inset
5329 </cell>
5330 </row>
5331 <row>
5332 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5333 \begin_inset Text
5334
5335 \begin_layout Plain Layout
5336
5337 \series bold
5338 Tacchelli
5339 \end_layout
5340
5341 \end_inset
5342 </cell>
5343 <cell alignment="center" valignment="top" usebox="none">
5344 \begin_inset Text
5345
5346 \begin_layout Plain Layout
5347 Ugo
5348 \end_layout
5349
5350 \end_inset
5351 </cell>
5352 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5353 \begin_inset Text
5354
5355 \begin_layout Plain Layout
5356 555
5357 \end_layout
5358
5359 \end_inset
5360 </cell>
5361 </row>
5362 <row>
5363 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5364 \begin_inset Text
5365
5366 \begin_layout Plain Layout
5367
5368 \series bold
5369 Tezzele
5370 \end_layout
5371
5372 \end_inset
5373 </cell>
5374 <cell alignment="center" valignment="top" usebox="none">
5375 \begin_inset Text
5376
5377 \begin_layout Plain Layout
5378 Margit
5379 \end_layout
5380
5381 \end_inset
5382 </cell>
5383 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5384 \begin_inset Text
5385
5386 \begin_layout Plain Layout
5387 555
5388 \end_layout
5389
5390 \end_inset
5391 </cell>
5392 </row>
5393 <row>
5394 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5395 \begin_inset Text
5396
5397 \begin_layout Plain Layout
5398
5399 \series bold
5400 Unterkalmsteiner
5401 \end_layout
5402
5403 \end_inset
5404 </cell>
5405 <cell alignment="center" valignment="top" usebox="none">
5406 \begin_inset Text
5407
5408 \begin_layout Plain Layout
5409 Frieda
5410 \end_layout
5411
5412 \end_inset
5413 </cell>
5414 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5415 \begin_inset Text
5416
5417 \begin_layout Plain Layout
5418 555
5419 \end_layout
5420
5421 \end_inset
5422 </cell>
5423 </row>
5424 <row>
5425 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5426 \begin_inset Text
5427
5428 \begin_layout Plain Layout
5429
5430 \series bold
5431 Vieider
5432 \end_layout
5433
5434 \end_inset
5435 </cell>
5436 <cell alignment="center" valignment="top" usebox="none">
5437 \begin_inset Text
5438
5439 \begin_layout Plain Layout
5440 Hilde
5441 \end_layout
5442
5443 \end_inset
5444 </cell>
5445 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5446 \begin_inset Text
5447
5448 \begin_layout Plain Layout
5449 555
5450 \end_layout
5451
5452 \end_inset
5453 </cell>
5454 </row>
5455 <row>
5456 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5457 \begin_inset Text
5458
5459 \begin_layout Plain Layout
5460
5461 \series bold
5462 Vigna
5463 \end_layout
5464
5465 \end_inset
5466 </cell>
5467 <cell alignment="center" valignment="top" usebox="none">
5468 \begin_inset Text
5469
5470 \begin_layout Plain Layout
5471 Jürgen
5472 \end_layout
5473
5474 \end_inset
5475 </cell>
5476 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5477 \begin_inset Text
5478
5479 \begin_layout Plain Layout
5480 999
5481 \end_layout
5482
5483 \end_inset
5484 </cell>
5485 </row>
5486 <row>
5487 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5488 \begin_inset Text
5489
5490 \begin_layout Plain Layout
5491
5492 \series bold
5493 Weber
5494 \end_layout
5495
5496 \end_inset
5497 </cell>
5498 <cell alignment="center" valignment="top" usebox="none">
5499 \begin_inset Text
5500
5501 \begin_layout Plain Layout
5502 Maurizio
5503 \end_layout
5504
5505 \end_inset
5506 </cell>
5507 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5508 \begin_inset Text
5509
5510 \begin_layout Plain Layout
5511 555
5512 \end_layout
5513
5514 \end_inset
5515 </cell>
5516 </row>
5517 <row>
5518 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
5519 \begin_inset Text
5520
5521 \begin_layout Plain Layout
5522
5523 \series bold
5524 Winkler
5525 \end_layout
5526
5527 \end_inset
5528 </cell>
5529 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
5530 \begin_inset Text
5531
5532 \begin_layout Plain Layout
5533 Franz
5534 \end_layout
5535
5536 \end_inset
5537 </cell>
5538 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
5539 \begin_inset Text
5540
5541 \begin_layout Plain Layout
5542 555
5543 \end_layout
5544
5545 \end_inset
5546 </cell>
5547 </row>
5548 <row endlastfoot="true">
5549 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
5550 \begin_inset Text
5551
5552 \begin_layout Plain Layout
5553 Fin
5554 \end_layout
5555
5556 \end_inset
5557 </cell>
5558 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
5559 \begin_inset Text
5560
5561 \begin_layout Plain Layout
5562
5563 \end_layout
5564
5565 \end_inset
5566 </cell>
5567 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5568 \begin_inset Text
5569
5570 \begin_layout Plain Layout
5571
5572 \end_layout
5573
5574 \end_inset
5575 </cell>
5576 </row>
5577 </lyxtabular>
5578
5579 \end_inset
5580
5581
5582 \begin_inset ERT
5583 status collapsed
5584
5585 \begin_layout Plain Layout
5586
5587
5588 \backslash
5589 addtocounter{table}{-1}
5590 \end_layout
5591
5592 \end_inset
5593
5594
5595 \begin_inset Note Note
5596 status collapsed
5597
5598 \begin_layout Plain Layout
5599 Voyez la première note grisée de la section
5600 \begin_inset space ~
5601 \end_inset
5602
5603
5604 \begin_inset CommandInset ref
5605 LatexCommand ref
5606 reference "sub:Tableaux-longs-légende"
5607
5608 \end_inset
5609
5610  pour une explication de cette commande.
5611 \end_layout
5612
5613 \end_inset
5614
5615
5616 \end_layout
5617
5618 \begin_layout Subsection
5619 Notes de bas de page dans les tableaux longs
5620 \begin_inset CommandInset label
5621 LatexCommand label
5622 name "sub:Notes-dans-tableau-long"
5623
5624 \end_inset
5625
5626
5627 \begin_inset Index idx
5628 status collapsed
5629
5630 \begin_layout Plain Layout
5631 Tableaux longs ! Notes de bas de page
5632 \end_layout
5633
5634 \end_inset
5635
5636
5637 \end_layout
5638
5639 \begin_layout Standard
5640 Vous pouvez insérer des notes de bas de page dans chaque cellule d'un tableau
5641  long.
5642  Elles apparaissent en bas de la page dans laquelle se trouve la cellule
5643  contenant la note.
5644  Par exemple le tableau
5645 \begin_inset space ~
5646 \end_inset
5647
5648
5649 \begin_inset CommandInset ref
5650 LatexCommand ref
5651 reference "tab:Légendes-tableau-différentes"
5652
5653 \end_inset
5654
5655  a une note de bas de page.
5656 \end_layout
5657
5658 \begin_layout Subsection
5659 Alignement des tableaux longs
5660 \begin_inset Index idx
5661 status collapsed
5662
5663 \begin_layout Plain Layout
5664 Tableaux longs ! Alignement
5665 \end_layout
5666
5667 \end_inset
5668
5669
5670 \end_layout
5671
5672 \begin_layout Standard
5673 L'alignement horizontal des tableaux longs peut être modifié dans la fenêtre
5674  de dialogue des paramètres de tableau.
5675  Pour les alignements à droite et à gauche, le tableau sera directement
5676  au bord de la page.
5677  Pour ajouter de l'espace entre le tableau et la marge, on doit choisir
5678  l'alignement centré et modifier les valeurs des longueurs 
5679 \series bold
5680
5681 \backslash
5682 LTleft 
5683 \series default
5684 et 
5685 \series bold
5686
5687 \backslash
5688 LTright
5689 \series default
5690  en insérant la ligne suivante sous forme de code TeX avant le tableau long
5691  concerné :
5692 \end_layout
5693
5694 \begin_layout Standard
5695
5696 \series bold
5697
5698 \backslash
5699 setlength{
5700 \backslash
5701 LTleft}{valeur}
5702 \end_layout
5703
5704 \begin_layout Standard
5705 Où 
5706 \series bold
5707 valeur
5708 \series default
5709  peut avoir n'importe laquelle des unités listées dans le tableau
5710 \begin_inset space ~
5711 \end_inset
5712
5713
5714 \begin_inset CommandInset ref
5715 LatexCommand ref
5716 reference "cha:Unités-de-longueur"
5717
5718 \end_inset
5719
5720 .
5721  
5722 \series bold
5723
5724 \backslash
5725 LTleft
5726 \series default
5727  contrôle la distance horizontale entre le bord gauche de la page et le
5728  tableau, et
5729 \series bold
5730  
5731 \backslash
5732 LTright
5733 \series default
5734  la distance au bord droit.
5735  La valeur implicite des ces deux distances est 
5736 \series bold
5737
5738 \backslash
5739 fill
5740 \series default
5741 , ce qui dans ce cas correspond à un ressort horizontal dans LyX.
5742 \end_layout
5743
5744 \begin_layout Standard
5745 Le tableau long suivant a été centrée en mettant 
5746 \series bold
5747
5748 \backslash
5749 LTleft
5750 \series default
5751  à 
5752 \family sans
5753 0.1
5754 \backslash
5755 columnwidth
5756 \family default
5757 :
5758 \begin_inset ERT
5759 status collapsed
5760
5761 \begin_layout Plain Layout
5762
5763
5764 \backslash
5765 setlength{
5766 \backslash
5767 LTleft}{0.1
5768 \backslash
5769 columnwidth}
5770 \end_layout
5771
5772 \end_inset
5773
5774
5775 \end_layout
5776
5777 \begin_layout Standard
5778 \begin_inset Tabular
5779 <lyxtabular version="3" rows="5" columns="5">
5780 <features rotate="0" islongtable="true" longtabularalignment="center">
5781 <column alignment="center" valignment="top" width="0">
5782 <column alignment="center" valignment="top" width="0">
5783 <column alignment="center" valignment="top" width="0">
5784 <column alignment="center" valignment="top" width="0">
5785 <column alignment="center" valignment="top" width="0">
5786 <row>
5787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5788 \begin_inset Text
5789
5790 \begin_layout Plain Layout
5791 1
5792 \end_layout
5793
5794 \end_inset
5795 </cell>
5796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5797 \begin_inset Text
5798
5799 \begin_layout Plain Layout
5800 2
5801 \end_layout
5802
5803 \end_inset
5804 </cell>
5805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5806 \begin_inset Text
5807
5808 \begin_layout Plain Layout
5809 3
5810 \end_layout
5811
5812 \end_inset
5813 </cell>
5814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5815 \begin_inset Text
5816
5817 \begin_layout Plain Layout
5818 4
5819 \end_layout
5820
5821 \end_inset
5822 </cell>
5823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5824 \begin_inset Text
5825
5826 \begin_layout Plain Layout
5827 5
5828 \end_layout
5829
5830 \end_inset
5831 </cell>
5832 </row>
5833 <row>
5834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5835 \begin_inset Text
5836
5837 \begin_layout Plain Layout
5838 asd
5839 \end_layout
5840
5841 \end_inset
5842 </cell>
5843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5844 \begin_inset Text
5845
5846 \begin_layout Plain Layout
5847 s
5848 \end_layout
5849
5850 \end_inset
5851 </cell>
5852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5853 \begin_inset Text
5854
5855 \begin_layout Plain Layout
5856 s
5857 \end_layout
5858
5859 \end_inset
5860 </cell>
5861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5862 \begin_inset Text
5863
5864 \begin_layout Plain Layout
5865 s
5866 \end_layout
5867
5868 \end_inset
5869 </cell>
5870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5871 \begin_inset Text
5872
5873 \begin_layout Plain Layout
5874 asd
5875 \end_layout
5876
5877 \end_inset
5878 </cell>
5879 </row>
5880 <row>
5881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5882 \begin_inset Text
5883
5884 \begin_layout Plain Layout
5885 asd
5886 \end_layout
5887
5888 \end_inset
5889 </cell>
5890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5891 \begin_inset Text
5892
5893 \begin_layout Plain Layout
5894 s
5895 \end_layout
5896
5897 \end_inset
5898 </cell>
5899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5900 \begin_inset Text
5901
5902 \begin_layout Plain Layout
5903 s
5904 \end_layout
5905
5906 \end_inset
5907 </cell>
5908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5909 \begin_inset Text
5910
5911 \begin_layout Plain Layout
5912 s
5913 \end_layout
5914
5915 \end_inset
5916 </cell>
5917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5918 \begin_inset Text
5919
5920 \begin_layout Plain Layout
5921 asd
5922 \end_layout
5923
5924 \end_inset
5925 </cell>
5926 </row>
5927 <row>
5928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5929 \begin_inset Text
5930
5931 \begin_layout Plain Layout
5932 asd
5933 \end_layout
5934
5935 \end_inset
5936 </cell>
5937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5938 \begin_inset Text
5939
5940 \begin_layout Plain Layout
5941 s
5942 \end_layout
5943
5944 \end_inset
5945 </cell>
5946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5947 \begin_inset Text
5948
5949 \begin_layout Plain Layout
5950 s
5951 \end_layout
5952
5953 \end_inset
5954 </cell>
5955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5956 \begin_inset Text
5957
5958 \begin_layout Plain Layout
5959 s
5960 \end_layout
5961
5962 \end_inset
5963 </cell>
5964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5965 \begin_inset Text
5966
5967 \begin_layout Plain Layout
5968 asd
5969 \end_layout
5970
5971 \end_inset
5972 </cell>
5973 </row>
5974 <row>
5975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5976 \begin_inset Text
5977
5978 \begin_layout Plain Layout
5979 asd
5980 \end_layout
5981
5982 \end_inset
5983 </cell>
5984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5985 \begin_inset Text
5986
5987 \begin_layout Plain Layout
5988 asd
5989 \end_layout
5990
5991 \end_inset
5992 </cell>
5993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5994 \begin_inset Text
5995
5996 \begin_layout Plain Layout
5997 asd
5998 \end_layout
5999
6000 \end_inset
6001 </cell>
6002 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6003 \begin_inset Text
6004
6005 \begin_layout Plain Layout
6006 asd
6007 \end_layout
6008
6009 \end_inset
6010 </cell>
6011 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6012 \begin_inset Text
6013
6014 \begin_layout Plain Layout
6015 asd
6016 \end_layout
6017
6018 \end_inset
6019 </cell>
6020 </row>
6021 </lyxtabular>
6022
6023 \end_inset
6024
6025
6026 \begin_inset ERT
6027 status collapsed
6028
6029 \begin_layout Plain Layout
6030
6031
6032 \backslash
6033 setlength{
6034 \backslash
6035 LTleft}{
6036 \backslash
6037 fill}
6038 \end_layout
6039
6040 \end_inset
6041
6042
6043 \begin_inset ERT
6044 status collapsed
6045
6046 \begin_layout Plain Layout
6047
6048
6049 \backslash
6050 addtocounter{table}{-1}
6051 \end_layout
6052
6053 \end_inset
6054
6055
6056 \begin_inset Note Note
6057 status collapsed
6058
6059 \begin_layout Plain Layout
6060 Voyez la première note grisée de la section
6061 \begin_inset space ~
6062 \end_inset
6063
6064
6065 \begin_inset CommandInset ref
6066 LatexCommand ref
6067 reference "sub:Tableaux-longs-légende"
6068
6069 \end_inset
6070
6071  pour une explication de cette commande.
6072 \end_layout
6073
6074 \end_inset
6075
6076
6077 \end_layout
6078
6079 \begin_layout Subsection
6080 Légendes et tableaux longs
6081 \begin_inset Index idx
6082 status collapsed
6083
6084 \begin_layout Plain Layout
6085 Tableaux longs ! Legendes@Légendes
6086 \end_layout
6087
6088 \end_inset
6089
6090
6091 \begin_inset CommandInset label
6092 LatexCommand label
6093 name "sub:Tableaux-longs-légende"
6094
6095 \end_inset
6096
6097
6098 \end_layout
6099
6100 \begin_layout Standard
6101 Vous ne pouvez pas placer un tableau long dans un flottant de tableau puisque
6102  les flottants ne peuvent pas être sur plusieurs pages, mais l'environnement
6103  de légende des flottants de tableau peut aussi être utilisé pour les tableaux
6104  longs quand on utilise pour une ligne l'option de tableau long 
6105 \family sans
6106 Légende
6107 \family default
6108 , comme c'est expliqué dans la section
6109 \begin_inset space ~
6110 \end_inset
6111
6112
6113 \begin_inset CommandInset ref
6114 LatexCommand ref
6115 reference "sec:Tableaux-longs"
6116
6117 \end_inset
6118
6119 .
6120 \end_layout
6121
6122 \begin_layout Standard
6123 Voici un petit Tableau long pour voir comment ça marche :
6124 \end_layout
6125
6126 \begin_layout Standard
6127 \begin_inset Tabular
6128 <lyxtabular version="3" rows="6" columns="5">
6129 <features rotate="0" islongtable="true" longtabularalignment="center">
6130 <column alignment="center" valignment="top" width="0">
6131 <column alignment="center" valignment="top" width="0">
6132 <column alignment="center" valignment="top" width="0">
6133 <column alignment="center" valignment="top" width="0">
6134 <column alignment="center" valignment="top" width="0">
6135 <row endfirsthead="true" caption="true">
6136 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6137 \begin_inset Text
6138
6139 \begin_layout Plain Layout
6140 \begin_inset Caption Standard
6141
6142 \begin_layout Plain Layout
6143 Tableau long avec une légende
6144 \begin_inset Argument 1
6145 status open
6146
6147 \begin_layout Plain Layout
6148 Tableau long
6149 \end_layout
6150
6151 \end_inset
6152
6153
6154 \end_layout
6155
6156 \end_inset
6157
6158
6159 \end_layout
6160
6161 \end_inset
6162 </cell>
6163 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6164 \begin_inset Text
6165
6166 \begin_layout Plain Layout
6167
6168 \end_layout
6169
6170 \end_inset
6171 </cell>
6172 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6173 \begin_inset Text
6174
6175 \begin_layout Plain Layout
6176
6177 \end_layout
6178
6179 \end_inset
6180 </cell>
6181 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6182 \begin_inset Text
6183
6184 \begin_layout Plain Layout
6185
6186 \end_layout
6187
6188 \end_inset
6189 </cell>
6190 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6191 \begin_inset Text
6192
6193 \begin_layout Plain Layout
6194
6195 \end_layout
6196
6197 \end_inset
6198 </cell>
6199 </row>
6200 <row>
6201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6202 \begin_inset Text
6203
6204 \begin_layout Plain Layout
6205 1
6206 \end_layout
6207
6208 \end_inset
6209 </cell>
6210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6211 \begin_inset Text
6212
6213 \begin_layout Plain Layout
6214 2
6215 \end_layout
6216
6217 \end_inset
6218 </cell>
6219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6220 \begin_inset Text
6221
6222 \begin_layout Plain Layout
6223 3
6224 \end_layout
6225
6226 \end_inset
6227 </cell>
6228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6229 \begin_inset Text
6230
6231 \begin_layout Plain Layout
6232 4
6233 \end_layout
6234
6235 \end_inset
6236 </cell>
6237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6238 \begin_inset Text
6239
6240 \begin_layout Plain Layout
6241 5
6242 \end_layout
6243
6244 \end_inset
6245 </cell>
6246 </row>
6247 <row>
6248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6249 \begin_inset Text
6250
6251 \begin_layout Plain Layout
6252 asd
6253 \end_layout
6254
6255 \end_inset
6256 </cell>
6257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6258 \begin_inset Text
6259
6260 \begin_layout Plain Layout
6261 s
6262 \end_layout
6263
6264 \end_inset
6265 </cell>
6266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6267 \begin_inset Text
6268
6269 \begin_layout Plain Layout
6270 s
6271 \end_layout
6272
6273 \end_inset
6274 </cell>
6275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6276 \begin_inset Text
6277
6278 \begin_layout Plain Layout
6279 s
6280 \end_layout
6281
6282 \end_inset
6283 </cell>
6284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6285 \begin_inset Text
6286
6287 \begin_layout Plain Layout
6288 asd
6289 \end_layout
6290
6291 \end_inset
6292 </cell>
6293 </row>
6294 <row>
6295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6296 \begin_inset Text
6297
6298 \begin_layout Plain Layout
6299 asd
6300 \end_layout
6301
6302 \end_inset
6303 </cell>
6304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6305 \begin_inset Text
6306
6307 \begin_layout Plain Layout
6308 s
6309 \end_layout
6310
6311 \end_inset
6312 </cell>
6313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Plain Layout
6317 s
6318 \end_layout
6319
6320 \end_inset
6321 </cell>
6322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6323 \begin_inset Text
6324
6325 \begin_layout Plain Layout
6326 s
6327 \end_layout
6328
6329 \end_inset
6330 </cell>
6331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6332 \begin_inset Text
6333
6334 \begin_layout Plain Layout
6335 asd
6336 \end_layout
6337
6338 \end_inset
6339 </cell>
6340 </row>
6341 <row>
6342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6343 \begin_inset Text
6344
6345 \begin_layout Plain Layout
6346 asd
6347 \end_layout
6348
6349 \end_inset
6350 </cell>
6351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6352 \begin_inset Text
6353
6354 \begin_layout Plain Layout
6355 s
6356 \end_layout
6357
6358 \end_inset
6359 </cell>
6360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6361 \begin_inset Text
6362
6363 \begin_layout Plain Layout
6364 s
6365 \end_layout
6366
6367 \end_inset
6368 </cell>
6369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6370 \begin_inset Text
6371
6372 \begin_layout Plain Layout
6373 s
6374 \end_layout
6375
6376 \end_inset
6377 </cell>
6378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6379 \begin_inset Text
6380
6381 \begin_layout Plain Layout
6382 asd
6383 \end_layout
6384
6385 \end_inset
6386 </cell>
6387 </row>
6388 <row>
6389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6390 \begin_inset Text
6391
6392 \begin_layout Plain Layout
6393 asd
6394 \end_layout
6395
6396 \end_inset
6397 </cell>
6398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6399 \begin_inset Text
6400
6401 \begin_layout Plain Layout
6402 asd
6403 \end_layout
6404
6405 \end_inset
6406 </cell>
6407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6408 \begin_inset Text
6409
6410 \begin_layout Plain Layout
6411 asd
6412 \end_layout
6413
6414 \end_inset
6415 </cell>
6416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6417 \begin_inset Text
6418
6419 \begin_layout Plain Layout
6420 asd
6421 \end_layout
6422
6423 \end_inset
6424 </cell>
6425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6426 \begin_inset Text
6427
6428 \begin_layout Plain Layout
6429 asd
6430 \end_layout
6431
6432 \end_inset
6433 </cell>
6434 </row>
6435 </lyxtabular>
6436
6437 \end_inset
6438
6439
6440 \end_layout
6441
6442 \begin_layout Standard
6443 \begin_inset VSpace medskip
6444 \end_inset
6445
6446
6447 \begin_inset Note Greyedout
6448 status open
6449
6450 \begin_layout Plain Layout
6451
6452 \series bold
6453 Note
6454 \begin_inset space ~
6455 \end_inset
6456
6457 1:
6458 \series default
6459  Le numéro de tableau est incrémenté à chaque tableau long, même si vous
6460  n'avez pas prévu de légende.
6461  À cause de ça, vous pouvez avoir le cas où par exemple le tableau
6462 \begin_inset space ~
6463 \end_inset
6464
6465 2.4 suit le tableau
6466 \begin_inset space ~
6467 \end_inset
6468
6469 2.1 dans la liste des tableaux, si entre les deux il y a deux tableaux longs
6470  sans légende.
6471  Pour éviter ce problème, vous pouvez ajouter cette commande en code TeX
6472  après chaque tableau long sans légende :
6473 \end_layout
6474
6475 \begin_layout Plain Layout
6476
6477 \series bold
6478
6479 \backslash
6480 addtocounter{table}{-1}
6481 \end_layout
6482
6483 \begin_layout Plain Layout
6484 Ce n'est pas nécessaire quand aucun de vos tableaux longs n'a de légende
6485  et que vous ajoutez le code suivant dans le préambule du document :
6486 \end_layout
6487
6488 \begin_layout Plain Layout
6489
6490 \series bold
6491
6492 \backslash
6493 let
6494 \backslash
6495 myEnd
6496 \backslash
6497 endlongtable
6498 \begin_inset Newline newline
6499 \end_inset
6500
6501
6502 \backslash
6503 renewcommand{
6504 \backslash
6505 endlongtable}{
6506 \backslash
6507 myEnd
6508 \backslash
6509 addtocounter{table}{-1}}
6510 \end_layout
6511
6512 \end_inset
6513
6514
6515 \end_layout
6516
6517 \begin_layout Standard
6518 \begin_inset Note Greyedout
6519 status open
6520
6521 \begin_layout Plain Layout
6522
6523 \series bold
6524 Note
6525 \begin_inset space ~
6526 \end_inset
6527
6528 2:
6529 \series default
6530  Si vous utilisez 
6531 \series bold
6532 hyperref
6533 \series default
6534
6535 \begin_inset Index idx
6536 status collapsed
6537
6538 \begin_layout Plain Layout
6539 Paquetages LaTeX ! hyperref
6540 \end_layout
6541
6542 \end_inset
6543
6544  dans les 
6545 \family sans
6546 Paramètres du document
6547 \family default
6548  rubrique 
6549 \family sans
6550 Propriétés
6551 \begin_inset space ~
6552 \end_inset
6553
6554 du
6555 \begin_inset space ~
6556 \end_inset
6557
6558 PDF
6559 \family default
6560 , pour transformer vos références croisées en liens cliquables, le lien
6561  vers un tableau long pointera toujours sur le début du document.
6562 \end_layout
6563
6564 \end_inset
6565
6566
6567 \end_layout
6568
6569 \begin_layout Subsubsection
6570 Références à des tableaux longs
6571 \begin_inset Index idx
6572 status collapsed
6573
6574 \begin_layout Plain Layout
6575 Tableaux longs ! Références
6576 \end_layout
6577
6578 \end_inset
6579
6580
6581 \end_layout
6582
6583 \begin_layout Standard
6584 \begin_inset Tabular
6585 <lyxtabular version="3" rows="6" columns="5">
6586 <features rotate="0" islongtable="true" longtabularalignment="center">
6587 <column alignment="center" valignment="top" width="0">
6588 <column alignment="center" valignment="top" width="0">
6589 <column alignment="center" valignment="top" width="0">
6590 <column alignment="center" valignment="top" width="0">
6591 <column alignment="center" valignment="top" width="0">
6592 <row endfirsthead="true" caption="true">
6593 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6594 \begin_inset Text
6595
6596 \begin_layout Plain Layout
6597 \begin_inset Caption Standard
6598
6599 \begin_layout Plain Layout
6600 Tableau long référencé
6601 \begin_inset CommandInset label
6602 LatexCommand label
6603 name "tab:RefExemple"
6604
6605 \end_inset
6606
6607
6608 \end_layout
6609
6610 \end_inset
6611
6612
6613 \end_layout
6614
6615 \end_inset
6616 </cell>
6617 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6618 \begin_inset Text
6619
6620 \begin_layout Plain Layout
6621
6622 \end_layout
6623
6624 \end_inset
6625 </cell>
6626 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6627 \begin_inset Text
6628
6629 \begin_layout Plain Layout
6630
6631 \end_layout
6632
6633 \end_inset
6634 </cell>
6635 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6636 \begin_inset Text
6637
6638 \begin_layout Plain Layout
6639
6640 \end_layout
6641
6642 \end_inset
6643 </cell>
6644 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6645 \begin_inset Text
6646
6647 \begin_layout Plain Layout
6648
6649 \end_layout
6650
6651 \end_inset
6652 </cell>
6653 </row>
6654 <row>
6655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6656 \begin_inset Text
6657
6658 \begin_layout Plain Layout
6659 1
6660 \end_layout
6661
6662 \end_inset
6663 </cell>
6664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6665 \begin_inset Text
6666
6667 \begin_layout Plain Layout
6668 2
6669 \end_layout
6670
6671 \end_inset
6672 </cell>
6673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6674 \begin_inset Text
6675
6676 \begin_layout Plain Layout
6677 3
6678 \end_layout
6679
6680 \end_inset
6681 </cell>
6682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6683 \begin_inset Text
6684
6685 \begin_layout Plain Layout
6686 4
6687 \end_layout
6688
6689 \end_inset
6690 </cell>
6691 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6692 \begin_inset Text
6693
6694 \begin_layout Plain Layout
6695 5
6696 \end_layout
6697
6698 \end_inset
6699 </cell>
6700 </row>
6701 <row>
6702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6703 \begin_inset Text
6704
6705 \begin_layout Plain Layout
6706 asd
6707 \end_layout
6708
6709 \end_inset
6710 </cell>
6711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6712 \begin_inset Text
6713
6714 \begin_layout Plain Layout
6715 s
6716 \end_layout
6717
6718 \end_inset
6719 </cell>
6720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6721 \begin_inset Text
6722
6723 \begin_layout Plain Layout
6724 s
6725 \end_layout
6726
6727 \end_inset
6728 </cell>
6729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6730 \begin_inset Text
6731
6732 \begin_layout Plain Layout
6733 s
6734 \end_layout
6735
6736 \end_inset
6737 </cell>
6738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6739 \begin_inset Text
6740
6741 \begin_layout Plain Layout
6742 asd
6743 \end_layout
6744
6745 \end_inset
6746 </cell>
6747 </row>
6748 <row>
6749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6750 \begin_inset Text
6751
6752 \begin_layout Plain Layout
6753 asd
6754 \end_layout
6755
6756 \end_inset
6757 </cell>
6758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6759 \begin_inset Text
6760
6761 \begin_layout Plain Layout
6762 s
6763 \end_layout
6764
6765 \end_inset
6766 </cell>
6767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6768 \begin_inset Text
6769
6770 \begin_layout Plain Layout
6771 s
6772 \end_layout
6773
6774 \end_inset
6775 </cell>
6776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6777 \begin_inset Text
6778
6779 \begin_layout Plain Layout
6780 s
6781 \end_layout
6782
6783 \end_inset
6784 </cell>
6785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6786 \begin_inset Text
6787
6788 \begin_layout Plain Layout
6789 asd
6790 \end_layout
6791
6792 \end_inset
6793 </cell>
6794 </row>
6795 <row>
6796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6797 \begin_inset Text
6798
6799 \begin_layout Plain Layout
6800 asd
6801 \end_layout
6802
6803 \end_inset
6804 </cell>
6805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6806 \begin_inset Text
6807
6808 \begin_layout Plain Layout
6809 s
6810 \end_layout
6811
6812 \end_inset
6813 </cell>
6814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6815 \begin_inset Text
6816
6817 \begin_layout Plain Layout
6818 s
6819 \end_layout
6820
6821 \end_inset
6822 </cell>
6823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6824 \begin_inset Text
6825
6826 \begin_layout Plain Layout
6827 s
6828 \end_layout
6829
6830 \end_inset
6831 </cell>
6832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6833 \begin_inset Text
6834
6835 \begin_layout Plain Layout
6836 asd
6837 \end_layout
6838
6839 \end_inset
6840 </cell>
6841 </row>
6842 <row>
6843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6844 \begin_inset Text
6845
6846 \begin_layout Plain Layout
6847 asd
6848 \end_layout
6849
6850 \end_inset
6851 </cell>
6852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6853 \begin_inset Text
6854
6855 \begin_layout Plain Layout
6856 sad
6857 \end_layout
6858
6859 \end_inset
6860 </cell>
6861 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6862 \begin_inset Text
6863
6864 \begin_layout Plain Layout
6865 asd
6866 \end_layout
6867
6868 \end_inset
6869 </cell>
6870 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6871 \begin_inset Text
6872
6873 \begin_layout Plain Layout
6874 asd
6875 \end_layout
6876
6877 \end_inset
6878 </cell>
6879 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6880 \begin_inset Text
6881
6882 \begin_layout Plain Layout
6883 asd
6884 \end_layout
6885
6886 \end_inset
6887 </cell>
6888 </row>
6889 </lyxtabular>
6890
6891 \end_inset
6892
6893
6894 \end_layout
6895
6896 \begin_layout Standard
6897 Pour pouvoir faire référence à un tableau long, il faut insérer une étiquette
6898  dans sa légende.
6899 \end_layout
6900
6901 \begin_layout Standard
6902 Ceci est une référence au tableau
6903 \begin_inset space ~
6904 \end_inset
6905
6906
6907 \begin_inset CommandInset ref
6908 LatexCommand ref
6909 reference "tab:RefExemple"
6910
6911 \end_inset
6912
6913 .
6914 \end_layout
6915
6916 \begin_layout Standard
6917 La mise en forme de la légende peut être ajustée avec celle de toutes les
6918  autres légendes de votre document en utilisant le paquetage LaTeX 
6919 \series bold
6920 caption
6921 \series default
6922
6923 \begin_inset Index idx
6924 status collapsed
6925
6926 \begin_layout Plain Layout
6927 Paquetages LaTeX ! caption
6928 \end_layout
6929
6930 \end_inset
6931
6932 , voir la section
6933 \begin_inset space ~
6934 \end_inset
6935
6936
6937 \begin_inset CommandInset ref
6938 LatexCommand ref
6939 reference "sec:Formatage-légende"
6940
6941 \end_inset
6942
6943 .
6944 \end_layout
6945
6946 \begin_layout Subsubsection
6947 Largeur de la légende
6948 \begin_inset Index idx
6949 status collapsed
6950
6951 \begin_layout Plain Layout
6952 Tableaux longs ! Largeur de la légende
6953 \end_layout
6954
6955 \end_inset
6956
6957
6958 \end_layout
6959
6960 \begin_layout Standard
6961 La largeur maximale des lignes de légende est définie par la longueur 
6962 \series bold
6963
6964 \backslash
6965 LTcapwidth
6966 \series default
6967 .
6968  Sa valeur implicite est 4
6969 \begin_inset space \thinspace{}
6970 \end_inset
6971
6972 in.
6973  Pour la changer, vous pouvez ajouter la commande suivante dans le préambule
6974  de votre document ou en tant que code TeX directement dans votre document
6975  avant le tableau qui doit être affectée.
6976 \end_layout
6977
6978 \begin_layout Standard
6979
6980 \series bold
6981
6982 \backslash
6983 setlength{
6984 \backslash
6985 LTcapwidth}{largeur}
6986 \end_layout
6987
6988 \begin_layout Standard
6989 où la largeur peur être exprimée avec les unités qui sont listées dans l'appendi
6990 ce
6991 \begin_inset space ~
6992 \end_inset
6993
6994
6995 \begin_inset CommandInset ref
6996 LatexCommand ref
6997 reference "cha:Unités-de-longueur"
6998
6999 \end_inset
7000
7001 .
7002 \end_layout
7003
7004 \begin_layout Standard
7005 Les tableaux suivants montrent la différence :
7006 \end_layout
7007
7008 \begin_layout Standard
7009 \begin_inset Tabular
7010 <lyxtabular version="3" rows="6" columns="5">
7011 <features rotate="0" islongtable="true" longtabularalignment="center">
7012 <column alignment="center" valignment="top" width="0">
7013 <column alignment="center" valignment="top" width="0">
7014 <column alignment="center" valignment="top" width="0">
7015 <column alignment="center" valignment="top" width="0">
7016 <column alignment="center" valignment="top" width="0">
7017 <row endfirsthead="true" caption="true">
7018 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
7019 \begin_inset Text
7020
7021 \begin_layout Plain Layout
7022 \begin_inset Caption Standard
7023
7024 \begin_layout Plain Layout
7025 long titre complet avec la largeur implicite long titre complet avec la
7026  largeur implicite long titre complet avec la largeur implicite
7027 \begin_inset Argument 1
7028 status open
7029
7030 \begin_layout Plain Layout
7031 Légende avec largeur implicite
7032 \end_layout
7033
7034 \end_inset
7035
7036
7037 \end_layout
7038
7039 \end_inset
7040
7041
7042 \end_layout
7043
7044 \end_inset
7045 </cell>
7046 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7047 \begin_inset Text
7048
7049 \begin_layout Plain Layout
7050
7051 \end_layout
7052
7053 \end_inset
7054 </cell>
7055 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7056 \begin_inset Text
7057
7058 \begin_layout Plain Layout
7059
7060 \end_layout
7061
7062 \end_inset
7063 </cell>
7064 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7065 \begin_inset Text
7066
7067 \begin_layout Plain Layout
7068
7069 \end_layout
7070
7071 \end_inset
7072 </cell>
7073 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
7074 \begin_inset Text
7075
7076 \begin_layout Plain Layout
7077
7078 \end_layout
7079
7080 \end_inset
7081 </cell>
7082 </row>
7083 <row>
7084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7085 \begin_inset Text
7086
7087 \begin_layout Plain Layout
7088 1
7089 \end_layout
7090
7091 \end_inset
7092 </cell>
7093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7094 \begin_inset Text
7095
7096 \begin_layout Plain Layout
7097 2
7098 \end_layout
7099
7100 \end_inset
7101 </cell>
7102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7103 \begin_inset Text
7104
7105 \begin_layout Plain Layout
7106 3
7107 \end_layout
7108
7109 \end_inset
7110 </cell>
7111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7112 \begin_inset Text
7113
7114 \begin_layout Plain Layout
7115 4
7116 \end_layout
7117
7118 \end_inset
7119 </cell>
7120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7121 \begin_inset Text
7122
7123 \begin_layout Plain Layout
7124 5
7125 \end_layout
7126
7127 \end_inset
7128 </cell>
7129 </row>
7130 <row>
7131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7132 \begin_inset Text
7133
7134 \begin_layout Plain Layout
7135 asd
7136 \end_layout
7137
7138 \end_inset
7139 </cell>
7140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7141 \begin_inset Text
7142
7143 \begin_layout Plain Layout
7144 s
7145 \end_layout
7146
7147 \end_inset
7148 </cell>
7149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7150 \begin_inset Text
7151
7152 \begin_layout Plain Layout
7153 s
7154 \end_layout
7155
7156 \end_inset
7157 </cell>
7158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7159 \begin_inset Text
7160
7161 \begin_layout Plain Layout
7162 s
7163 \end_layout
7164
7165 \end_inset
7166 </cell>
7167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7168 \begin_inset Text
7169
7170 \begin_layout Plain Layout
7171 asd
7172 \end_layout
7173
7174 \end_inset
7175 </cell>
7176 </row>
7177 <row>
7178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7179 \begin_inset Text
7180
7181 \begin_layout Plain Layout
7182 asd
7183 \end_layout
7184
7185 \end_inset
7186 </cell>
7187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7188 \begin_inset Text
7189
7190 \begin_layout Plain Layout
7191 s
7192 \end_layout
7193
7194 \end_inset
7195 </cell>
7196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7197 \begin_inset Text
7198
7199 \begin_layout Plain Layout
7200 s
7201 \end_layout
7202
7203 \end_inset
7204 </cell>
7205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7206 \begin_inset Text
7207
7208 \begin_layout Plain Layout
7209 s
7210 \end_layout
7211
7212 \end_inset
7213 </cell>
7214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7215 \begin_inset Text
7216
7217 \begin_layout Plain Layout
7218 asd
7219 \end_layout
7220
7221 \end_inset
7222 </cell>
7223 </row>
7224 <row>
7225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7226 \begin_inset Text
7227
7228 \begin_layout Plain Layout
7229 asd
7230 \end_layout
7231
7232 \end_inset
7233 </cell>
7234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7235 \begin_inset Text
7236
7237 \begin_layout Plain Layout
7238 s
7239 \end_layout
7240
7241 \end_inset
7242 </cell>
7243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7244 \begin_inset Text
7245
7246 \begin_layout Plain Layout
7247 s
7248 \end_layout
7249
7250 \end_inset
7251 </cell>
7252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7253 \begin_inset Text
7254
7255 \begin_layout Plain Layout
7256 s
7257 \end_layout
7258
7259 \end_inset
7260 </cell>
7261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7262 \begin_inset Text
7263
7264 \begin_layout Plain Layout
7265 asd
7266 \end_layout
7267
7268 \end_inset
7269 </cell>
7270 </row>
7271 <row>
7272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7273 \begin_inset Text
7274
7275 \begin_layout Plain Layout
7276 asd
7277 \end_layout
7278
7279 \end_inset
7280 </cell>
7281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7282 \begin_inset Text
7283
7284 \begin_layout Plain Layout
7285 sad
7286 \end_layout
7287
7288 \end_inset
7289 </cell>
7290 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7291 \begin_inset Text
7292
7293 \begin_layout Plain Layout
7294 asd
7295 \end_layout
7296
7297 \end_inset
7298 </cell>
7299 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7300 \begin_inset Text
7301
7302 \begin_layout Plain Layout
7303 asd
7304 \end_layout
7305
7306 \end_inset
7307 </cell>
7308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7309 \begin_inset Text
7310
7311 \begin_layout Plain Layout
7312 asd
7313 \end_layout
7314
7315 \end_inset
7316 </cell>
7317 </row>
7318 </lyxtabular>
7319
7320 \end_inset
7321
7322
7323 \end_layout
7324
7325 \begin_layout Standard
7326 \begin_inset ERT
7327 status collapsed
7328
7329 \begin_layout Plain Layout
7330
7331
7332 \backslash
7333 setlength{
7334 \backslash
7335 LTcapwidth}{5cm}
7336 \end_layout
7337
7338 \end_inset
7339
7340
7341 \begin_inset Tabular
7342 <lyxtabular version="3" rows="6" columns="5">
7343 <features rotate="0" islongtable="true" longtabularalignment="center">
7344 <column alignment="center" valignment="top" width="0">
7345 <column alignment="center" valignment="top" width="0">
7346 <column alignment="center" valignment="top" width="0">
7347 <column alignment="center" valignment="top" width="0">
7348 <column alignment="center" valignment="top" width="0">
7349 <row endfirsthead="true" caption="true">
7350 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
7351 \begin_inset Text
7352
7353 \begin_layout Plain Layout
7354 \begin_inset Caption Standard
7355
7356 \begin_layout Plain Layout
7357 long titre complet avec la largeur réglée à 5
7358 \begin_inset space \thinspace{}
7359 \end_inset
7360
7361 cm long titre complet avec la largeur réglée à 5
7362 \begin_inset space \thinspace{}
7363 \end_inset
7364
7365 cm long titre complet avec la largeur réglée à 5
7366 \begin_inset space \thinspace{}
7367 \end_inset
7368
7369 cm
7370 \begin_inset Argument 1
7371 status open
7372
7373 \begin_layout Plain Layout
7374 Légende avec largeur à
7375 \begin_inset space \thinspace{}
7376 \end_inset
7377
7378 =
7379 \begin_inset space \thinspace{}
7380 \end_inset
7381
7382 5
7383 \begin_inset space \thinspace{}
7384 \end_inset
7385
7386 cm
7387 \end_layout
7388
7389 \end_inset
7390
7391
7392 \end_layout
7393
7394 \end_inset
7395
7396
7397 \end_layout
7398
7399 \end_inset
7400 </cell>
7401 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7402 \begin_inset Text
7403
7404 \begin_layout Plain Layout
7405
7406 \end_layout
7407
7408 \end_inset
7409 </cell>
7410 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7411 \begin_inset Text
7412
7413 \begin_layout Plain Layout
7414
7415 \end_layout
7416
7417 \end_inset
7418 </cell>
7419 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7420 \begin_inset Text
7421
7422 \begin_layout Plain Layout
7423
7424 \end_layout
7425
7426 \end_inset
7427 </cell>
7428 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
7429 \begin_inset Text
7430
7431 \begin_layout Plain Layout
7432
7433 \end_layout
7434
7435 \end_inset
7436 </cell>
7437 </row>
7438 <row>
7439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7440 \begin_inset Text
7441
7442 \begin_layout Plain Layout
7443 1
7444 \end_layout
7445
7446 \end_inset
7447 </cell>
7448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7449 \begin_inset Text
7450
7451 \begin_layout Plain Layout
7452 2
7453 \end_layout
7454
7455 \end_inset
7456 </cell>
7457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7458 \begin_inset Text
7459
7460 \begin_layout Plain Layout
7461 3
7462 \end_layout
7463
7464 \end_inset
7465 </cell>
7466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7467 \begin_inset Text
7468
7469 \begin_layout Plain Layout
7470 4
7471 \end_layout
7472
7473 \end_inset
7474 </cell>
7475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7476 \begin_inset Text
7477
7478 \begin_layout Plain Layout
7479 5
7480 \end_layout
7481
7482 \end_inset
7483 </cell>
7484 </row>
7485 <row>
7486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7487 \begin_inset Text
7488
7489 \begin_layout Plain Layout
7490 asd
7491 \end_layout
7492
7493 \end_inset
7494 </cell>
7495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7496 \begin_inset Text
7497
7498 \begin_layout Plain Layout
7499 s
7500 \end_layout
7501
7502 \end_inset
7503 </cell>
7504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7505 \begin_inset Text
7506
7507 \begin_layout Plain Layout
7508 s
7509 \end_layout
7510
7511 \end_inset
7512 </cell>
7513 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7514 \begin_inset Text
7515
7516 \begin_layout Plain Layout
7517 s
7518 \end_layout
7519
7520 \end_inset
7521 </cell>
7522 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7523 \begin_inset Text
7524
7525 \begin_layout Plain Layout
7526 asd
7527 \end_layout
7528
7529 \end_inset
7530 </cell>
7531 </row>
7532 <row>
7533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7534 \begin_inset Text
7535
7536 \begin_layout Plain Layout
7537 asd
7538 \end_layout
7539
7540 \end_inset
7541 </cell>
7542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7543 \begin_inset Text
7544
7545 \begin_layout Plain Layout
7546 s
7547 \end_layout
7548
7549 \end_inset
7550 </cell>
7551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7552 \begin_inset Text
7553
7554 \begin_layout Plain Layout
7555 s
7556 \end_layout
7557
7558 \end_inset
7559 </cell>
7560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7561 \begin_inset Text
7562
7563 \begin_layout Plain Layout
7564 s
7565 \end_layout
7566
7567 \end_inset
7568 </cell>
7569 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7570 \begin_inset Text
7571
7572 \begin_layout Plain Layout
7573 asd
7574 \end_layout
7575
7576 \end_inset
7577 </cell>
7578 </row>
7579 <row>
7580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7581 \begin_inset Text
7582
7583 \begin_layout Plain Layout
7584 asd
7585 \end_layout
7586
7587 \end_inset
7588 </cell>
7589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7590 \begin_inset Text
7591
7592 \begin_layout Plain Layout
7593 s
7594 \end_layout
7595
7596 \end_inset
7597 </cell>
7598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7599 \begin_inset Text
7600
7601 \begin_layout Plain Layout
7602 s
7603 \end_layout
7604
7605 \end_inset
7606 </cell>
7607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7608 \begin_inset Text
7609
7610 \begin_layout Plain Layout
7611 s
7612 \end_layout
7613
7614 \end_inset
7615 </cell>
7616 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7617 \begin_inset Text
7618
7619 \begin_layout Plain Layout
7620 asd
7621 \end_layout
7622
7623 \end_inset
7624 </cell>
7625 </row>
7626 <row>
7627 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7628 \begin_inset Text
7629
7630 \begin_layout Plain Layout
7631 asd
7632 \end_layout
7633
7634 \end_inset
7635 </cell>
7636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7637 \begin_inset Text
7638
7639 \begin_layout Plain Layout
7640 sad
7641 \end_layout
7642
7643 \end_inset
7644 </cell>
7645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7646 \begin_inset Text
7647
7648 \begin_layout Plain Layout
7649 asd
7650 \end_layout
7651
7652 \end_inset
7653 </cell>
7654 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7655 \begin_inset Text
7656
7657 \begin_layout Plain Layout
7658 asd
7659 \end_layout
7660
7661 \end_inset
7662 </cell>
7663 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7664 \begin_inset Text
7665
7666 \begin_layout Plain Layout
7667 asd
7668 \end_layout
7669
7670 \end_inset
7671 </cell>
7672 </row>
7673 </lyxtabular>
7674
7675 \end_inset
7676
7677
7678 \end_layout
7679
7680 \begin_layout Standard
7681 \begin_inset ERT
7682 status collapsed
7683
7684 \begin_layout Plain Layout
7685
7686
7687 \backslash
7688 setlength{
7689 \backslash
7690 LTcapwidth}{4in}
7691 \end_layout
7692
7693 \end_inset
7694
7695
7696 \end_layout
7697
7698 \begin_layout Standard
7699 \begin_inset Note Greyedout
7700 status open
7701
7702 \begin_layout Plain Layout
7703
7704 \series bold
7705 Note:
7706 \series default
7707  Quand on utilise la paquetage LaTeX 
7708 \series bold
7709 caption
7710 \series default
7711
7712 \begin_inset Index idx
7713 status collapsed
7714
7715 \begin_layout Plain Layout
7716 Paquetages LaTeX ! caption
7717 \end_layout
7718
7719 \end_inset
7720
7721  , comme c'est les cas dans ce document, la légende prend toute la largeur
7722  de la page quand on utilise la largeur implicite de 4
7723 \begin_inset space \thinspace{}
7724 \end_inset
7725
7726 in pour 
7727 \series bold
7728
7729 \backslash
7730 LTcapwidth
7731 \series default
7732 .
7733  Pour avoir dans ce cas une légende qui fasse exactement 4
7734 \begin_inset space \thinspace{}
7735 \end_inset
7736
7737 in de large, vous pouvez soit prendre une valeur très légèrement différente,
7738  comme par exemple 3.99
7739 \begin_inset space \thinspace{}
7740 \end_inset
7741
7742 in, soit utiliser la commande LaTeX 
7743 \series bold
7744
7745 \backslash
7746 captionsetup{width=valeur}
7747 \series default
7748  qui est disponible dans le paquetage 
7749 \series bold
7750 caption
7751 \series default
7752 .
7753 \end_layout
7754
7755 \end_inset
7756
7757
7758 \end_layout
7759
7760 \begin_layout Subsubsection
7761 Des légendes différentes sur chaque page d'un tableau
7762 \begin_inset Argument 1
7763 status collapsed
7764
7765 \begin_layout Plain Layout
7766 Légendes différentes
7767 \end_layout
7768
7769 \end_inset
7770
7771
7772 \begin_inset Index idx
7773 status collapsed
7774
7775 \begin_layout Plain Layout
7776 Tableaux longs ! Legendes@Légendes différentes par page
7777 \end_layout
7778
7779 \end_inset
7780
7781
7782 \end_layout
7783
7784 \begin_layout Standard
7785 Quand la légende du tableau pour les pages suivantes doit être différente
7786  de celle de la première page, insérez une légende avec la commande suivante
7787  en code TeX :
7788 \end_layout
7789
7790 \begin_layout Standard
7791
7792 \series bold
7793
7794 \backslash
7795 caption*{caption text}
7796 \backslash
7797
7798 \backslash
7799 %
7800 \end_layout
7801
7802 \begin_layout Standard
7803 dans une ligne de légende fictive qui sera marquée comme une entête.
7804  Le tableau
7805 \begin_inset space ~
7806 \end_inset
7807
7808
7809 \begin_inset CommandInset ref
7810 LatexCommand ref
7811 reference "tab:Légendes-tableau-différentes"
7812
7813 \end_inset
7814
7815  est un exemple de tableau long avec des légendes différentes et où la seconde
7816  légende ne contient pas le numéro du tableau.
7817 \end_layout
7818
7819 \begin_layout Standard
7820 \align center
7821 \begin_inset Tabular
7822 <lyxtabular version="3" rows="59" columns="3">
7823 <features rotate="0" islongtable="true" lastFootEmpty="true" longtabularalignment="center">
7824 <column alignment="left" valignment="top" width="0cm">
7825 <column alignment="left" valignment="top" width="0pt">
7826 <column alignment="center" valignment="top" width="0pt">
7827 <row endfirsthead="true" caption="true">
7828 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
7829 \begin_inset Text
7830
7831 \begin_layout Plain Layout
7832 \begin_inset Caption Standard
7833
7834 \begin_layout Plain Layout
7835 Exemple d'annuaire téléphonique
7836 \begin_inset CommandInset label
7837 LatexCommand label
7838 name "tab:Légendes-tableau-différentes"
7839
7840 \end_inset
7841
7842
7843 \begin_inset Argument 1
7844 status collapsed
7845
7846 \begin_layout Plain Layout
7847 Exemple Annuaire 
7848 \end_layout
7849
7850 \end_inset
7851
7852
7853 \end_layout
7854
7855 \end_inset
7856
7857
7858 \end_layout
7859
7860 \end_inset
7861 </cell>
7862 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7863 \begin_inset Text
7864
7865 \begin_layout Plain Layout
7866
7867 \end_layout
7868
7869 \end_inset
7870 </cell>
7871 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7872 \begin_inset Text
7873
7874 \begin_layout Plain Layout
7875
7876 \end_layout
7877
7878 \end_inset
7879 </cell>
7880 </row>
7881 <row endfirsthead="true">
7882 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7883 \begin_inset Text
7884
7885 \begin_layout Plain Layout
7886
7887 \series bold
7888 Exemple d'annuaire téléphonique (ne pas faire attention aux noms)
7889 \end_layout
7890
7891 \end_inset
7892 </cell>
7893 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7894 \begin_inset Text
7895
7896 \begin_layout Plain Layout
7897
7898 \end_layout
7899
7900 \end_inset
7901 </cell>
7902 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7903 \begin_inset Text
7904
7905 \begin_layout Plain Layout
7906
7907 \end_layout
7908
7909 \end_inset
7910 </cell>
7911 </row>
7912 <row endfirsthead="true">
7913 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7914 \begin_inset Text
7915
7916 \begin_layout Plain Layout
7917
7918 \series bold
7919 NOM
7920 \end_layout
7921
7922 \end_inset
7923 </cell>
7924 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7925 \begin_inset Text
7926
7927 \begin_layout Plain Layout
7928
7929 \end_layout
7930
7931 \end_inset
7932 </cell>
7933 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7934 \begin_inset Text
7935
7936 \begin_layout Plain Layout
7937
7938 \series bold
7939 TÉL.
7940 \end_layout
7941
7942 \end_inset
7943 </cell>
7944 </row>
7945 <row endhead="true">
7946 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Plain Layout
7950 \begin_inset ERT
7951 status open
7952
7953 \begin_layout Plain Layout
7954
7955
7956 \backslash
7957 caption*{Suite de l'exemple d'annuaire téléphonique}
7958 \backslash
7959
7960 \backslash
7961 %
7962 \end_layout
7963
7964 \end_inset
7965
7966
7967 \end_layout
7968
7969 \end_inset
7970 </cell>
7971 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7972 \begin_inset Text
7973
7974 \begin_layout Plain Layout
7975
7976 \end_layout
7977
7978 \end_inset
7979 </cell>
7980 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7981 \begin_inset Text
7982
7983 \begin_layout Plain Layout
7984
7985 \end_layout
7986
7987 \end_inset
7988 </cell>
7989 </row>
7990 <row endhead="true">
7991 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7992 \begin_inset Text
7993
7994 \begin_layout Plain Layout
7995
7996 \series bold
7997 Exemple d'annuaire téléphonique
7998 \end_layout
7999
8000 \end_inset
8001 </cell>
8002 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8003 \begin_inset Text
8004
8005 \begin_layout Plain Layout
8006
8007 \end_layout
8008
8009 \end_inset
8010 </cell>
8011 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8012 \begin_inset Text
8013
8014 \begin_layout Plain Layout
8015
8016 \end_layout
8017
8018 \end_inset
8019 </cell>
8020 </row>
8021 <row endhead="true">
8022 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8023 \begin_inset Text
8024
8025 \begin_layout Plain Layout
8026
8027 \series bold
8028 NOM
8029 \end_layout
8030
8031 \end_inset
8032 </cell>
8033 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8034 \begin_inset Text
8035
8036 \begin_layout Plain Layout
8037
8038 \end_layout
8039
8040 \end_inset
8041 </cell>
8042 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8043 \begin_inset Text
8044
8045 \begin_layout Plain Layout
8046
8047 \series bold
8048 TÉL.
8049 \end_layout
8050
8051 \end_inset
8052 </cell>
8053 </row>
8054 <row endfoot="true">
8055 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
8056 \begin_inset Text
8057
8058 \begin_layout Plain Layout
8059 suite page suivante\SpecialChar \ldots{}
8060
8061 \end_layout
8062
8063 \end_inset
8064 </cell>
8065 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8066 \begin_inset Text
8067
8068 \begin_layout Plain Layout
8069
8070 \end_layout
8071
8072 \end_inset
8073 </cell>
8074 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8075 \begin_inset Text
8076
8077 \begin_layout Plain Layout
8078
8079 \end_layout
8080
8081 \end_inset
8082 </cell>
8083 </row>
8084 <row>
8085 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8086 \begin_inset Text
8087
8088 \begin_layout Plain Layout
8089
8090 \series bold
8091 Annovi
8092 \end_layout
8093
8094 \end_inset
8095 </cell>
8096 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8097 \begin_inset Text
8098
8099 \begin_layout Plain Layout
8100 Silvia
8101 \end_layout
8102
8103 \end_inset
8104 </cell>
8105 <cell alignment="right" valignment="top" rightline="true" usebox="none">
8106 \begin_inset Text
8107
8108 \begin_layout Plain Layout
8109 111
8110 \end_layout
8111
8112 \end_inset
8113 </cell>
8114 </row>
8115 <row>
8116 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8117 \begin_inset Text
8118
8119 \begin_layout Plain Layout
8120
8121 \series bold
8122 Bertoli
8123 \end_layout
8124
8125 \end_inset
8126 </cell>
8127 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8128 \begin_inset Text
8129
8130 \begin_layout Plain Layout
8131 Stefano
8132 \end_layout
8133
8134 \end_inset
8135 </cell>
8136 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8137 \begin_inset Text
8138
8139 \begin_layout Plain Layout
8140 111
8141 \end_layout
8142
8143 \end_inset
8144 </cell>
8145 </row>
8146 <row>
8147 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8148 \begin_inset Text
8149
8150 \begin_layout Plain Layout
8151
8152 \series bold
8153 Bozzi
8154 \end_layout
8155
8156 \end_inset
8157 </cell>
8158 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8159 \begin_inset Text
8160
8161 \begin_layout Plain Layout
8162 Walter
8163 \end_layout
8164
8165 \end_inset
8166 </cell>
8167 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8168 \begin_inset Text
8169
8170 \begin_layout Plain Layout
8171 111
8172 \end_layout
8173
8174 \end_inset
8175 </cell>
8176 </row>
8177 <row>
8178 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8179 \begin_inset Text
8180
8181 \begin_layout Plain Layout
8182
8183 \series bold
8184 Cachia
8185 \end_layout
8186
8187 \end_inset
8188 </cell>
8189 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8190 \begin_inset Text
8191
8192 \begin_layout Plain Layout
8193 Maria
8194 \end_layout
8195
8196 \end_inset
8197 </cell>
8198 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8199 \begin_inset Text
8200
8201 \begin_layout Plain Layout
8202 111
8203 \end_layout
8204
8205 \end_inset
8206 </cell>
8207 </row>
8208 <row>
8209 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8210 \begin_inset Text
8211
8212 \begin_layout Plain Layout
8213
8214 \series bold
8215 Cachia
8216 \end_layout
8217
8218 \end_inset
8219 </cell>
8220 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8221 \begin_inset Text
8222
8223 \begin_layout Plain Layout
8224 Maurizio
8225 \end_layout
8226
8227 \end_inset
8228 </cell>
8229 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8230 \begin_inset Text
8231
8232 \begin_layout Plain Layout
8233 111
8234 \end_layout
8235
8236 \end_inset
8237 </cell>
8238 </row>
8239 <row>
8240 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8241 \begin_inset Text
8242
8243 \begin_layout Plain Layout
8244
8245 \series bold
8246 Cinquemani
8247 \end_layout
8248
8249 \end_inset
8250 </cell>
8251 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8252 \begin_inset Text
8253
8254 \begin_layout Plain Layout
8255 Giusi
8256 \end_layout
8257
8258 \end_inset
8259 </cell>
8260 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8261 \begin_inset Text
8262
8263 \begin_layout Plain Layout
8264 111
8265 \end_layout
8266
8267 \end_inset
8268 </cell>
8269 </row>
8270 <row>
8271 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8272 \begin_inset Text
8273
8274 \begin_layout Plain Layout
8275
8276 \series bold
8277 Colin
8278 \end_layout
8279
8280 \end_inset
8281 </cell>
8282 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8283 \begin_inset Text
8284
8285 \begin_layout Plain Layout
8286 Bernard
8287 \end_layout
8288
8289 \end_inset
8290 </cell>
8291 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8292 \begin_inset Text
8293
8294 \begin_layout Plain Layout
8295 111
8296 \end_layout
8297
8298 \end_inset
8299 </cell>
8300 </row>
8301 <row>
8302 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8303 \begin_inset Text
8304
8305 \begin_layout Plain Layout
8306
8307 \series bold
8308 Concli
8309 \end_layout
8310
8311 \end_inset
8312 </cell>
8313 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8314 \begin_inset Text
8315
8316 \begin_layout Plain Layout
8317 Gianfranco
8318 \end_layout
8319
8320 \end_inset
8321 </cell>
8322 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8323 \begin_inset Text
8324
8325 \begin_layout Plain Layout
8326 111
8327 \end_layout
8328
8329 \end_inset
8330 </cell>
8331 </row>
8332 <row>
8333 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8334 \begin_inset Text
8335
8336 \begin_layout Plain Layout
8337
8338 \series bold
8339 Dal Bosco
8340 \end_layout
8341
8342 \end_inset
8343 </cell>
8344 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8345 \begin_inset Text
8346
8347 \begin_layout Plain Layout
8348 Carolina
8349 \end_layout
8350
8351 \end_inset
8352 </cell>
8353 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8354 \begin_inset Text
8355
8356 \begin_layout Plain Layout
8357 111
8358 \end_layout
8359
8360 \end_inset
8361 </cell>
8362 </row>
8363 <row>
8364 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8365 \begin_inset Text
8366
8367 \begin_layout Plain Layout
8368
8369 \series bold
8370 Dalpiaz
8371 \end_layout
8372
8373 \end_inset
8374 </cell>
8375 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8376 \begin_inset Text
8377
8378 \begin_layout Plain Layout
8379 Annamaria
8380 \end_layout
8381
8382 \end_inset
8383 </cell>
8384 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8385 \begin_inset Text
8386
8387 \begin_layout Plain Layout
8388 111
8389 \end_layout
8390
8391 \end_inset
8392 </cell>
8393 </row>
8394 <row>
8395 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8396 \begin_inset Text
8397
8398 \begin_layout Plain Layout
8399
8400 \series bold
8401 Feliciello
8402 \end_layout
8403
8404 \end_inset
8405 </cell>
8406 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8407 \begin_inset Text
8408
8409 \begin_layout Plain Layout
8410 Domenico
8411 \end_layout
8412
8413 \end_inset
8414 </cell>
8415 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8416 \begin_inset Text
8417
8418 \begin_layout Plain Layout
8419 111
8420 \end_layout
8421
8422 \end_inset
8423 </cell>
8424 </row>
8425 <row>
8426 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8427 \begin_inset Text
8428
8429 \begin_layout Plain Layout
8430
8431 \series bold
8432 Focarelli
8433 \end_layout
8434
8435 \end_inset
8436 </cell>
8437 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8438 \begin_inset Text
8439
8440 \begin_layout Plain Layout
8441 Paola
8442 \end_layout
8443
8444 \end_inset
8445 </cell>
8446 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Plain Layout
8450 111
8451 \end_layout
8452
8453 \end_inset
8454 </cell>
8455 </row>
8456 <row>
8457 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8458 \begin_inset Text
8459
8460 \begin_layout Plain Layout
8461
8462 \series bold
8463 Galletti
8464 \end_layout
8465
8466 \end_inset
8467 </cell>
8468 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8469 \begin_inset Text
8470
8471 \begin_layout Plain Layout
8472 Oreste
8473 \end_layout
8474
8475 \end_inset
8476 </cell>
8477 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8478 \begin_inset Text
8479
8480 \begin_layout Plain Layout
8481 111
8482 \end_layout
8483
8484 \end_inset
8485 </cell>
8486 </row>
8487 <row>
8488 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8489 \begin_inset Text
8490
8491 \begin_layout Plain Layout
8492
8493 \series bold
8494 Gasparini
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8500 \begin_inset Text
8501
8502 \begin_layout Plain Layout
8503 Franca
8504 \end_layout
8505
8506 \end_inset
8507 </cell>
8508 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8509 \begin_inset Text
8510
8511 \begin_layout Plain Layout
8512 111
8513 \end_layout
8514
8515 \end_inset
8516 </cell>
8517 </row>
8518 <row>
8519 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8520 \begin_inset Text
8521
8522 \begin_layout Plain Layout
8523
8524 \series bold
8525 Rizzardi
8526 \series default
8527
8528 \begin_inset Foot
8529 status open
8530
8531 \begin_layout Plain Layout
8532 Exemple de note de bas de page
8533 \end_layout
8534
8535 \end_inset
8536
8537
8538 \end_layout
8539
8540 \end_inset
8541 </cell>
8542 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8543 \begin_inset Text
8544
8545 \begin_layout Plain Layout
8546 Paola
8547 \end_layout
8548
8549 \end_inset
8550 </cell>
8551 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8552 \begin_inset Text
8553
8554 \begin_layout Plain Layout
8555 111
8556 \end_layout
8557
8558 \end_inset
8559 </cell>
8560 </row>
8561 <row>
8562 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8563 \begin_inset Text
8564
8565 \begin_layout Plain Layout
8566
8567 \series bold
8568 Lassini
8569 \end_layout
8570
8571 \end_inset
8572 </cell>
8573 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8574 \begin_inset Text
8575
8576 \begin_layout Plain Layout
8577 Giancarlo
8578 \end_layout
8579
8580 \end_inset
8581 </cell>
8582 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8583 \begin_inset Text
8584
8585 \begin_layout Plain Layout
8586 111
8587 \end_layout
8588
8589 \end_inset
8590 </cell>
8591 </row>
8592 <row>
8593 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8594 \begin_inset Text
8595
8596 \begin_layout Plain Layout
8597
8598 \series bold
8599 Malfatti
8600 \end_layout
8601
8602 \end_inset
8603 </cell>
8604 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8605 \begin_inset Text
8606
8607 \begin_layout Plain Layout
8608 Luciano
8609 \end_layout
8610
8611 \end_inset
8612 </cell>
8613 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8614 \begin_inset Text
8615
8616 \begin_layout Plain Layout
8617 111
8618 \end_layout
8619
8620 \end_inset
8621 </cell>
8622 </row>
8623 <row>
8624 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8625 \begin_inset Text
8626
8627 \begin_layout Plain Layout
8628
8629 \series bold
8630 Malfatti
8631 \end_layout
8632
8633 \end_inset
8634 </cell>
8635 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8636 \begin_inset Text
8637
8638 \begin_layout Plain Layout
8639 Valeriano
8640 \end_layout
8641
8642 \end_inset
8643 </cell>
8644 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8645 \begin_inset Text
8646
8647 \begin_layout Plain Layout
8648 111
8649 \end_layout
8650
8651 \end_inset
8652 </cell>
8653 </row>
8654 <row>
8655 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8656 \begin_inset Text
8657
8658 \begin_layout Plain Layout
8659
8660 \series bold
8661 Meneguzzo
8662 \end_layout
8663
8664 \end_inset
8665 </cell>
8666 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8667 \begin_inset Text
8668
8669 \begin_layout Plain Layout
8670 Roberto
8671 \end_layout
8672
8673 \end_inset
8674 </cell>
8675 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8676 \begin_inset Text
8677
8678 \begin_layout Plain Layout
8679 111
8680 \end_layout
8681
8682 \end_inset
8683 </cell>
8684 </row>
8685 <row>
8686 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8687 \begin_inset Text
8688
8689 \begin_layout Plain Layout
8690
8691 \series bold
8692 Mezzadra
8693 \end_layout
8694
8695 \end_inset
8696 </cell>
8697 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8698 \begin_inset Text
8699
8700 \begin_layout Plain Layout
8701 Roberto
8702 \end_layout
8703
8704 \end_inset
8705 </cell>
8706 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8707 \begin_inset Text
8708
8709 \begin_layout Plain Layout
8710 111
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 </row>
8716 <row>
8717 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8718 \begin_inset Text
8719
8720 \begin_layout Plain Layout
8721
8722 \series bold
8723 Pirpamer
8724 \end_layout
8725
8726 \end_inset
8727 </cell>
8728 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8729 \begin_inset Text
8730
8731 \begin_layout Plain Layout
8732 Erich
8733 \end_layout
8734
8735 \end_inset
8736 </cell>
8737 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8738 \begin_inset Text
8739
8740 \begin_layout Plain Layout
8741 111
8742 \end_layout
8743
8744 \end_inset
8745 </cell>
8746 </row>
8747 <row>
8748 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8749 \begin_inset Text
8750
8751 \begin_layout Plain Layout
8752
8753 \series bold
8754 Pochiesa
8755 \end_layout
8756
8757 \end_inset
8758 </cell>
8759 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8760 \begin_inset Text
8761
8762 \begin_layout Plain Layout
8763 Paolo
8764 \end_layout
8765
8766 \end_inset
8767 </cell>
8768 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8769 \begin_inset Text
8770
8771 \begin_layout Plain Layout
8772 111, 222
8773 \end_layout
8774
8775 \end_inset
8776 </cell>
8777 </row>
8778 <row>
8779 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8780 \begin_inset Text
8781
8782 \begin_layout Plain Layout
8783
8784 \series bold
8785 Radina
8786 \end_layout
8787
8788 \end_inset
8789 </cell>
8790 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8791 \begin_inset Text
8792
8793 \begin_layout Plain Layout
8794 Claudio
8795 \end_layout
8796
8797 \end_inset
8798 </cell>
8799 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8800 \begin_inset Text
8801
8802 \begin_layout Plain Layout
8803 111
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 </row>
8809 <row>
8810 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8811 \begin_inset Text
8812
8813 \begin_layout Plain Layout
8814
8815 \series bold
8816 Stuffer
8817 \end_layout
8818
8819 \end_inset
8820 </cell>
8821 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8822 \begin_inset Text
8823
8824 \begin_layout Plain Layout
8825 Oskar
8826 \end_layout
8827
8828 \end_inset
8829 </cell>
8830 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8831 \begin_inset Text
8832
8833 \begin_layout Plain Layout
8834 111
8835 \end_layout
8836
8837 \end_inset
8838 </cell>
8839 </row>
8840 <row>
8841 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8842 \begin_inset Text
8843
8844 \begin_layout Plain Layout
8845
8846 \series bold
8847 Tacchelli
8848 \end_layout
8849
8850 \end_inset
8851 </cell>
8852 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8853 \begin_inset Text
8854
8855 \begin_layout Plain Layout
8856 Ugo
8857 \end_layout
8858
8859 \end_inset
8860 </cell>
8861 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8862 \begin_inset Text
8863
8864 \begin_layout Plain Layout
8865 111
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 </row>
8871 <row>
8872 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8873 \begin_inset Text
8874
8875 \begin_layout Plain Layout
8876
8877 \series bold
8878 Tezzele
8879 \end_layout
8880
8881 \end_inset
8882 </cell>
8883 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8884 \begin_inset Text
8885
8886 \begin_layout Plain Layout
8887 Margit
8888 \end_layout
8889
8890 \end_inset
8891 </cell>
8892 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8893 \begin_inset Text
8894
8895 \begin_layout Plain Layout
8896 111
8897 \end_layout
8898
8899 \end_inset
8900 </cell>
8901 </row>
8902 <row>
8903 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8904 \begin_inset Text
8905
8906 \begin_layout Plain Layout
8907
8908 \series bold
8909 Unterkalmsteiner
8910 \end_layout
8911
8912 \end_inset
8913 </cell>
8914 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8915 \begin_inset Text
8916
8917 \begin_layout Plain Layout
8918 Frieda
8919 \end_layout
8920
8921 \end_inset
8922 </cell>
8923 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8924 \begin_inset Text
8925
8926 \begin_layout Plain Layout
8927 111
8928 \end_layout
8929
8930 \end_inset
8931 </cell>
8932 </row>
8933 <row>
8934 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8935 \begin_inset Text
8936
8937 \begin_layout Plain Layout
8938
8939 \series bold
8940 Vieider
8941 \end_layout
8942
8943 \end_inset
8944 </cell>
8945 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8946 \begin_inset Text
8947
8948 \begin_layout Plain Layout
8949 Hilde
8950 \end_layout
8951
8952 \end_inset
8953 </cell>
8954 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8955 \begin_inset Text
8956
8957 \begin_layout Plain Layout
8958 111
8959 \end_layout
8960
8961 \end_inset
8962 </cell>
8963 </row>
8964 <row>
8965 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8966 \begin_inset Text
8967
8968 \begin_layout Plain Layout
8969
8970 \series bold
8971 Vigna
8972 \end_layout
8973
8974 \end_inset
8975 </cell>
8976 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8977 \begin_inset Text
8978
8979 \begin_layout Plain Layout
8980 Jürgen
8981 \end_layout
8982
8983 \end_inset
8984 </cell>
8985 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8986 \begin_inset Text
8987
8988 \begin_layout Plain Layout
8989 111
8990 \end_layout
8991
8992 \end_inset
8993 </cell>
8994 </row>
8995 <row>
8996 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8997 \begin_inset Text
8998
8999 \begin_layout Plain Layout
9000
9001 \series bold
9002 Weber
9003 \end_layout
9004
9005 \end_inset
9006 </cell>
9007 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9008 \begin_inset Text
9009
9010 \begin_layout Plain Layout
9011 Maurizio
9012 \end_layout
9013
9014 \end_inset
9015 </cell>
9016 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9017 \begin_inset Text
9018
9019 \begin_layout Plain Layout
9020 111
9021 \end_layout
9022
9023 \end_inset
9024 </cell>
9025 </row>
9026 <row>
9027 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9028 \begin_inset Text
9029
9030 \begin_layout Plain Layout
9031
9032 \series bold
9033 Winkler
9034 \end_layout
9035
9036 \end_inset
9037 </cell>
9038 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9039 \begin_inset Text
9040
9041 \begin_layout Plain Layout
9042 Franz
9043 \end_layout
9044
9045 \end_inset
9046 </cell>
9047 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9048 \begin_inset Text
9049
9050 \begin_layout Plain Layout
9051 111
9052 \end_layout
9053
9054 \end_inset
9055 </cell>
9056 </row>
9057 <row>
9058 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9059 \begin_inset Text
9060
9061 \begin_layout Plain Layout
9062  
9063 \end_layout
9064
9065 \end_inset
9066 </cell>
9067 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
9068 \begin_inset Text
9069
9070 \begin_layout Plain Layout
9071
9072 \end_layout
9073
9074 \end_inset
9075 </cell>
9076 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9077 \begin_inset Text
9078
9079 \begin_layout Plain Layout
9080
9081 \end_layout
9082
9083 \end_inset
9084 </cell>
9085 </row>
9086 <row>
9087 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9088 \begin_inset Text
9089
9090 \begin_layout Plain Layout
9091
9092 \series bold
9093 Annovi
9094 \end_layout
9095
9096 \end_inset
9097 </cell>
9098 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9099 \begin_inset Text
9100
9101 \begin_layout Plain Layout
9102 Silvia
9103 \end_layout
9104
9105 \end_inset
9106 </cell>
9107 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9108 \begin_inset Text
9109
9110 \begin_layout Plain Layout
9111 555
9112 \end_layout
9113
9114 \end_inset
9115 </cell>
9116 </row>
9117 <row>
9118 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9119 \begin_inset Text
9120
9121 \begin_layout Plain Layout
9122
9123 \series bold
9124 Bertoli
9125 \end_layout
9126
9127 \end_inset
9128 </cell>
9129 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9130 \begin_inset Text
9131
9132 \begin_layout Plain Layout
9133 Stefano
9134 \end_layout
9135
9136 \end_inset
9137 </cell>
9138 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9139 \begin_inset Text
9140
9141 \begin_layout Plain Layout
9142 555
9143 \end_layout
9144
9145 \end_inset
9146 </cell>
9147 </row>
9148 <row>
9149 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9150 \begin_inset Text
9151
9152 \begin_layout Plain Layout
9153
9154 \series bold
9155 Bozzi
9156 \end_layout
9157
9158 \end_inset
9159 </cell>
9160 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9161 \begin_inset Text
9162
9163 \begin_layout Plain Layout
9164 Walter
9165 \end_layout
9166
9167 \end_inset
9168 </cell>
9169 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9170 \begin_inset Text
9171
9172 \begin_layout Plain Layout
9173 555
9174 \end_layout
9175
9176 \end_inset
9177 </cell>
9178 </row>
9179 <row>
9180 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Plain Layout
9184
9185 \series bold
9186 Cachia
9187 \end_layout
9188
9189 \end_inset
9190 </cell>
9191 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9192 \begin_inset Text
9193
9194 \begin_layout Plain Layout
9195 Maria
9196 \end_layout
9197
9198 \end_inset
9199 </cell>
9200 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9201 \begin_inset Text
9202
9203 \begin_layout Plain Layout
9204 555
9205 \end_layout
9206
9207 \end_inset
9208 </cell>
9209 </row>
9210 <row>
9211 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Plain Layout
9215
9216 \series bold
9217 Cachia
9218 \end_layout
9219
9220 \end_inset
9221 </cell>
9222 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9223 \begin_inset Text
9224
9225 \begin_layout Plain Layout
9226 Maurizio
9227 \end_layout
9228
9229 \end_inset
9230 </cell>
9231 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9232 \begin_inset Text
9233
9234 \begin_layout Plain Layout
9235 555
9236 \end_layout
9237
9238 \end_inset
9239 </cell>
9240 </row>
9241 <row>
9242 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Plain Layout
9246
9247 \series bold
9248 Cinquemani
9249 \end_layout
9250
9251 \end_inset
9252 </cell>
9253 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9254 \begin_inset Text
9255
9256 \begin_layout Plain Layout
9257 Giusi
9258 \end_layout
9259
9260 \end_inset
9261 </cell>
9262 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9263 \begin_inset Text
9264
9265 \begin_layout Plain Layout
9266 555
9267 \end_layout
9268
9269 \end_inset
9270 </cell>
9271 </row>
9272 <row>
9273 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9274 \begin_inset Text
9275
9276 \begin_layout Plain Layout
9277
9278 \series bold
9279 Colin
9280 \end_layout
9281
9282 \end_inset
9283 </cell>
9284 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9285 \begin_inset Text
9286
9287 \begin_layout Plain Layout
9288 Bernard
9289 \end_layout
9290
9291 \end_inset
9292 </cell>
9293 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9294 \begin_inset Text
9295
9296 \begin_layout Plain Layout
9297 555
9298 \end_layout
9299
9300 \end_inset
9301 </cell>
9302 </row>
9303 <row>
9304 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9305 \begin_inset Text
9306
9307 \begin_layout Plain Layout
9308
9309 \series bold
9310 Concli
9311 \end_layout
9312
9313 \end_inset
9314 </cell>
9315 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9316 \begin_inset Text
9317
9318 \begin_layout Plain Layout
9319 Gianfranco
9320 \end_layout
9321
9322 \end_inset
9323 </cell>
9324 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9325 \begin_inset Text
9326
9327 \begin_layout Plain Layout
9328 555
9329 \end_layout
9330
9331 \end_inset
9332 </cell>
9333 </row>
9334 <row>
9335 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9336 \begin_inset Text
9337
9338 \begin_layout Plain Layout
9339
9340 \series bold
9341 Dal Bosco
9342 \end_layout
9343
9344 \end_inset
9345 </cell>
9346 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9347 \begin_inset Text
9348
9349 \begin_layout Plain Layout
9350 Carolina
9351 \end_layout
9352
9353 \end_inset
9354 </cell>
9355 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9356 \begin_inset Text
9357
9358 \begin_layout Plain Layout
9359 555
9360 \end_layout
9361
9362 \end_inset
9363 </cell>
9364 </row>
9365 <row>
9366 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9367 \begin_inset Text
9368
9369 \begin_layout Plain Layout
9370
9371 \series bold
9372 Dalpiaz
9373 \end_layout
9374
9375 \end_inset
9376 </cell>
9377 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9378 \begin_inset Text
9379
9380 \begin_layout Plain Layout
9381 Annamaria
9382 \end_layout
9383
9384 \end_inset
9385 </cell>
9386 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9387 \begin_inset Text
9388
9389 \begin_layout Plain Layout
9390 555
9391 \end_layout
9392
9393 \end_inset
9394 </cell>
9395 </row>
9396 <row>
9397 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9398 \begin_inset Text
9399
9400 \begin_layout Plain Layout
9401
9402 \series bold
9403 Feliciello
9404 \end_layout
9405
9406 \end_inset
9407 </cell>
9408 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9409 \begin_inset Text
9410
9411 \begin_layout Plain Layout
9412 Domenico
9413 \end_layout
9414
9415 \end_inset
9416 </cell>
9417 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9418 \begin_inset Text
9419
9420 \begin_layout Plain Layout
9421 555
9422 \end_layout
9423
9424 \end_inset
9425 </cell>
9426 </row>
9427 <row>
9428 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9429 \begin_inset Text
9430
9431 \begin_layout Plain Layout
9432
9433 \series bold
9434 Focarelli
9435 \end_layout
9436
9437 \end_inset
9438 </cell>
9439 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9440 \begin_inset Text
9441
9442 \begin_layout Plain Layout
9443 Paola
9444 \end_layout
9445
9446 \end_inset
9447 </cell>
9448 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9449 \begin_inset Text
9450
9451 \begin_layout Plain Layout
9452 555
9453 \end_layout
9454
9455 \end_inset
9456 </cell>
9457 </row>
9458 <row>
9459 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9460 \begin_inset Text
9461
9462 \begin_layout Plain Layout
9463
9464 \series bold
9465 Galletti
9466 \end_layout
9467
9468 \end_inset
9469 </cell>
9470 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9471 \begin_inset Text
9472
9473 \begin_layout Plain Layout
9474 Oreste
9475 \end_layout
9476
9477 \end_inset
9478 </cell>
9479 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9480 \begin_inset Text
9481
9482 \begin_layout Plain Layout
9483 555
9484 \end_layout
9485
9486 \end_inset
9487 </cell>
9488 </row>
9489 <row>
9490 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9491 \begin_inset Text
9492
9493 \begin_layout Plain Layout
9494
9495 \series bold
9496 Gasparini
9497 \end_layout
9498
9499 \end_inset
9500 </cell>
9501 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9502 \begin_inset Text
9503
9504 \begin_layout Plain Layout
9505 Franca
9506 \end_layout
9507
9508 \end_inset
9509 </cell>
9510 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9511 \begin_inset Text
9512
9513 \begin_layout Plain Layout
9514 555
9515 \end_layout
9516
9517 \end_inset
9518 </cell>
9519 </row>
9520 <row>
9521 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9522 \begin_inset Text
9523
9524 \begin_layout Plain Layout
9525
9526 \series bold
9527 Rizzardi
9528 \end_layout
9529
9530 \end_inset
9531 </cell>
9532 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9533 \begin_inset Text
9534
9535 \begin_layout Plain Layout
9536 Paola
9537 \end_layout
9538
9539 \end_inset
9540 </cell>
9541 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9542 \begin_inset Text
9543
9544 \begin_layout Plain Layout
9545 555
9546 \end_layout
9547
9548 \end_inset
9549 </cell>
9550 </row>
9551 <row>
9552 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9553 \begin_inset Text
9554
9555 \begin_layout Plain Layout
9556
9557 \series bold
9558 Lassini
9559 \end_layout
9560
9561 \end_inset
9562 </cell>
9563 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9564 \begin_inset Text
9565
9566 \begin_layout Plain Layout
9567 Giancarlo
9568 \end_layout
9569
9570 \end_inset
9571 </cell>
9572 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9573 \begin_inset Text
9574
9575 \begin_layout Plain Layout
9576 555
9577 \end_layout
9578
9579 \end_inset
9580 </cell>
9581 </row>
9582 <row>
9583 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9584 \begin_inset Text
9585
9586 \begin_layout Plain Layout
9587
9588 \series bold
9589 Malfatti
9590 \end_layout
9591
9592 \end_inset
9593 </cell>
9594 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9595 \begin_inset Text
9596
9597 \begin_layout Plain Layout
9598 Luciano
9599 \end_layout
9600
9601 \end_inset
9602 </cell>
9603 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9604 \begin_inset Text
9605
9606 \begin_layout Plain Layout
9607 555
9608 \end_layout
9609
9610 \end_inset
9611 </cell>
9612 </row>
9613 <row>
9614 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9615 \begin_inset Text
9616
9617 \begin_layout Plain Layout
9618
9619 \series bold
9620 Malfatti
9621 \end_layout
9622
9623 \end_inset
9624 </cell>
9625 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9626 \begin_inset Text
9627
9628 \begin_layout Plain Layout
9629 Valeriano
9630 \end_layout
9631
9632 \end_inset
9633 </cell>
9634 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9635 \begin_inset Text
9636
9637 \begin_layout Plain Layout
9638 555
9639 \end_layout
9640
9641 \end_inset
9642 </cell>
9643 </row>
9644 <row>
9645 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9646 \begin_inset Text
9647
9648 \begin_layout Plain Layout
9649
9650 \series bold
9651 Meneguzzo
9652 \end_layout
9653
9654 \end_inset
9655 </cell>
9656 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9657 \begin_inset Text
9658
9659 \begin_layout Plain Layout
9660 Roberto
9661 \end_layout
9662
9663 \end_inset
9664 </cell>
9665 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9666 \begin_inset Text
9667
9668 \begin_layout Plain Layout
9669 555
9670 \end_layout
9671
9672 \end_inset
9673 </cell>
9674 </row>
9675 <row>
9676 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
9677 \begin_inset Text
9678
9679 \begin_layout Plain Layout
9680
9681 \series bold
9682 Mezzadra
9683 \end_layout
9684
9685 \end_inset
9686 </cell>
9687 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9688 \begin_inset Text
9689
9690 \begin_layout Plain Layout
9691 Roberto
9692 \end_layout
9693
9694 \end_inset
9695 </cell>
9696 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9697 \begin_inset Text
9698
9699 \begin_layout Plain Layout
9700 555
9701 \end_layout
9702
9703 \end_inset
9704 </cell>
9705 </row>
9706 </lyxtabular>
9707
9708 \end_inset
9709
9710
9711 \end_layout
9712
9713 \begin_layout Section
9714 Questions particulières concernant les tableaux longs
9715 \begin_inset Argument 1
9716 status collapsed
9717
9718 \begin_layout Plain Layout
9719 Questions sur les tableaux longs
9720 \end_layout
9721
9722 \end_inset
9723
9724
9725 \begin_inset CommandInset label
9726 LatexCommand label
9727 name "sec:Questions-sur-tableaux-longs"
9728
9729 \end_inset
9730
9731
9732 \end_layout
9733
9734 \begin_layout Subsection
9735 Calculs des pages des tableaux longs
9736 \begin_inset Index idx
9737 status collapsed
9738
9739 \begin_layout Plain Layout
9740 Tableaux longs ! Calculs
9741 \end_layout
9742
9743 \end_inset
9744
9745
9746 \end_layout
9747
9748 \begin_layout Standard
9749 LaTeX calcule la hauteur de chaque page de tableau et leurs sauts de page
9750  en utilisant des blocs (chunks).
9751  Ces blocs sont des portions de tableau qui tiennent en une fois dans la
9752  mémoire de LaTeX.
9753  La valeur implicite est fixée pour des raisons historiques à seulement
9754  20 lignes de tableau.
9755  Si vous utilisez des tableaux longs couvrant de nombreuses pages, ceci
9756  peut ralentir la création de votre document.
9757  Vous pouvez sans risque augmenter la taille des blocs pour atteindre des
9758  valeurs de 100 ou de 1000 en ajoutant une ligne comme celle-ci dans le
9759  préambule de votre document :
9760 \end_layout
9761
9762 \begin_layout Standard
9763
9764 \series bold
9765
9766 \backslash
9767 setcounter{LTchunksize}{100}
9768 \end_layout
9769
9770 \begin_layout Subsection
9771 Les flottants et les tableaux longs
9772 \begin_inset Index idx
9773 status collapsed
9774
9775 \begin_layout Plain Layout
9776 Tableaux longs ! Flottants
9777 \end_layout
9778
9779 \end_inset
9780
9781
9782 \end_layout
9783
9784 \begin_layout Standard
9785 Il peut y avoir des problèmes quand un flottant apparaît sur la page où
9786  commence un tableau long.
9787  Pour éviter une telle situation, insérez un saut de page (menu 
9788 \family sans
9789 Insertion\SpecialChar \menuseparator
9790 Typographie
9791 \begin_inset space ~
9792 \end_inset
9793
9794 spéciale\SpecialChar \menuseparator
9795 Saut de page (vide le tampon)
9796 \family default
9797
9798 \begin_inset space \thinspace{}
9799 \end_inset
9800
9801 ) juste avant votre tableau long.
9802 \end_layout
9803
9804 \begin_layout Subsection
9805 Sauts de pages forcés
9806 \begin_inset Index idx
9807 status collapsed
9808
9809 \begin_layout Plain Layout
9810 Tableaux longs ! Sauts de pages forcés
9811 \end_layout
9812
9813 \end_inset
9814
9815
9816 \end_layout
9817
9818 \begin_layout Standard
9819 Implicitement les tableaux ne peuvent être coupés qu'entre deux lignes.
9820  Si vous avez une cellule avec plusieurs lignes et que vous voulez avoir
9821  un saut de page à l'intérieur de cette cellule, insérez la commande LaTeX
9822  de saut de ligne 
9823 \begin_inset Quotes eld
9824 \end_inset
9825
9826
9827 \backslash
9828
9829 \backslash
9830
9831 \begin_inset Quotes erd
9832 \end_inset
9833
9834  en code TeX à l'endroit de la cellule où vous voulez qu'elle soit coupée.
9835  Avant la commande 
9836 \begin_inset Quotes eld
9837 \end_inset
9838
9839
9840 \backslash
9841
9842 \backslash
9843
9844 \begin_inset Quotes erd
9845 \end_inset
9846
9847 , vous devez insérer en code TeX, autant de caractères 
9848 \begin_inset Quotes eld
9849 \end_inset
9850
9851 &
9852 \begin_inset Quotes erd
9853 \end_inset
9854
9855  qu'il y a de colonnes après la cellule concernée.
9856  Le caractère 
9857 \begin_inset Quotes eld
9858 \end_inset
9859
9860 &
9861 \begin_inset Quotes erd
9862 \end_inset
9863
9864  sert à séparer les colonnes d'un tableau.
9865  Écrivez en code-TeX, après chaque 
9866 \begin_inset Quotes eld
9867 \end_inset
9868
9869 &
9870 \begin_inset Quotes erd
9871 \end_inset
9872
9873  le contenu des cellules correspondantes et en même temps supprimez le contenu
9874  de ces cellules dans le texte normal.
9875  
9876 \begin_inset Newline newline
9877 \end_inset
9878
9879 Après la commande 
9880 \backslash
9881
9882 \backslash
9883 , insérez autant de caractères 
9884 \begin_inset Quotes eld
9885 \end_inset
9886
9887 &
9888 \begin_inset Quotes erd
9889 \end_inset
9890
9891  qu'il y a de colonnes avant la colonne traitée.
9892  Dans le tableau
9893 \begin_inset space ~
9894 \end_inset
9895
9896
9897 \begin_inset CommandInset ref
9898 LatexCommand ref
9899 reference "tab:Tableau-saut-de-page"
9900
9901 \end_inset
9902
9903  la cellule qui doit être coupée est dans la deuxième colonne et elle est
9904  suivie par une autre colonne.
9905  La commande suivante a donc été insérée en code TeX dans la cellule après
9906  le mot 
9907 \begin_inset Quotes eld
9908 \end_inset
9909
9910
9911 \emph on
9912 Castelchiodato,
9913 \emph default
9914
9915 \begin_inset Quotes erd
9916 \end_inset
9917
9918 :
9919 \end_layout
9920
9921 \begin_layout Standard
9922
9923 \series bold
9924 & 111
9925 \backslash
9926
9927 \backslash
9928  
9929 \backslash
9930 newpage
9931 \begin_inset Newline newline
9932 \end_inset
9933
9934 &
9935 \end_layout
9936
9937 \begin_layout Standard
9938 Le 
9939 \begin_inset Quotes eld
9940 \end_inset
9941
9942 111
9943 \begin_inset Quotes erd
9944 \end_inset
9945
9946  dans la troisième colonne de la ligne a été supprimé.
9947  
9948 \series bold
9949
9950 \backslash
9951 newpage
9952 \series default
9953  est nécessaire seulement quand un saut de page doit impérativement avoir
9954  lieu à cet endroit, sinon on n'a qu'une possibilité de saut.
9955  Si votre ligne de pied de tableau n'a pas de bordure supérieure pour une
9956  raison ou une autre mais que vous voulez une ligne à l'endroit où la cellule
9957  est coupée, utilisez cette commande à la place de la précédente :
9958 \end_layout
9959
9960 \begin_layout Standard
9961
9962 \series bold
9963 & 111
9964 \backslash
9965
9966 \backslash
9967
9968 \begin_inset Newline newline
9969 \end_inset
9970
9971
9972 \backslash
9973 hline &
9974 \end_layout
9975
9976 \begin_layout Standard
9977 Quand la cellule qui doit être coupée est dans la dernière colonne, on doit
9978  insérer la commande
9979 \end_layout
9980
9981 \begin_layout Standard
9982
9983 \series bold
9984
9985 \backslash
9986 setlength{
9987 \backslash
9988 parfillskip}{0pt}
9989 \end_layout
9990
9991 \begin_layout Standard
9992 au début de la cellule.
9993  Cela assure que la portion de la cellule qui va se trouver affichée sur
9994  la page suivante le sera avec toute la largeur de la cellule.
9995 \end_layout
9996
9997 \begin_layout Standard
9998 \align center
9999 \begin_inset Tabular
10000 <lyxtabular version="3" rows="38" columns="3">
10001 <features rotate="0" islongtable="true" lastFootEmpty="true" longtabularalignment="center">
10002 <column alignment="left" valignment="top" width="0cm">
10003 <column alignment="left" valignment="top" width="3cm">
10004 <column alignment="center" valignment="top" width="0pt">
10005 <row endfirsthead="true" caption="true">
10006 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
10007 \begin_inset Text
10008
10009 \begin_layout Plain Layout
10010 \begin_inset Caption Standard
10011
10012 \begin_layout Plain Layout
10013 Tableau avec un saut de page forcé dans une cellule
10014 \begin_inset CommandInset label
10015 LatexCommand label
10016 name "tab:Tableau-saut-de-page"
10017
10018 \end_inset
10019
10020
10021 \begin_inset Argument 1
10022 status collapsed
10023
10024 \begin_layout Plain Layout
10025 Tableau avec un saut de page forcé dans une cellule
10026 \end_layout
10027
10028 \end_inset
10029
10030
10031 \end_layout
10032
10033 \end_inset
10034
10035
10036 \end_layout
10037
10038 \end_inset
10039 </cell>
10040 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10041 \begin_inset Text
10042
10043 \begin_layout Plain Layout
10044
10045 \end_layout
10046
10047 \end_inset
10048 </cell>
10049 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10050 \begin_inset Text
10051
10052 \begin_layout Plain Layout
10053
10054 \end_layout
10055
10056 \end_inset
10057 </cell>
10058 </row>
10059 <row endfirsthead="true">
10060 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10061 \begin_inset Text
10062
10063 \begin_layout Plain Layout
10064
10065 \series bold
10066 Exemple d'annuaire téléphonique (ne faites pas attention aux noms)
10067 \end_layout
10068
10069 \end_inset
10070 </cell>
10071 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10072 \begin_inset Text
10073
10074 \begin_layout Plain Layout
10075
10076 \end_layout
10077
10078 \end_inset
10079 </cell>
10080 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10081 \begin_inset Text
10082
10083 \begin_layout Plain Layout
10084
10085 \end_layout
10086
10087 \end_inset
10088 </cell>
10089 </row>
10090 <row endfirsthead="true">
10091 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10092 \begin_inset Text
10093
10094 \begin_layout Plain Layout
10095
10096 \series bold
10097 NOM
10098 \end_layout
10099
10100 \end_inset
10101 </cell>
10102 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10103 \begin_inset Text
10104
10105 \begin_layout Plain Layout
10106
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10112 \begin_inset Text
10113
10114 \begin_layout Plain Layout
10115
10116 \series bold
10117 TÉL.
10118 \end_layout
10119
10120 \end_inset
10121 </cell>
10122 </row>
10123 <row endhead="true">
10124 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10125 \begin_inset Text
10126
10127 \begin_layout Plain Layout
10128 \begin_inset ERT
10129 status collapsed
10130
10131 \begin_layout Plain Layout
10132
10133
10134 \backslash
10135 caption*{Tableau sur deux pages avec un saut de page dans une cellule}
10136 \backslash
10137
10138 \backslash
10139 %
10140 \end_layout
10141
10142 \end_inset
10143
10144
10145 \end_layout
10146
10147 \end_inset
10148 </cell>
10149 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10150 \begin_inset Text
10151
10152 \begin_layout Plain Layout
10153
10154 \end_layout
10155
10156 \end_inset
10157 </cell>
10158 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10159 \begin_inset Text
10160
10161 \begin_layout Plain Layout
10162
10163 \end_layout
10164
10165 \end_inset
10166 </cell>
10167 </row>
10168 <row endhead="true">
10169 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10170 \begin_inset Text
10171
10172 \begin_layout Plain Layout
10173  
10174 \series bold
10175 Exemple d'annuaire téléphonique
10176 \end_layout
10177
10178 \end_inset
10179 </cell>
10180 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10181 \begin_inset Text
10182
10183 \begin_layout Plain Layout
10184
10185 \end_layout
10186
10187 \end_inset
10188 </cell>
10189 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10190 \begin_inset Text
10191
10192 \begin_layout Plain Layout
10193
10194 \end_layout
10195
10196 \end_inset
10197 </cell>
10198 </row>
10199 <row endhead="true">
10200 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10201 \begin_inset Text
10202
10203 \begin_layout Plain Layout
10204
10205 \series bold
10206 NOM
10207 \end_layout
10208
10209 \end_inset
10210 </cell>
10211 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10212 \begin_inset Text
10213
10214 \begin_layout Plain Layout
10215
10216 \end_layout
10217
10218 \end_inset
10219 </cell>
10220 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10221 \begin_inset Text
10222
10223 \begin_layout Plain Layout
10224
10225 \series bold
10226 TÉL.
10227 \end_layout
10228
10229 \end_inset
10230 </cell>
10231 </row>
10232 <row endfoot="true">
10233 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
10234 \begin_inset Text
10235
10236 \begin_layout Plain Layout
10237 suite page suivante\SpecialChar \ldots{}
10238
10239 \end_layout
10240
10241 \end_inset
10242 </cell>
10243 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10244 \begin_inset Text
10245
10246 \begin_layout Plain Layout
10247
10248 \end_layout
10249
10250 \end_inset
10251 </cell>
10252 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10253 \begin_inset Text
10254
10255 \begin_layout Plain Layout
10256
10257 \end_layout
10258
10259 \end_inset
10260 </cell>
10261 </row>
10262 <row>
10263 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10264 \begin_inset Text
10265
10266 \begin_layout Plain Layout
10267
10268 \series bold
10269 Annovi
10270 \end_layout
10271
10272 \end_inset
10273 </cell>
10274 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10275 \begin_inset Text
10276
10277 \begin_layout Plain Layout
10278 Silvia
10279 \end_layout
10280
10281 \end_inset
10282 </cell>
10283 <cell alignment="right" valignment="top" rightline="true" usebox="none">
10284 \begin_inset Text
10285
10286 \begin_layout Plain Layout
10287 111
10288 \end_layout
10289
10290 \end_inset
10291 </cell>
10292 </row>
10293 <row>
10294 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10295 \begin_inset Text
10296
10297 \begin_layout Plain Layout
10298
10299 \series bold
10300 Bertoli
10301 \end_layout
10302
10303 \end_inset
10304 </cell>
10305 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10306 \begin_inset Text
10307
10308 \begin_layout Plain Layout
10309 Stefano
10310 \end_layout
10311
10312 \end_inset
10313 </cell>
10314 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10315 \begin_inset Text
10316
10317 \begin_layout Plain Layout
10318 111
10319 \end_layout
10320
10321 \end_inset
10322 </cell>
10323 </row>
10324 <row>
10325 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10326 \begin_inset Text
10327
10328 \begin_layout Plain Layout
10329
10330 \series bold
10331 Bozzi
10332 \end_layout
10333
10334 \end_inset
10335 </cell>
10336 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10337 \begin_inset Text
10338
10339 \begin_layout Plain Layout
10340 Walter
10341 \end_layout
10342
10343 \end_inset
10344 </cell>
10345 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10346 \begin_inset Text
10347
10348 \begin_layout Plain Layout
10349 111
10350 \end_layout
10351
10352 \end_inset
10353 </cell>
10354 </row>
10355 <row>
10356 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Plain Layout
10360
10361 \series bold
10362 Cachia
10363 \end_layout
10364
10365 \end_inset
10366 </cell>
10367 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10368 \begin_inset Text
10369
10370 \begin_layout Plain Layout
10371 Maria
10372 \end_layout
10373
10374 \end_inset
10375 </cell>
10376 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10377 \begin_inset Text
10378
10379 \begin_layout Plain Layout
10380 111
10381 \end_layout
10382
10383 \end_inset
10384 </cell>
10385 </row>
10386 <row>
10387 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10388 \begin_inset Text
10389
10390 \begin_layout Plain Layout
10391
10392 \series bold
10393 Cachia
10394 \end_layout
10395
10396 \end_inset
10397 </cell>
10398 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10399 \begin_inset Text
10400
10401 \begin_layout Plain Layout
10402 Maurizio
10403 \end_layout
10404
10405 \end_inset
10406 </cell>
10407 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10408 \begin_inset Text
10409
10410 \begin_layout Plain Layout
10411 111
10412 \end_layout
10413
10414 \end_inset
10415 </cell>
10416 </row>
10417 <row>
10418 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10419 \begin_inset Text
10420
10421 \begin_layout Plain Layout
10422
10423 \series bold
10424 Cinquemani
10425 \end_layout
10426
10427 \end_inset
10428 </cell>
10429 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10430 \begin_inset Text
10431
10432 \begin_layout Plain Layout
10433 Giusi
10434 \end_layout
10435
10436 \end_inset
10437 </cell>
10438 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10439 \begin_inset Text
10440
10441 \begin_layout Plain Layout
10442 111
10443 \end_layout
10444
10445 \end_inset
10446 </cell>
10447 </row>
10448 <row>
10449 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10450 \begin_inset Text
10451
10452 \begin_layout Plain Layout
10453
10454 \series bold
10455 Colin
10456 \end_layout
10457
10458 \end_inset
10459 </cell>
10460 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10461 \begin_inset Text
10462
10463 \begin_layout Plain Layout
10464 Bernard
10465 \end_layout
10466
10467 \end_inset
10468 </cell>
10469 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10470 \begin_inset Text
10471
10472 \begin_layout Plain Layout
10473 111
10474 \end_layout
10475
10476 \end_inset
10477 </cell>
10478 </row>
10479 <row>
10480 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10481 \begin_inset Text
10482
10483 \begin_layout Plain Layout
10484
10485 \series bold
10486 Concli
10487 \end_layout
10488
10489 \end_inset
10490 </cell>
10491 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10492 \begin_inset Text
10493
10494 \begin_layout Plain Layout
10495 Gianfranco
10496 \end_layout
10497
10498 \end_inset
10499 </cell>
10500 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10501 \begin_inset Text
10502
10503 \begin_layout Plain Layout
10504 111
10505 \end_layout
10506
10507 \end_inset
10508 </cell>
10509 </row>
10510 <row>
10511 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10512 \begin_inset Text
10513
10514 \begin_layout Plain Layout
10515
10516 \series bold
10517 Dal Bosco
10518 \end_layout
10519
10520 \end_inset
10521 </cell>
10522 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10523 \begin_inset Text
10524
10525 \begin_layout Plain Layout
10526 Carolina
10527 \end_layout
10528
10529 \end_inset
10530 </cell>
10531 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10532 \begin_inset Text
10533
10534 \begin_layout Plain Layout
10535 111
10536 \end_layout
10537
10538 \end_inset
10539 </cell>
10540 </row>
10541 <row>
10542 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10543 \begin_inset Text
10544
10545 \begin_layout Plain Layout
10546
10547 \series bold
10548 Dalpiaz
10549 \end_layout
10550
10551 \end_inset
10552 </cell>
10553 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10554 \begin_inset Text
10555
10556 \begin_layout Plain Layout
10557 Annamaria
10558 \end_layout
10559
10560 \end_inset
10561 </cell>
10562 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10563 \begin_inset Text
10564
10565 \begin_layout Plain Layout
10566 111
10567 \end_layout
10568
10569 \end_inset
10570 </cell>
10571 </row>
10572 <row>
10573 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10574 \begin_inset Text
10575
10576 \begin_layout Plain Layout
10577
10578 \series bold
10579 Feliciello
10580 \end_layout
10581
10582 \end_inset
10583 </cell>
10584 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10585 \begin_inset Text
10586
10587 \begin_layout Plain Layout
10588 Domenico
10589 \end_layout
10590
10591 \end_inset
10592 </cell>
10593 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10594 \begin_inset Text
10595
10596 \begin_layout Plain Layout
10597 111
10598 \end_layout
10599
10600 \end_inset
10601 </cell>
10602 </row>
10603 <row>
10604 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10605 \begin_inset Text
10606
10607 \begin_layout Plain Layout
10608
10609 \series bold
10610 Focarelli
10611 \end_layout
10612
10613 \end_inset
10614 </cell>
10615 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10616 \begin_inset Text
10617
10618 \begin_layout Plain Layout
10619 Paola
10620 \end_layout
10621
10622 \end_inset
10623 </cell>
10624 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10625 \begin_inset Text
10626
10627 \begin_layout Plain Layout
10628 111
10629 \end_layout
10630
10631 \end_inset
10632 </cell>
10633 </row>
10634 <row>
10635 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10636 \begin_inset Text
10637
10638 \begin_layout Plain Layout
10639
10640 \series bold
10641 Galletti
10642 \end_layout
10643
10644 \end_inset
10645 </cell>
10646 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10647 \begin_inset Text
10648
10649 \begin_layout Plain Layout
10650 Oreste
10651 \end_layout
10652
10653 \end_inset
10654 </cell>
10655 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10656 \begin_inset Text
10657
10658 \begin_layout Plain Layout
10659 111
10660 \end_layout
10661
10662 \end_inset
10663 </cell>
10664 </row>
10665 <row>
10666 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10667 \begin_inset Text
10668
10669 \begin_layout Plain Layout
10670
10671 \series bold
10672 Gasparini
10673 \end_layout
10674
10675 \end_inset
10676 </cell>
10677 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10678 \begin_inset Text
10679
10680 \begin_layout Plain Layout
10681 Franca
10682 \end_layout
10683
10684 \end_inset
10685 </cell>
10686 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10687 \begin_inset Text
10688
10689 \begin_layout Plain Layout
10690 111
10691 \end_layout
10692
10693 \end_inset
10694 </cell>
10695 </row>
10696 <row>
10697 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Plain Layout
10701
10702 \series bold
10703 Lassini
10704 \end_layout
10705
10706 \end_inset
10707 </cell>
10708 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10709 \begin_inset Text
10710
10711 \begin_layout Plain Layout
10712 Giancarlo
10713 \end_layout
10714
10715 \end_inset
10716 </cell>
10717 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10718 \begin_inset Text
10719
10720 \begin_layout Plain Layout
10721 111
10722 \end_layout
10723
10724 \end_inset
10725 </cell>
10726 </row>
10727 <row>
10728 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10729 \begin_inset Text
10730
10731 \begin_layout Plain Layout
10732
10733 \series bold
10734 Malfatti
10735 \end_layout
10736
10737 \end_inset
10738 </cell>
10739 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10740 \begin_inset Text
10741
10742 \begin_layout Plain Layout
10743 Luciano
10744 \end_layout
10745
10746 \end_inset
10747 </cell>
10748 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10749 \begin_inset Text
10750
10751 \begin_layout Plain Layout
10752 111
10753 \end_layout
10754
10755 \end_inset
10756 </cell>
10757 </row>
10758 <row>
10759 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10760 \begin_inset Text
10761
10762 \begin_layout Plain Layout
10763
10764 \series bold
10765 Malfatti
10766 \end_layout
10767
10768 \end_inset
10769 </cell>
10770 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10771 \begin_inset Text
10772
10773 \begin_layout Plain Layout
10774 Valeriano
10775 \end_layout
10776
10777 \end_inset
10778 </cell>
10779 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10780 \begin_inset Text
10781
10782 \begin_layout Plain Layout
10783 111
10784 \end_layout
10785
10786 \end_inset
10787 </cell>
10788 </row>
10789 <row>
10790 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10791 \begin_inset Text
10792
10793 \begin_layout Plain Layout
10794
10795 \series bold
10796 Meneguzzo
10797 \end_layout
10798
10799 \end_inset
10800 </cell>
10801 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10802 \begin_inset Text
10803
10804 \begin_layout Plain Layout
10805 Roberto
10806 \end_layout
10807
10808 \end_inset
10809 </cell>
10810 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10811 \begin_inset Text
10812
10813 \begin_layout Plain Layout
10814 111
10815 \end_layout
10816
10817 \end_inset
10818 </cell>
10819 </row>
10820 <row>
10821 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10822 \begin_inset Text
10823
10824 \begin_layout Plain Layout
10825
10826 \series bold
10827 Mezzadra
10828 \end_layout
10829
10830 \end_inset
10831 </cell>
10832 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10833 \begin_inset Text
10834
10835 \begin_layout Plain Layout
10836 Roberto
10837 \end_layout
10838
10839 \end_inset
10840 </cell>
10841 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10842 \begin_inset Text
10843
10844 \begin_layout Plain Layout
10845 111
10846 \end_layout
10847
10848 \end_inset
10849 </cell>
10850 </row>
10851 <row>
10852 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10853 \begin_inset Text
10854
10855 \begin_layout Plain Layout
10856
10857 \series bold
10858 Pirpamer
10859 \end_layout
10860
10861 \end_inset
10862 </cell>
10863 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10864 \begin_inset Text
10865
10866 \begin_layout Plain Layout
10867 Erich
10868 \end_layout
10869
10870 \end_inset
10871 </cell>
10872 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10873 \begin_inset Text
10874
10875 \begin_layout Plain Layout
10876 111
10877 \end_layout
10878
10879 \end_inset
10880 </cell>
10881 </row>
10882 <row>
10883 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10884 \begin_inset Text
10885
10886 \begin_layout Plain Layout
10887
10888 \series bold
10889 Pochiesa
10890 \end_layout
10891
10892 \end_inset
10893 </cell>
10894 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10895 \begin_inset Text
10896
10897 \begin_layout Plain Layout
10898 Paolo
10899 \end_layout
10900
10901 \end_inset
10902 </cell>
10903 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10904 \begin_inset Text
10905
10906 \begin_layout Plain Layout
10907 111, 222
10908 \end_layout
10909
10910 \end_inset
10911 </cell>
10912 </row>
10913 <row>
10914 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10915 \begin_inset Text
10916
10917 \begin_layout Plain Layout
10918
10919 \series bold
10920 Radina
10921 \end_layout
10922
10923 \end_inset
10924 </cell>
10925 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10926 \begin_inset Text
10927
10928 \begin_layout Plain Layout
10929 Claudio
10930 \end_layout
10931
10932 \end_inset
10933 </cell>
10934 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10935 \begin_inset Text
10936
10937 \begin_layout Plain Layout
10938 111
10939 \end_layout
10940
10941 \end_inset
10942 </cell>
10943 </row>
10944 <row>
10945 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10946 \begin_inset Text
10947
10948 \begin_layout Plain Layout
10949
10950 \series bold
10951 Rizzardi
10952 \end_layout
10953
10954 \end_inset
10955 </cell>
10956 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10957 \begin_inset Text
10958
10959 \begin_layout Plain Layout
10960 Giancarlo, 11.
10961  Fürst von Montecompatri, 11.
10962  Fürst von Sulmona und Vivaro, 10.
10963  Fürst von Rossano, 5.
10964  Herzog von Canemorte, 11.
10965  Herzog von Palombara, 5.
10966  Herzog von Castelchiodato,
10967 \begin_inset ERT
10968 status open
10969
10970 \begin_layout Plain Layout
10971
10972 & 111
10973 \backslash
10974
10975 \backslash
10976  
10977 \backslash
10978 newpage
10979 \end_layout
10980
10981 \begin_layout Plain Layout
10982
10983 &
10984 \end_layout
10985
10986 \end_inset
10987
10988  11.
10989  Herzog von Poggionativo, 11.
10990  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
10991  Graf von Valinfreda, 11.
10992  Baron von Cropalati, 11.
10993  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
10994 \end_layout
10995
10996 \end_inset
10997 </cell>
10998 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10999 \begin_inset Text
11000
11001 \begin_layout Plain Layout
11002
11003 \end_layout
11004
11005 \end_inset
11006 </cell>
11007 </row>
11008 <row>
11009 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11010 \begin_inset Text
11011
11012 \begin_layout Plain Layout
11013
11014 \series bold
11015 Stuffer
11016 \end_layout
11017
11018 \end_inset
11019 </cell>
11020 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11021 \begin_inset Text
11022
11023 \begin_layout Plain Layout
11024 Oskar
11025 \end_layout
11026
11027 \end_inset
11028 </cell>
11029 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11030 \begin_inset Text
11031
11032 \begin_layout Plain Layout
11033 111
11034 \end_layout
11035
11036 \end_inset
11037 </cell>
11038 </row>
11039 <row>
11040 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11041 \begin_inset Text
11042
11043 \begin_layout Plain Layout
11044
11045 \series bold
11046 Tacchelli
11047 \end_layout
11048
11049 \end_inset
11050 </cell>
11051 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11052 \begin_inset Text
11053
11054 \begin_layout Plain Layout
11055 Ugo
11056 \end_layout
11057
11058 \end_inset
11059 </cell>
11060 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11061 \begin_inset Text
11062
11063 \begin_layout Plain Layout
11064 111
11065 \end_layout
11066
11067 \end_inset
11068 </cell>
11069 </row>
11070 <row>
11071 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11072 \begin_inset Text
11073
11074 \begin_layout Plain Layout
11075
11076 \series bold
11077 Tezzele
11078 \end_layout
11079
11080 \end_inset
11081 </cell>
11082 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11083 \begin_inset Text
11084
11085 \begin_layout Plain Layout
11086 Margit
11087 \end_layout
11088
11089 \end_inset
11090 </cell>
11091 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11092 \begin_inset Text
11093
11094 \begin_layout Plain Layout
11095 111
11096 \end_layout
11097
11098 \end_inset
11099 </cell>
11100 </row>
11101 <row>
11102 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11103 \begin_inset Text
11104
11105 \begin_layout Plain Layout
11106
11107 \series bold
11108 Unterkalmsteiner
11109 \end_layout
11110
11111 \end_inset
11112 </cell>
11113 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11114 \begin_inset Text
11115
11116 \begin_layout Plain Layout
11117 Frieda
11118 \end_layout
11119
11120 \end_inset
11121 </cell>
11122 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11123 \begin_inset Text
11124
11125 \begin_layout Plain Layout
11126 111
11127 \end_layout
11128
11129 \end_inset
11130 </cell>
11131 </row>
11132 <row>
11133 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11134 \begin_inset Text
11135
11136 \begin_layout Plain Layout
11137
11138 \series bold
11139 Vieider
11140 \end_layout
11141
11142 \end_inset
11143 </cell>
11144 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11145 \begin_inset Text
11146
11147 \begin_layout Plain Layout
11148 Hilde
11149 \end_layout
11150
11151 \end_inset
11152 </cell>
11153 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11154 \begin_inset Text
11155
11156 \begin_layout Plain Layout
11157 111
11158 \end_layout
11159
11160 \end_inset
11161 </cell>
11162 </row>
11163 <row>
11164 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11165 \begin_inset Text
11166
11167 \begin_layout Plain Layout
11168
11169 \series bold
11170 Vigna
11171 \end_layout
11172
11173 \end_inset
11174 </cell>
11175 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11176 \begin_inset Text
11177
11178 \begin_layout Plain Layout
11179 Jürgen
11180 \end_layout
11181
11182 \end_inset
11183 </cell>
11184 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11185 \begin_inset Text
11186
11187 \begin_layout Plain Layout
11188 111
11189 \end_layout
11190
11191 \end_inset
11192 </cell>
11193 </row>
11194 <row>
11195 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11196 \begin_inset Text
11197
11198 \begin_layout Plain Layout
11199
11200 \series bold
11201 Weber
11202 \end_layout
11203
11204 \end_inset
11205 </cell>
11206 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11207 \begin_inset Text
11208
11209 \begin_layout Plain Layout
11210 Maurizio
11211 \end_layout
11212
11213 \end_inset
11214 </cell>
11215 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11216 \begin_inset Text
11217
11218 \begin_layout Plain Layout
11219 111
11220 \end_layout
11221
11222 \end_inset
11223 </cell>
11224 </row>
11225 <row>
11226 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11227 \begin_inset Text
11228
11229 \begin_layout Plain Layout
11230
11231 \series bold
11232 Winkler
11233 \end_layout
11234
11235 \end_inset
11236 </cell>
11237 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
11238 \begin_inset Text
11239
11240 \begin_layout Plain Layout
11241 Franz
11242 \end_layout
11243
11244 \end_inset
11245 </cell>
11246 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
11247 \begin_inset Text
11248
11249 \begin_layout Plain Layout
11250 111
11251 \end_layout
11252
11253 \end_inset
11254 </cell>
11255 </row>
11256 </lyxtabular>
11257
11258 \end_inset
11259
11260
11261 \end_layout
11262
11263 \begin_layout Section
11264 Colonnes et lignes à lignes multiples
11265 \end_layout
11266
11267 \begin_layout Subsection
11268 Lignes multiples dans une cellule de tableau
11269 \begin_inset CommandInset label
11270 LatexCommand label
11271 name "sub:Lignes-multiple-dans-cellule"
11272
11273 \end_inset
11274
11275
11276 \begin_inset Index idx
11277 status collapsed
11278
11279 \begin_layout Plain Layout
11280 Plusieurs lignes dans une case de tableau
11281 \end_layout
11282
11283 \end_inset
11284
11285
11286 \begin_inset Index idx
11287 status collapsed
11288
11289 \begin_layout Plain Layout
11290 Tableau ! Saut de ligne
11291 \end_layout
11292
11293 \end_inset
11294
11295
11296 \end_layout
11297
11298 \begin_layout Standard
11299 \noindent
11300 \begin_inset Float table
11301 placement H
11302 wide false
11303 sideways false
11304 status open
11305
11306 \begin_layout Plain Layout
11307 \begin_inset Caption Standard
11308
11309 \begin_layout Plain Layout
11310 \begin_inset CommandInset label
11311 LatexCommand label
11312 name "tab:Tableau-avec-plusieurs-lignes"
11313
11314 \end_inset
11315
11316 Tableau avec des lignes multiples dans une cellule
11317 \end_layout
11318
11319 \end_inset
11320
11321
11322 \end_layout
11323
11324 \begin_layout Plain Layout
11325 \align center
11326 \begin_inset Tabular
11327 <lyxtabular version="3" rows="3" columns="3">
11328 <features rotate="0" tabularvalignment="middle">
11329 <column alignment="center" valignment="middle" width="2.5cm">
11330 <column alignment="center" valignment="middle" width="0">
11331 <column alignment="center" valignment="middle" width="0">
11332 <row>
11333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Plain Layout
11337 Lignes
11338 \begin_inset Newline linebreak
11339 \end_inset
11340
11341 multiples
11342 \end_layout
11343
11344 \end_inset
11345 </cell>
11346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11347 \begin_inset Text
11348
11349 \begin_layout Plain Layout
11350 b
11351 \end_layout
11352
11353 \end_inset
11354 </cell>
11355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11356 \begin_inset Text
11357
11358 \begin_layout Plain Layout
11359 c
11360 \end_layout
11361
11362 \end_inset
11363 </cell>
11364 </row>
11365 <row>
11366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11367 \begin_inset Text
11368
11369 \begin_layout Plain Layout
11370 d
11371 \end_layout
11372
11373 \end_inset
11374 </cell>
11375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11376 \begin_inset Text
11377
11378 \begin_layout Plain Layout
11379 e
11380 \end_layout
11381
11382 \end_inset
11383 </cell>
11384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11385 \begin_inset Text
11386
11387 \begin_layout Plain Layout
11388 f
11389 \end_layout
11390
11391 \end_inset
11392 </cell>
11393 </row>
11394 <row>
11395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11396 \begin_inset Text
11397
11398 \begin_layout Plain Layout
11399 g
11400 \end_layout
11401
11402 \end_inset
11403 </cell>
11404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11405 \begin_inset Text
11406
11407 \begin_layout Plain Layout
11408 h
11409 \end_layout
11410
11411 \end_inset
11412 </cell>
11413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11414 \begin_inset Text
11415
11416 \begin_layout Plain Layout
11417 i
11418 \end_layout
11419
11420 \end_inset
11421 </cell>
11422 </row>
11423 </lyxtabular>
11424
11425 \end_inset
11426
11427
11428 \end_layout
11429
11430 \end_inset
11431
11432
11433 \end_layout
11434
11435 \begin_layout Standard
11436 En fixant la largeur d'une colonne, on permet d'entrer du texte sous forme
11437  d'un paragraphe avec des sauts de lignes et des césures.
11438 \end_layout
11439
11440 \begin_layout Standard
11441 Pour obtenir le tableau
11442 \begin_inset space ~
11443 \end_inset
11444
11445
11446 \begin_inset CommandInset ref
11447 LatexCommand ref
11448 reference "tab:Tableau-avec-plusieurs-lignes"
11449
11450 \end_inset
11451
11452 , créez un tableau 3×3, sélectionnez la première cellule et faites un clic
11453  droit dessus.
11454  Dans la fenêtre de dialogue qui s'ouvre fixez une largeur de cellule de
11455  2.5
11456 \begin_inset space \thinspace{}
11457 \end_inset
11458
11459 cm et choisissez les alignements vertical et horizontal centrés.
11460  L'alignement vertical va s'appliquer à toutes les cellules de la ligne.
11461  Comme notre texte est plus petit que 2.5
11462 \begin_inset space \thinspace{}
11463 \end_inset
11464
11465 cm, une seule ligne va apparaître.
11466  Pour avoir deux lignes, un saut de ligne justifié a été ajouté (raccourci
11467  
11468 \family sans
11469 Ctrl-Shift-Entrée
11470 \family default
11471 ).
11472  Si le texte est plus large que la taille de cellule choisie, il sera automatiqu
11473 ement découpé en plusieurs lignes.
11474 \end_layout
11475
11476 \begin_layout Standard
11477 Si vous avez un mot long dans une cellule de largeur fixée, LaTeX ne peut
11478  pas effectuer de césure si c'est le premier élément de la cellule.
11479  Vous devez donc insérer quelque chose avant pour qu'il ne soit plus le
11480  premier élément : Ajoutez un espace horizontal de 0
11481 \begin_inset space \thinspace{}
11482 \end_inset
11483
11484 pt juste avant votre mot.
11485  Comme l'espace est égal à zéro, la sortie ne sera pas modifiée.
11486  Le tableau
11487 \begin_inset space ~
11488 \end_inset
11489
11490
11491 \begin_inset CommandInset ref
11492 LatexCommand ref
11493 reference "tab:Tableau-césure"
11494
11495 \end_inset
11496
11497  montre l'effet de cette insertion.
11498 \end_layout
11499
11500 \begin_layout Standard
11501 \begin_inset Float table
11502 placement h
11503 wide false
11504 sideways false
11505 status open
11506
11507 \begin_layout Plain Layout
11508 \begin_inset Caption Standard
11509
11510 \begin_layout Plain Layout
11511 \begin_inset CommandInset label
11512 LatexCommand label
11513 name "tab:Tableau-césure"
11514
11515 \end_inset
11516
11517 Tableau avec et sans césure.
11518 \end_layout
11519
11520 \end_inset
11521
11522
11523 \end_layout
11524
11525 \begin_layout Plain Layout
11526 \begin_inset space \hfill{}
11527 \end_inset
11528
11529
11530 \begin_inset Tabular
11531 <lyxtabular version="3" rows="3" columns="3">
11532 <features rotate="0" tabularvalignment="middle">
11533 <column alignment="center" valignment="middle" width="2.5cm">
11534 <column alignment="center" valignment="middle" width="0">
11535 <column alignment="center" valignment="middle" width="0">
11536 <row>
11537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11538 \begin_inset Text
11539
11540 \begin_layout Plain Layout
11541 mottrèslongdansunecellule
11542 \end_layout
11543
11544 \end_inset
11545 </cell>
11546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11547 \begin_inset Text
11548
11549 \begin_layout Plain Layout
11550 b
11551 \end_layout
11552
11553 \end_inset
11554 </cell>
11555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11556 \begin_inset Text
11557
11558 \begin_layout Plain Layout
11559 c
11560 \end_layout
11561
11562 \end_inset
11563 </cell>
11564 </row>
11565 <row>
11566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11567 \begin_inset Text
11568
11569 \begin_layout Plain Layout
11570 d
11571 \end_layout
11572
11573 \end_inset
11574 </cell>
11575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11576 \begin_inset Text
11577
11578 \begin_layout Plain Layout
11579 e
11580 \end_layout
11581
11582 \end_inset
11583 </cell>
11584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11585 \begin_inset Text
11586
11587 \begin_layout Plain Layout
11588 f
11589 \end_layout
11590
11591 \end_inset
11592 </cell>
11593 </row>
11594 <row>
11595 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11596 \begin_inset Text
11597
11598 \begin_layout Plain Layout
11599 g
11600 \end_layout
11601
11602 \end_inset
11603 </cell>
11604 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11605 \begin_inset Text
11606
11607 \begin_layout Plain Layout
11608 h
11609 \end_layout
11610
11611 \end_inset
11612 </cell>
11613 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11614 \begin_inset Text
11615
11616 \begin_layout Plain Layout
11617 i
11618 \end_layout
11619
11620 \end_inset
11621 </cell>
11622 </row>
11623 </lyxtabular>
11624
11625 \end_inset
11626
11627
11628 \begin_inset space \hfill{}
11629 \end_inset
11630
11631
11632 \begin_inset Tabular
11633 <lyxtabular version="3" rows="3" columns="3">
11634 <features rotate="0" tabularvalignment="middle">
11635 <column alignment="center" valignment="middle" width="2.5cm">
11636 <column alignment="center" valignment="middle" width="0">
11637 <column alignment="center" valignment="middle" width="0">
11638 <row>
11639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11640 \begin_inset Text
11641
11642 \begin_layout Plain Layout
11643 \begin_inset space \hspace{}
11644 \length 0pt
11645 \end_inset
11646
11647 mottrèslongdansunecellule
11648 \end_layout
11649
11650 \end_inset
11651 </cell>
11652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11653 \begin_inset Text
11654
11655 \begin_layout Plain Layout
11656 b
11657 \end_layout
11658
11659 \end_inset
11660 </cell>
11661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11662 \begin_inset Text
11663
11664 \begin_layout Plain Layout
11665 c
11666 \end_layout
11667
11668 \end_inset
11669 </cell>
11670 </row>
11671 <row>
11672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11673 \begin_inset Text
11674
11675 \begin_layout Plain Layout
11676 d
11677 \end_layout
11678
11679 \end_inset
11680 </cell>
11681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11682 \begin_inset Text
11683
11684 \begin_layout Plain Layout
11685 e
11686 \end_layout
11687
11688 \end_inset
11689 </cell>
11690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11691 \begin_inset Text
11692
11693 \begin_layout Plain Layout
11694 f
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 </row>
11700 <row>
11701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11702 \begin_inset Text
11703
11704 \begin_layout Plain Layout
11705 g
11706 \end_layout
11707
11708 \end_inset
11709 </cell>
11710 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11711 \begin_inset Text
11712
11713 \begin_layout Plain Layout
11714 h
11715 \end_layout
11716
11717 \end_inset
11718 </cell>
11719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11720 \begin_inset Text
11721
11722 \begin_layout Plain Layout
11723 i
11724 \end_layout
11725
11726 \end_inset
11727 </cell>
11728 </row>
11729 </lyxtabular>
11730
11731 \end_inset
11732
11733
11734 \begin_inset space \hfill{}
11735 \end_inset
11736
11737
11738 \end_layout
11739
11740 \end_inset
11741
11742
11743 \end_layout
11744
11745 \begin_layout Subsection
11746 Multi-colonnes
11747 \begin_inset CommandInset label
11748 LatexCommand label
11749 name "sub:Multicolonnes"
11750
11751 \end_inset
11752
11753
11754 \begin_inset Index idx
11755 status collapsed
11756
11757 \begin_layout Plain Layout
11758 Multi-colonnes
11759 \end_layout
11760
11761 \end_inset
11762
11763
11764 \begin_inset Index idx
11765 status collapsed
11766
11767 \begin_layout Plain Layout
11768 Tableau ! Multi-colonnes
11769 \end_layout
11770
11771 \end_inset
11772
11773
11774 \end_layout
11775
11776 \begin_layout Subsubsection
11777 Les bases des multi-colonnes
11778 \end_layout
11779
11780 \begin_layout Standard
11781 Pour faire qu'une cellule couvre plusieurs colonnes, marquez les cellules
11782  qu'elle doit couvrir et utilisez soit le bouton 
11783 \begin_inset Info
11784 type  "icon"
11785 arg   "inset-modify tabular multicolumn"
11786 \end_inset
11787
11788  de la barre d'outils tableau, ou le menu 
11789 \family sans
11790 Édition\SpecialChar \menuseparator
11791 Tableau\SpecialChar \menuseparator
11792 Multi-colonnes
11793 \family default
11794 , ou encore faites un clic droit sur les cellules sélectionnées et choisissez
11795  
11796 \family sans
11797 Multi-colonnes
11798 \family default
11799 .
11800 \end_layout
11801
11802 \begin_layout Standard
11803 Les multi-colonnes ont leurs propres paramètres de cellule.
11804  Ce qui veut dire que si on change les bordures, l'alignement ou la largeur
11805  de la cellule, cela n'affecte que la cellule multi-colonne.
11806  Voici un exemple de tableau avec une cellule multi-colonne dans la première
11807  ligne et une cellule sans bordure supérieure dans la dernière ligne :
11808 \end_layout
11809
11810 \begin_layout Standard
11811 \align center
11812 \begin_inset Tabular
11813 <lyxtabular version="3" rows="3" columns="4">
11814 <features rotate="0" firstHeadTopDL="true" firstHeadBottomDL="true" tabularvalignment="middle">
11815 <column alignment="center" valignment="top" width="0pt">
11816 <column alignment="center" valignment="middle" width="0">
11817 <column alignment="center" valignment="top" width="0in">
11818 <column alignment="center" valignment="top" width="0pt">
11819 <row>
11820 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11821 \begin_inset Text
11822
11823 \begin_layout Plain Layout
11824 abc
11825 \end_layout
11826
11827 \end_inset
11828 </cell>
11829 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
11830 \begin_inset Text
11831
11832 \begin_layout Plain Layout
11833 def ghi
11834 \end_layout
11835
11836 \end_inset
11837 </cell>
11838 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11839 \begin_inset Text
11840
11841 \begin_layout Plain Layout
11842
11843 \end_layout
11844
11845 \end_inset
11846 </cell>
11847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11848 \begin_inset Text
11849
11850 \begin_layout Plain Layout
11851 jkl
11852 \end_layout
11853
11854 \end_inset
11855 </cell>
11856 </row>
11857 <row>
11858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11859 \begin_inset Text
11860
11861 \begin_layout Plain Layout
11862 A
11863 \end_layout
11864
11865 \end_inset
11866 </cell>
11867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11868 \begin_inset Text
11869
11870 \begin_layout Plain Layout
11871 B
11872 \end_layout
11873
11874 \end_inset
11875 </cell>
11876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11877 \begin_inset Text
11878
11879 \begin_layout Plain Layout
11880 C
11881 \end_layout
11882
11883 \end_inset
11884 </cell>
11885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11886 \begin_inset Text
11887
11888 \begin_layout Plain Layout
11889 D
11890 \end_layout
11891
11892 \end_inset
11893 </cell>
11894 </row>
11895 <row>
11896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11897 \begin_inset Text
11898
11899 \begin_layout Plain Layout
11900 1
11901 \end_layout
11902
11903 \end_inset
11904 </cell>
11905 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11906 \begin_inset Text
11907
11908 \begin_layout Plain Layout
11909 2
11910 \end_layout
11911
11912 \end_inset
11913 </cell>
11914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11915 \begin_inset Text
11916
11917 \begin_layout Plain Layout
11918 3
11919 \end_layout
11920
11921 \end_inset
11922 </cell>
11923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11924 \begin_inset Text
11925
11926 \begin_layout Plain Layout
11927 4
11928 \end_layout
11929
11930 \end_inset
11931 </cell>
11932 </row>
11933 </lyxtabular>
11934
11935 \end_inset
11936
11937
11938 \end_layout
11939
11940 \begin_layout Subsubsection
11941 Calculs avec les multi-colonnes
11942 \begin_inset CommandInset label
11943 LatexCommand label
11944 name "sub:Calculs-multicolonnes"
11945
11946 \end_inset
11947
11948
11949 \begin_inset Index idx
11950 status collapsed
11951
11952 \begin_layout Plain Layout
11953 Multi-colonnes ! Calculs
11954 \end_layout
11955
11956 \end_inset
11957
11958
11959 \end_layout
11960
11961 \begin_layout Standard
11962 LyX gère directement les multi-colonnes, mais nous devons faire attention
11963  à la largeur des cellules couvertes par la cellule multi-colonne.
11964 \end_layout
11965
11966 \begin_layout Standard
11967 \begin_inset Float table
11968 placement h
11969 wide false
11970 sideways false
11971 status open
11972
11973 \begin_layout Plain Layout
11974 \begin_inset Caption Standard
11975
11976 \begin_layout Plain Layout
11977 \begin_inset CommandInset label
11978 LatexCommand label
11979 name "tab:Tableau-multicolonne-parfaite"
11980
11981 \end_inset
11982
11983 Tableau avec un texte centré dans une case multi-colonne au-dessus de deux
11984  colonnes qui ont exactement la moitié de la largeur de la case multicolonne.
11985 \begin_inset Argument 1
11986 status open
11987
11988 \begin_layout Plain Layout
11989 Tableau avec multicolonne parfaite
11990 \end_layout
11991
11992 \end_inset
11993
11994
11995 \end_layout
11996
11997 \end_inset
11998
11999
12000 \end_layout
12001
12002 \begin_layout Plain Layout
12003 \align center
12004 \begin_inset Tabular
12005 <lyxtabular version="3" rows="3" columns="3">
12006 <features rotate="0" tabularvalignment="middle">
12007 <column alignment="center" valignment="middle" width="0" special=">{\centering}m{1.25cm-6.2pt}">
12008 <column alignment="center" valignment="middle" width="0">
12009 <column alignment="center" valignment="top" width="0">
12010 <row>
12011 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
12012 \begin_inset Text
12013
12014 \begin_layout Plain Layout
12015 multi-colonne sur plusieurs lignes
12016 \end_layout
12017
12018 \end_inset
12019 </cell>
12020 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12021 \begin_inset Text
12022
12023 \begin_layout Plain Layout
12024
12025 \end_layout
12026
12027 \end_inset
12028 </cell>
12029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12030 \begin_inset Text
12031
12032 \begin_layout Plain Layout
12033 c
12034 \end_layout
12035
12036 \end_inset
12037 </cell>
12038 </row>
12039 <row>
12040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12041 \begin_inset Text
12042
12043 \begin_layout Plain Layout
12044 d
12045 \end_layout
12046
12047 \end_inset
12048 </cell>
12049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12050 \begin_inset Text
12051
12052 \begin_layout Plain Layout
12053 e
12054 \end_layout
12055
12056 \end_inset
12057 </cell>
12058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12059 \begin_inset Text
12060
12061 \begin_layout Plain Layout
12062 f
12063 \end_layout
12064
12065 \end_inset
12066 </cell>
12067 </row>
12068 <row>
12069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12070 \begin_inset Text
12071
12072 \begin_layout Plain Layout
12073 g
12074 \end_layout
12075
12076 \end_inset
12077 </cell>
12078 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12079 \begin_inset Text
12080
12081 \begin_layout Plain Layout
12082 h
12083 \end_layout
12084
12085 \end_inset
12086 </cell>
12087 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12088 \begin_inset Text
12089
12090 \begin_layout Plain Layout
12091 i
12092 \end_layout
12093
12094 \end_inset
12095 </cell>
12096 </row>
12097 </lyxtabular>
12098
12099 \end_inset
12100
12101
12102 \end_layout
12103
12104 \end_inset
12105
12106
12107 \end_layout
12108
12109 \begin_layout Standard
12110 Par exemple, pour créer le tableau
12111 \begin_inset space ~
12112 \end_inset
12113
12114
12115 \begin_inset CommandInset ref
12116 LatexCommand ref
12117 reference "tab:Tableau-multicolonne-parfaite"
12118
12119 \end_inset
12120
12121 , sélectionnez les deux premières cellules de la première ligne d'un tableau
12122  3×3 et faites un clic droit dessus.
12123  Ensuite choisissez pour cette cellule
12124 \emph on
12125 ,
12126 \emph default
12127  dans la fenêtre de dialogue de tableau, 
12128 \emph on
12129 multi-colonne
12130 \emph default
12131
12132 \emph on
12133 alignement
12134 \begin_inset space ~
12135 \end_inset
12136
12137 horizontal
12138 \begin_inset space ~
12139 \end_inset
12140
12141 centré
12142 \emph default
12143  et une largeur de 2.5
12144 \begin_inset space \thinspace{}
12145 \end_inset
12146
12147 cm.
12148  Les colonnes couvertes doivent avoir exactement la moitié de la largeur
12149  de la cellule multi-colonne, vous devez donc donner une largeur de 1.25
12150 \begin_inset space \thinspace{}
12151 \end_inset
12152
12153 cm pour la première colonne.
12154  La deuxième colonne aura alors automatiquement une largeur de 1.25
12155 \begin_inset space \thinspace{}
12156 \end_inset
12157
12158 cm (la largeur de la multi-colonne moins la largeur de la première colonne).
12159  C'est ce qui a été fait pour le tableau
12160 \begin_inset space ~
12161 \end_inset
12162
12163
12164 \begin_inset CommandInset ref
12165 LatexCommand ref
12166 reference "tab:Tableau-multicolonne-imparfait"
12167
12168 \end_inset
12169
12170 .
12171 \end_layout
12172
12173 \begin_layout Standard
12174 \begin_inset Float table
12175 wide false
12176 sideways false
12177 status open
12178
12179 \begin_layout Plain Layout
12180 \begin_inset Caption Standard
12181
12182 \begin_layout Plain Layout
12183 \begin_inset CommandInset label
12184 LatexCommand label
12185 name "tab:Tableau-multicolonne-imparfait"
12186
12187 \end_inset
12188
12189 Tableau où la largeur de colonnes couvertes n'est pas exactement la moitié
12190  de la largeur de la cellule multi-colonne.
12191 \begin_inset Argument 1
12192 status open
12193
12194 \begin_layout Plain Layout
12195 Tableau avec multi-colonne pas parfaite
12196 \end_layout
12197
12198 \end_inset
12199
12200
12201 \end_layout
12202
12203 \end_inset
12204
12205
12206 \end_layout
12207
12208 \begin_layout Plain Layout
12209 \align center
12210 \begin_inset Tabular
12211 <lyxtabular version="3" rows="3" columns="3">
12212 <features rotate="0" tabularvalignment="middle">
12213 <column alignment="center" valignment="top" width="1.25cm">
12214 <column alignment="center" valignment="top" width="0">
12215 <column alignment="center" valignment="top" width="0">
12216 <row>
12217 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
12218 \begin_inset Text
12219
12220 \begin_layout Plain Layout
12221 multi-colonne sur plusieurs lignes
12222 \end_layout
12223
12224 \end_inset
12225 </cell>
12226 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12227 \begin_inset Text
12228
12229 \begin_layout Plain Layout
12230
12231 \end_layout
12232
12233 \end_inset
12234 </cell>
12235 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12236 \begin_inset Text
12237
12238 \begin_layout Plain Layout
12239 c
12240 \end_layout
12241
12242 \end_inset
12243 </cell>
12244 </row>
12245 <row>
12246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12247 \begin_inset Text
12248
12249 \begin_layout Plain Layout
12250 d
12251 \end_layout
12252
12253 \end_inset
12254 </cell>
12255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12256 \begin_inset Text
12257
12258 \begin_layout Plain Layout
12259 e
12260 \end_layout
12261
12262 \end_inset
12263 </cell>
12264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12265 \begin_inset Text
12266
12267 \begin_layout Plain Layout
12268 f
12269 \end_layout
12270
12271 \end_inset
12272 </cell>
12273 </row>
12274 <row>
12275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12276 \begin_inset Text
12277
12278 \begin_layout Plain Layout
12279 g
12280 \end_layout
12281
12282 \end_inset
12283 </cell>
12284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12285 \begin_inset Text
12286
12287 \begin_layout Plain Layout
12288 h
12289 \end_layout
12290
12291 \end_inset
12292 </cell>
12293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12294 \begin_inset Text
12295
12296 \begin_layout Plain Layout
12297 i
12298 \end_layout
12299
12300 \end_inset
12301 </cell>
12302 </row>
12303 </lyxtabular>
12304
12305 \end_inset
12306
12307
12308 \end_layout
12309
12310 \end_inset
12311
12312
12313 \end_layout
12314
12315 \begin_layout Standard
12316 Vous pouvez voir que la première colonne n'a pas la moitié de la largeur
12317  de la cellule multi-colonne, elle est un peu plus large.
12318  La raison est que la taille que l'on donne à une cellule, 
12319 \begin_inset Formula $W_{g}$
12320 \end_inset
12321
12322  n'est pas sa taille totale, 
12323 \begin_inset Formula $W_{\mathrm{tot}}$
12324 \end_inset
12325
12326  parce qu'une cellule est toujours un peu plus large que la taille qu'on
12327  lui donne.
12328  L'appendice
12329 \begin_inset space ~
12330 \end_inset
12331
12332
12333 \begin_inset CommandInset ref
12334 LatexCommand ref
12335 reference "cha:Explication-de-l'Equation"
12336
12337 \end_inset
12338
12339  explique pourquoi en détail.
12340 \end_layout
12341
12342 \begin_layout Standard
12343 La largeur nécessaire 
12344 \begin_inset Formula $W_{g\, n}$
12345 \end_inset
12346
12347  quand 
12348 \emph on
12349 n
12350 \emph default
12351  colonnes sont couvertes peut être calculée de façon à ce que chaque colonne
12352  ait une largeur totale de 
12353 \begin_inset Formula $W_{\mathrm{tot\, multicolonne}}/n$
12354 \end_inset
12355
12356 :
12357 \begin_inset Formula 
12358 \begin{equation}
12359 W_{g\, n}=(W_{g\,\mathrm{multicolonne}}+(1-n)\cdot(12.4\,\mathrm{pt}))/n\label{eq:Wgn}
12360 \end{equation}
12361
12362 \end_inset
12363
12364
12365 \end_layout
12366
12367 \begin_layout Standard
12368 Dans notre cas nous avons 
12369 \begin_inset Formula $n=2$
12370 \end_inset
12371
12372
12373 \begin_inset Formula $W_{g\,\mathrm{multicolonnen}}=2.5\,$
12374 \end_inset
12375
12376 cm et les valeurs implicites pour les autres longueurs, l'équation
12377 \begin_inset space ~
12378 \end_inset
12379
12380
12381 \begin_inset CommandInset ref
12382 LatexCommand ref
12383 reference "eq:Wgn"
12384
12385 \end_inset
12386
12387  devient
12388 \begin_inset Formula 
12389 \begin{equation}
12390 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}
12391 \end{equation}
12392
12393 \end_inset
12394
12395
12396 \end_layout
12397
12398 \begin_layout Standard
12399 Pour permettre des calculs avec LaTeX, vous devez charger le paquetage LaTeX
12400  
12401 \series bold
12402 calc
12403 \series default
12404  avec la ligne suivante dans le préambule du document
12405 \begin_inset Index idx
12406 status collapsed
12407
12408 \begin_layout Plain Layout
12409 Paquetages LaTeX ! calc
12410 \end_layout
12411
12412 \end_inset
12413
12414
12415 \end_layout
12416
12417 \begin_layout Standard
12418
12419 \series bold
12420
12421 \backslash
12422 usepackage{calc}
12423 \end_layout
12424
12425 \begin_layout Standard
12426 LyX ne permet pas d'effectuer des calculs dans le champ largeur de la fenêtre
12427  de dialogue.
12428  Vous devez donc for mater la colonne en insérant un paramètre LaTeX dans
12429  la fenêtre de dialogue.
12430  Voici un aperçu de ces paramètres :
12431 \end_layout
12432
12433 \begin_layout Itemize
12434
12435 \series bold
12436 p{largeur}
12437 \series default
12438  crée une cellule de taille donnée, le texte est aligné verticalement en
12439  haut.
12440 \end_layout
12441
12442 \begin_layout Itemize
12443
12444 \series bold
12445 m{largeur}
12446 \series default
12447  crée une cellule de taille donnée, le texte est aligné verticalement au
12448  centre
12449 \end_layout
12450
12451 \begin_layout Itemize
12452
12453 \series bold
12454 b{largeur}
12455 \series default
12456  crée une cellule de taille donnée, le texte est aligné verticalement en
12457  bas
12458 \end_layout
12459
12460 \begin_layout Standard
12461 En entrant un paramètre LaTeX, tous les réglages de cellule donnés dans
12462  la fenêtre de dialogue sont ignorés.
12463 \end_layout
12464
12465 \begin_layout Standard
12466 \begin_inset Note Greyedout
12467 status open
12468
12469 \begin_layout Plain Layout
12470
12471 \series bold
12472 Note:
12473 \series default
12474  À cause d'un bug, LyX affiche quand même les réglages qui ne sont pas pris
12475  en compte.
12476 \end_layout
12477
12478 \end_inset
12479
12480
12481 \end_layout
12482
12483 \begin_layout Standard
12484 Comme le texte doit être centré horizontalement, on ajoute la commande 
12485 \series bold
12486
12487 \backslash
12488 centering
12489 \series default
12490 .
12491  Vous pouvez maintenant ajouter le paramètre LaTeX suivant pour la première
12492  des colonnes recouvertes :
12493 \end_layout
12494
12495 \begin_layout Standard
12496
12497 \series bold
12498 >{
12499 \backslash
12500 centering}m{1.25cm-6.2pt}
12501 \end_layout
12502
12503 \begin_layout Standard
12504 La commande 
12505 \series bold
12506 >{ }
12507 \series default
12508  signifie que les commandes qui se trouvent entre les accolades doivent
12509  être appliquées avant que la cellule ne soit créée.
12510 \end_layout
12511
12512 \begin_layout Standard
12513 Bien que nous ayons choisi un alignement centré pour le texte de la cellule
12514  multi-colonne, il est toujours aligné à gauche.
12515  Cela vient du fait que LyX applique l'alignement seulement à des colonnes
12516  isolées.
12517  Nous devons donc utiliser le paramètre LaTeX suivant pour la multi-colonne
12518 \end_layout
12519
12520 \begin_layout Standard
12521
12522 \series bold
12523 >{
12524 \backslash
12525 centering}m{2.5cm}
12526 \end_layout
12527
12528 \begin_layout Subsection
12529 Multi-lignes
12530 \begin_inset CommandInset label
12531 LatexCommand label
12532 name "sub:Multi-lignes"
12533
12534 \end_inset
12535
12536
12537 \begin_inset Index idx
12538 status collapsed
12539
12540 \begin_layout Plain Layout
12541 Multi-lignes
12542 \end_layout
12543
12544 \end_inset
12545
12546
12547 \begin_inset Index idx
12548 status collapsed
12549
12550 \begin_layout Plain Layout
12551 Tableau ! Multi-ligne
12552 \end_layout
12553
12554 \end_inset
12555
12556
12557 \end_layout
12558
12559 \begin_layout Standard
12560 Pour faire qu'une cellule couvre plusieurs lignes, marquez les cellules
12561  qu'elle doit couvrir et utilisez soit le bouton 
12562 \begin_inset Info
12563 type  "icon"
12564 arg   "inset-modify tabular multirow"
12565 \end_inset
12566
12567  de la barre d'outils tableau, ou le menu 
12568 \family sans
12569 Édition\SpecialChar \menuseparator
12570 Tableau\SpecialChar \menuseparator
12571 Multi-lignes
12572 \family default
12573 , ou encore faites un clic droit sur les cellules sélectionnées et choisissez
12574  
12575 \family sans
12576 Multi-lignes
12577 \family default
12578 .
12579 \end_layout
12580
12581 \begin_layout Standard
12582 Voici un exemple de tableau avec une cellule multi-ligne en première colonne:
12583 \end_layout
12584
12585 \begin_layout Standard
12586 \align center
12587 \begin_inset Tabular
12588 <lyxtabular version="3" rows="3" columns="3">
12589 <features rotate="0" tabularvalignment="middle">
12590 <column alignment="center" valignment="top" width="0pt">
12591 <column alignment="center" valignment="top" width="0">
12592 <column alignment="center" valignment="top" width="0">
12593 <row>
12594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12595 \begin_inset Text
12596
12597 \begin_layout Plain Layout
12598 un contenu long
12599 \end_layout
12600
12601 \end_inset
12602 </cell>
12603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12604 \begin_inset Text
12605
12606 \begin_layout Plain Layout
12607 b
12608 \end_layout
12609
12610 \end_inset
12611 </cell>
12612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12613 \begin_inset Text
12614
12615 \begin_layout Plain Layout
12616 c
12617 \end_layout
12618
12619 \end_inset
12620 </cell>
12621 </row>
12622 <row>
12623 <cell multirow="3" alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12624 \begin_inset Text
12625
12626 \begin_layout Plain Layout
12627 multi-ligne
12628 \end_layout
12629
12630 \end_inset
12631 </cell>
12632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12633 \begin_inset Text
12634
12635 \begin_layout Plain Layout
12636 e
12637 \end_layout
12638
12639 \end_inset
12640 </cell>
12641 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12642 \begin_inset Text
12643
12644 \begin_layout Plain Layout
12645 f
12646 \end_layout
12647
12648 \end_inset
12649 </cell>
12650 </row>
12651 <row>
12652 <cell multirow="4" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12653 \begin_inset Text
12654
12655 \begin_layout Plain Layout
12656
12657 \end_layout
12658
12659 \end_inset
12660 </cell>
12661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12662 \begin_inset Text
12663
12664 \begin_layout Plain Layout
12665 h
12666 \end_layout
12667
12668 \end_inset
12669 </cell>
12670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12671 \begin_inset Text
12672
12673 \begin_layout Plain Layout
12674 i
12675 \end_layout
12676
12677 \end_inset
12678 </cell>
12679 </row>
12680 </lyxtabular>
12681
12682 \end_inset
12683
12684
12685 \end_layout
12686
12687 \begin_layout Standard
12688 La largeur de la cellule multi-ligne est déterminée par la largeur de toute
12689  la colonne.
12690  L'
12691 \family sans
12692 Espacement
12693 \begin_inset space ~
12694 \end_inset
12695
12696 vertical
12697 \family default
12698  décale le contenu de la cellule vers le haut ou le bas selon que sa valeur
12699  est positive ou négative.
12700 \end_layout
12701
12702 \begin_layout Standard
12703 Si la colonne dans laquelle se trouve la multiligne n'a pas de largeur fixée
12704  explicitement, la cellule hérite de l'alignement de la colonne.
12705  Sinon, elle est alignée par défaut à gauche.Pour passer outre le comportement
12706  implicite, vous devez redéfinir la commande 
12707 \series bold
12708
12709 \backslash
12710 multirowsetup
12711 \series default
12712  avec la commande
12713 \end_layout
12714
12715 \begin_layout Standard
12716
12717 \series bold
12718
12719 \backslash
12720 renewcommand{
12721 \backslash
12722 multirowsetup}{
12723 \backslash
12724 centering}
12725 \end_layout
12726
12727 \begin_layout Standard
12728 dans le préambule du document.
12729  Après ça, tous les contenus de cellules multi-lignes du document seront
12730  centrés.
12731  Si vous ne souhaitez utiliser des contenus centrés que pour quelques tableaux,
12732  vous pouvez redéfinir la commande en l'insérant sous forme de code TeX
12733  juste avant le tableau concerné, plutôt que dans le préambule.
12734  Si le texte doit être aligné à droite, remplacez 
12735 \series bold
12736
12737 \backslash
12738 centering
12739 \series default
12740  par 
12741 \series bold
12742
12743 \backslash
12744 raggedleft
12745 \series default
12746 .
12747  Pour revenir à l'alignement à gauche utilisez 
12748 \series bold
12749
12750 \backslash
12751 raggedright
12752 \series default
12753 .
12754 \end_layout
12755
12756 \begin_layout Standard
12757 Voici un exemple de tableau avec une cellule multi-ligne alignée à droite
12758  avec un décalage vertical de -4
12759 \begin_inset space \thinspace{}
12760 \end_inset
12761
12762 mm dans une colonne de 3
12763 \begin_inset space \thinspace{}
12764 \end_inset
12765
12766 cm de large
12767 \begin_inset space ~
12768 \end_inset
12769
12770 :
12771 \end_layout
12772
12773 \begin_layout Standard
12774 \noindent
12775 \align center
12776 \begin_inset ERT
12777 status collapsed
12778
12779 \begin_layout Plain Layout
12780
12781
12782 \backslash
12783 renewcommand{
12784 \backslash
12785 multirowsetup}{
12786 \backslash
12787 raggedleft}
12788 \end_layout
12789
12790 \end_inset
12791
12792
12793 \begin_inset Tabular
12794 <lyxtabular version="3" rows="4" columns="3">
12795 <features rotate="0" tabularvalignment="middle">
12796 <column alignment="center" valignment="top" width="3cm">
12797 <column alignment="center" valignment="top" width="0">
12798 <column alignment="center" valignment="top" width="0">
12799 <row>
12800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12801 \begin_inset Text
12802
12803 \begin_layout Plain Layout
12804 un contenu long
12805 \end_layout
12806
12807 \end_inset
12808 </cell>
12809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12810 \begin_inset Text
12811
12812 \begin_layout Plain Layout
12813 b
12814 \end_layout
12815
12816 \end_inset
12817 </cell>
12818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12819 \begin_inset Text
12820
12821 \begin_layout Plain Layout
12822 c
12823 \end_layout
12824
12825 \end_inset
12826 </cell>
12827 </row>
12828 <row>
12829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12830 \begin_inset Text
12831
12832 \begin_layout Plain Layout
12833 t
12834 \end_layout
12835
12836 \end_inset
12837 </cell>
12838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12839 \begin_inset Text
12840
12841 \begin_layout Plain Layout
12842 n
12843 \end_layout
12844
12845 \end_inset
12846 </cell>
12847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12848 \begin_inset Text
12849
12850 \begin_layout Plain Layout
12851 m
12852 \end_layout
12853
12854 \end_inset
12855 </cell>
12856 </row>
12857 <row>
12858 <cell multirow="3" mroffset="-4mm" alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12859 \begin_inset Text
12860
12861 \begin_layout Plain Layout
12862 multi-ligne
12863 \end_layout
12864
12865 \end_inset
12866 </cell>
12867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12868 \begin_inset Text
12869
12870 \begin_layout Plain Layout
12871 e
12872 \end_layout
12873
12874 \end_inset
12875 </cell>
12876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12877 \begin_inset Text
12878
12879 \begin_layout Plain Layout
12880 f
12881 \end_layout
12882
12883 \end_inset
12884 </cell>
12885 </row>
12886 <row>
12887 <cell multirow="4" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12888 \begin_inset Text
12889
12890 \begin_layout Plain Layout
12891
12892 \end_layout
12893
12894 \end_inset
12895 </cell>
12896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12897 \begin_inset Text
12898
12899 \begin_layout Plain Layout
12900 h
12901 \end_layout
12902
12903 \end_inset
12904 </cell>
12905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12906 \begin_inset Text
12907
12908 \begin_layout Plain Layout
12909 i
12910 \end_layout
12911
12912 \end_inset
12913 </cell>
12914 </row>
12915 </lyxtabular>
12916
12917 \end_inset
12918
12919
12920 \begin_inset ERT
12921 status collapsed
12922
12923 \begin_layout Plain Layout
12924
12925
12926 \backslash
12927 renewcommand{
12928 \backslash
12929 multirowsetup}{
12930 \backslash
12931 raggedright}
12932 \end_layout
12933
12934 \end_inset
12935
12936
12937 \end_layout
12938
12939 \begin_layout Standard
12940 Pour commencer une nouvelle ligne dans une cellule multi-ligne vous pouvez
12941  utiliser un saut de ligne forcé (
12942 \begin_inset space ~
12943 \end_inset
12944
12945 raccourci 
12946 \family sans
12947 Ctrl+Entrée
12948 \family default
12949
12950 \begin_inset space ~
12951 \end_inset
12952
12953 ) mais dans ce cas les limites de cellules ne seront pas respectées comme
12954  on le voit dans ce tableau :
12955 \end_layout
12956
12957 \begin_layout Standard
12958 \noindent
12959 \align center
12960 \begin_inset Tabular
12961 <lyxtabular version="3" rows="3" columns="2">
12962 <features rotate="0" tabularvalignment="middle">
12963 <column alignment="left" valignment="middle" width="2cm">
12964 <column alignment="center" valignment="top" width="0">
12965 <row>
12966 <cell multirow="3" alignment="left" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
12967 \begin_inset Text
12968
12969 \begin_layout Plain Layout
12970 aaa
12971 \begin_inset Newline newline
12972 \end_inset
12973
12974 aaa
12975 \begin_inset Newline newline
12976 \end_inset
12977
12978 mauvaise cellule
12979 \end_layout
12980
12981 \end_inset
12982 </cell>
12983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12984 \begin_inset Text
12985
12986 \begin_layout Plain Layout
12987 ccc
12988 \end_layout
12989
12990 \end_inset
12991 </cell>
12992 </row>
12993 <row>
12994 <cell multirow="4" alignment="left" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
12995 \begin_inset Text
12996
12997 \begin_layout Plain Layout
12998
12999 \end_layout
13000
13001 \end_inset
13002 </cell>
13003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13004 \begin_inset Text
13005
13006 \begin_layout Plain Layout
13007 ddd
13008 \end_layout
13009
13010 \end_inset
13011 </cell>
13012 </row>
13013 <row>
13014 <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13015 \begin_inset Text
13016
13017 \begin_layout Plain Layout
13018 bbb
13019 \end_layout
13020
13021 \end_inset
13022 </cell>
13023 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13024 \begin_inset Text
13025
13026 \begin_layout Plain Layout
13027 eee
13028 \end_layout
13029
13030 \end_inset
13031 </cell>
13032 </row>
13033 </lyxtabular>
13034
13035 \end_inset
13036
13037
13038 \end_layout
13039
13040 \begin_layout Standard
13041 Vous devez donc faire attention avec les saut de lignes forcés.
13042 \end_layout
13043
13044 \begin_layout Subsection
13045
13046 \lang english
13047 Cells with diagonal line(s)
13048 \end_layout
13049
13050 \begin_layout Standard
13051
13052 \lang english
13053 To tell the reader what is meant by column and row headings in a table,
13054  it is helpful to split the first cell of the table by one or two diagonal
13055  lines.
13056  This can be achieved by loading the LaTeX-package 
13057 \series bold
13058 diagbox
13059 \series default
13060 \lang french
13061
13062 \begin_inset Index idx
13063 status collapsed
13064
13065 \begin_layout Plain Layout
13066 Paquetages LaTeX ! diagbox
13067 \end_layout
13068
13069 \end_inset
13070
13071  
13072 \lang english
13073 in the document preamble.
13074  The package provides the command 
13075 \series bold
13076
13077 \backslash
13078 diagbox
13079 \series default
13080  that is inserted as TeX-Code and that can take 2 or 3
13081 \begin_inset space ~
13082 \end_inset
13083
13084 arguments:
13085 \end_layout
13086
13087 \begin_layout Standard
13088
13089 \series bold
13090 \lang english
13091
13092 \backslash
13093 diagbox[options]{lower left}{upper right}
13094 \end_layout
13095
13096 \begin_layout Standard
13097
13098 \series bold
13099 \lang english
13100
13101 \backslash
13102 diagbox[options]{lower left}{upper left}{upper right}
13103 \end_layout
13104
13105 \begin_layout Standard
13106
13107 \lang english
13108 The first scheme divides the cell by a single diagonal line and the arguments
13109  are placed below and above this line.
13110  The second scheme divides the cell by 2
13111 \begin_inset space ~
13112 \end_inset
13113
13114 lines.
13115 \end_layout
13116
13117 \begin_layout Standard
13118 \begin_inset ERT
13119 status collapsed
13120
13121 \begin_layout Plain Layout
13122
13123
13124 \backslash
13125 ifdiagbox
13126 \end_layout
13127
13128 \end_inset
13129
13130
13131 \begin_inset Note Note
13132 status open
13133
13134 \begin_layout Plain Layout
13135 La section suivante ne s'affichera que si vous avez installé le paquetage
13136  LaTeX 
13137 \series bold
13138 diagbox
13139 \series default
13140 .
13141 \end_layout
13142
13143 \end_inset
13144
13145
13146 \end_layout
13147
13148 \begin_layout Standard
13149
13150 \lang english
13151 Here is an example table where 
13152 \series bold
13153
13154 \backslash
13155 diagbox 
13156 \series default
13157 is used in the 2-argument scheme in the first cell:
13158 \begin_inset VSpace medskip
13159 \end_inset
13160
13161
13162 \end_layout
13163
13164 \begin_layout Standard
13165 \noindent
13166
13167 \lang english
13168 \begin_inset Tabular
13169 <lyxtabular version="3" rows="4" columns="4">
13170 <features rotate="0" tabularvalignment="middle">
13171 <column alignment="center" valignment="top" width="0">
13172 <column alignment="center" valignment="top" width="0">
13173 <column alignment="center" valignment="top" width="0">
13174 <column alignment="center" valignment="top" width="0">
13175 <row>
13176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13177 \begin_inset Text
13178
13179 \begin_layout Plain Layout
13180
13181 \lang english
13182 \begin_inset ERT
13183 status collapsed
13184
13185 \begin_layout Plain Layout
13186
13187
13188 \backslash
13189 diagbox{
13190 \end_layout
13191
13192 \end_inset
13193
13194 Name
13195 \begin_inset ERT
13196 status collapsed
13197
13198 \begin_layout Plain Layout
13199
13200 }{
13201 \end_layout
13202
13203 \end_inset
13204
13205 Parameter
13206 \begin_inset ERT
13207 status collapsed
13208
13209 \begin_layout Plain Layout
13210
13211 }
13212 \end_layout
13213
13214 \end_inset
13215
13216
13217 \end_layout
13218
13219 \end_inset
13220 </cell>
13221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13222 \begin_inset Text
13223
13224 \begin_layout Plain Layout
13225
13226 \lang english
13227 Thickness in nm
13228 \end_layout
13229
13230 \end_inset
13231 </cell>
13232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13233 \begin_inset Text
13234
13235 \begin_layout Plain Layout
13236
13237 \lang english
13238 Transparency in %
13239 \end_layout
13240
13241 \end_inset
13242 </cell>
13243 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13244 \begin_inset Text
13245
13246 \begin_layout Plain Layout
13247
13248 \lang english
13249 Hardness in MPa
13250 \end_layout
13251
13252 \end_inset
13253 </cell>
13254 </row>
13255 <row>
13256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13257 \begin_inset Text
13258
13259 \begin_layout Plain Layout
13260
13261 \lang english
13262 Perfect Green
13263 \end_layout
13264
13265 \end_inset
13266 </cell>
13267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13268 \begin_inset Text
13269
13270 \begin_layout Plain Layout
13271
13272 \lang english
13273 45
13274 \end_layout
13275
13276 \end_inset
13277 </cell>
13278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13279 \begin_inset Text
13280
13281 \begin_layout Plain Layout
13282
13283 \lang english
13284 80
13285 \end_layout
13286
13287 \end_inset
13288 </cell>
13289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13290 \begin_inset Text
13291
13292 \begin_layout Plain Layout
13293
13294 \lang english
13295 504
13296 \end_layout
13297
13298 \end_inset
13299 </cell>
13300 </row>
13301 <row>
13302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13303 \begin_inset Text
13304
13305 \begin_layout Plain Layout
13306
13307 \lang english
13308 Dark Multi-P
13309 \end_layout
13310
13311 \end_inset
13312 </cell>
13313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13314 \begin_inset Text
13315
13316 \begin_layout Plain Layout
13317
13318 \lang english
13319 60
13320 \end_layout
13321
13322 \end_inset
13323 </cell>
13324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13325 \begin_inset Text
13326
13327 \begin_layout Plain Layout
13328
13329 \lang english
13330 72
13331 \end_layout
13332
13333 \end_inset
13334 </cell>
13335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13336 \begin_inset Text
13337
13338 \begin_layout Plain Layout
13339
13340 \lang english
13341 982
13342 \end_layout
13343
13344 \end_inset
13345 </cell>
13346 </row>
13347 <row>
13348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13349 \begin_inset Text
13350
13351 \begin_layout Plain Layout
13352
13353 \lang english
13354 Crystal Clear Pro
13355 \end_layout
13356
13357 \end_inset
13358 </cell>
13359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13360 \begin_inset Text
13361
13362 \begin_layout Plain Layout
13363
13364 \lang english
13365 18
13366 \end_layout
13367
13368 \end_inset
13369 </cell>
13370 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13371 \begin_inset Text
13372
13373 \begin_layout Plain Layout
13374
13375 \lang english
13376 86
13377 \end_layout
13378
13379 \end_inset
13380 </cell>
13381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13382 \begin_inset Text
13383
13384 \begin_layout Plain Layout
13385
13386 \lang english
13387 374
13388 \end_layout
13389
13390 \end_inset
13391 </cell>
13392 </row>
13393 </lyxtabular>
13394
13395 \end_inset
13396
13397
13398 \begin_inset VSpace medskip
13399 \end_inset
13400
13401
13402 \end_layout
13403
13404 \begin_layout Standard
13405
13406 \lang english
13407 The 3-argument scheme is for example useful for cross-tables of sports leagues
13408  or distances:
13409 \end_layout
13410
13411 \begin_layout Standard
13412 \noindent
13413 \align center
13414
13415 \lang english
13416 \begin_inset Tabular
13417 <lyxtabular version="3" rows="4" columns="4">
13418 <features rotate="0" tabularvalignment="middle">
13419 <column alignment="center" valignment="top" width="0pt">
13420 <column alignment="center" valignment="top" width="0">
13421 <column alignment="center" valignment="top" width="0">
13422 <column alignment="center" valignment="top" width="0">
13423 <row>
13424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13425 \begin_inset Text
13426
13427 \begin_layout Plain Layout
13428
13429 \lang english
13430 \begin_inset ERT
13431 status collapsed
13432
13433 \begin_layout Plain Layout
13434
13435
13436 \backslash
13437 diagbox{
13438 \end_layout
13439
13440 \end_inset
13441
13442 Team home
13443 \begin_inset ERT
13444 status collapsed
13445
13446 \begin_layout Plain Layout
13447
13448 }{
13449 \end_layout
13450
13451 \end_inset
13452
13453 Result
13454 \begin_inset ERT
13455 status collapsed
13456
13457 \begin_layout Plain Layout
13458
13459 }{
13460 \end_layout
13461
13462 \end_inset
13463
13464 Team away
13465 \begin_inset ERT
13466 status collapsed
13467
13468 \begin_layout Plain Layout
13469
13470 }
13471 \end_layout
13472
13473 \end_inset
13474
13475
13476 \end_layout
13477
13478 \end_inset
13479 </cell>
13480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13481 \begin_inset Text
13482
13483 \begin_layout Plain Layout
13484
13485 \lang english
13486 Tigers
13487 \end_layout
13488
13489 \end_inset
13490 </cell>
13491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13492 \begin_inset Text
13493
13494 \begin_layout Plain Layout
13495
13496 \lang english
13497 Panthers
13498 \end_layout
13499
13500 \end_inset
13501 </cell>
13502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13503 \begin_inset Text
13504
13505 \begin_layout Plain Layout
13506
13507 \lang english
13508 Falcons
13509 \end_layout
13510
13511 \end_inset
13512 </cell>
13513 </row>
13514 <row>
13515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13516 \begin_inset Text
13517
13518 \begin_layout Plain Layout
13519
13520 \lang english
13521 Tigers
13522 \end_layout
13523
13524 \end_inset
13525 </cell>
13526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13527 \begin_inset Text
13528
13529 \begin_layout Plain Layout
13530
13531 \lang english
13532 ---
13533 \end_layout
13534
13535 \end_inset
13536 </cell>
13537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13538 \begin_inset Text
13539
13540 \begin_layout Plain Layout
13541
13542 \lang english
13543 1:3
13544 \end_layout
13545
13546 \end_inset
13547 </cell>
13548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13549 \begin_inset Text
13550
13551 \begin_layout Plain Layout
13552
13553 \lang english
13554 0:1
13555 \end_layout
13556
13557 \end_inset
13558 </cell>
13559 </row>
13560 <row>
13561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13562 \begin_inset Text
13563
13564 \begin_layout Plain Layout
13565
13566 \lang english
13567 Panthers
13568 \end_layout
13569
13570 \end_inset
13571 </cell>
13572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13573 \begin_inset Text
13574
13575 \begin_layout Plain Layout
13576
13577 \lang english
13578 3:1
13579 \end_layout
13580
13581 \end_inset
13582 </cell>
13583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13584 \begin_inset Text
13585
13586 \begin_layout Plain Layout
13587
13588 \lang english
13589 ---
13590 \end_layout
13591
13592 \end_inset
13593 </cell>
13594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13595 \begin_inset Text
13596
13597 \begin_layout Plain Layout
13598
13599 \lang english
13600 0:0
13601 \end_layout
13602
13603 \end_inset
13604 </cell>
13605 </row>
13606 <row>
13607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13608 \begin_inset Text
13609
13610 \begin_layout Plain Layout
13611
13612 \lang english
13613 Falcons
13614 \end_layout
13615
13616 \end_inset
13617 </cell>
13618 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13619 \begin_inset Text
13620
13621 \begin_layout Plain Layout
13622
13623 \lang english
13624 1:0
13625 \end_layout
13626
13627 \end_inset
13628 </cell>
13629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13630 \begin_inset Text
13631
13632 \begin_layout Plain Layout
13633
13634 \lang english
13635 0:0
13636 \end_layout
13637
13638 \end_inset
13639 </cell>
13640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13641 \begin_inset Text
13642
13643 \begin_layout Plain Layout
13644
13645 \lang english
13646 ---
13647 \end_layout
13648
13649 \end_inset
13650 </cell>
13651 </row>
13652 </lyxtabular>
13653
13654 \end_inset
13655
13656
13657 \end_layout
13658
13659 \begin_layout Standard
13660
13661 \lang english
13662 For larger cross-tables one might use split cells in 2 or every corner of
13663  the table like in this example:
13664 \end_layout
13665
13666 \begin_layout Standard
13667 \noindent
13668 \align center
13669
13670 \lang english
13671 \begin_inset Tabular
13672 <lyxtabular version="3" rows="5" columns="5">
13673 <features rotate="0" tabularvalignment="middle">
13674 <column alignment="center" valignment="top" width="0pt">
13675 <column alignment="center" valignment="top" width="0">
13676 <column alignment="center" valignment="top" width="0">
13677 <column alignment="center" valignment="top" width="0">
13678 <column alignment="center" valignment="top" width="0">
13679 <row>
13680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13681 \begin_inset Text
13682
13683 \begin_layout Plain Layout
13684
13685 \lang english
13686 \begin_inset ERT
13687 status open
13688
13689 \begin_layout Plain Layout
13690
13691
13692 \backslash
13693 diagbox{
13694 \end_layout
13695
13696 \end_inset
13697
13698 Team home
13699 \begin_inset ERT
13700 status collapsed
13701
13702 \begin_layout Plain Layout
13703
13704 }{
13705 \end_layout
13706
13707 \end_inset
13708
13709 Result
13710 \begin_inset ERT
13711 status collapsed
13712
13713 \begin_layout Plain Layout
13714
13715 }{
13716 \end_layout
13717
13718 \end_inset
13719
13720 Team away
13721 \begin_inset ERT
13722 status collapsed
13723
13724 \begin_layout Plain Layout
13725
13726 }
13727 \end_layout
13728
13729 \end_inset
13730
13731
13732 \end_layout
13733
13734 \end_inset
13735 </cell>
13736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13737 \begin_inset Text
13738
13739 \begin_layout Plain Layout
13740
13741 \lang english
13742 Tigers
13743 \end_layout
13744
13745 \end_inset
13746 </cell>
13747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13748 \begin_inset Text
13749
13750 \begin_layout Plain Layout
13751
13752 \lang english
13753 Panthers
13754 \end_layout
13755
13756 \end_inset
13757 </cell>
13758 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13759 \begin_inset Text
13760
13761 \begin_layout Plain Layout
13762
13763 \lang english
13764 Falcons
13765 \end_layout
13766
13767 \end_inset
13768 </cell>
13769 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
13770 \begin_inset Text
13771
13772 \begin_layout Plain Layout
13773
13774 \lang english
13775 \begin_inset ERT
13776 status open
13777
13778 \begin_layout Plain Layout
13779
13780
13781 \backslash
13782 diagbox[dir=NE]{
13783 \end_layout
13784
13785 \end_inset
13786
13787 Team home
13788 \begin_inset ERT
13789 status collapsed
13790
13791 \begin_layout Plain Layout
13792
13793 }{
13794 \end_layout
13795
13796 \end_inset
13797
13798 Result
13799 \begin_inset ERT
13800 status collapsed
13801
13802 \begin_layout Plain Layout
13803
13804 }{
13805 \end_layout
13806
13807 \end_inset
13808
13809 Team away
13810 \begin_inset ERT
13811 status collapsed
13812
13813 \begin_layout Plain Layout
13814
13815 }
13816 \end_layout
13817
13818 \end_inset
13819
13820
13821 \end_layout
13822
13823 \end_inset
13824 </cell>
13825 </row>
13826 <row>
13827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13828 \begin_inset Text
13829
13830 \begin_layout Plain Layout
13831
13832 \lang english
13833 Tigers
13834 \end_layout
13835
13836 \end_inset
13837 </cell>
13838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13839 \begin_inset Text
13840
13841 \begin_layout Plain Layout
13842
13843 \lang english
13844 ---
13845 \end_layout
13846
13847 \end_inset
13848 </cell>
13849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13850 \begin_inset Text
13851
13852 \begin_layout Plain Layout
13853
13854 \lang english
13855 1:3
13856 \end_layout
13857
13858 \end_inset
13859 </cell>
13860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13861 \begin_inset Text
13862
13863 \begin_layout Plain Layout
13864
13865 \lang english
13866 0:1
13867 \end_layout
13868
13869 \end_inset
13870 </cell>
13871 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
13872 \begin_inset Text
13873
13874 \begin_layout Plain Layout
13875
13876 \lang english
13877 Tigers
13878 \end_layout
13879
13880 \end_inset
13881 </cell>
13882 </row>
13883 <row>
13884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13885 \begin_inset Text
13886
13887 \begin_layout Plain Layout
13888
13889 \lang english
13890 Panthers
13891 \end_layout
13892
13893 \end_inset
13894 </cell>
13895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13896 \begin_inset Text
13897
13898 \begin_layout Plain Layout
13899
13900 \lang english
13901 3:1
13902 \end_layout
13903
13904 \end_inset
13905 </cell>
13906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13907 \begin_inset Text
13908
13909 \begin_layout Plain Layout
13910
13911 \lang english
13912 ---
13913 \end_layout
13914
13915 \end_inset
13916 </cell>
13917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13918 \begin_inset Text
13919
13920 \begin_layout Plain Layout
13921
13922 \lang english
13923 0:0
13924 \end_layout
13925
13926 \end_inset
13927 </cell>
13928 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
13929 \begin_inset Text
13930
13931 \begin_layout Plain Layout
13932
13933 \lang english
13934 Panthers
13935 \end_layout
13936
13937 \end_inset
13938 </cell>
13939 </row>
13940 <row>
13941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13942 \begin_inset Text
13943
13944 \begin_layout Plain Layout
13945
13946 \lang english
13947 Falcons
13948 \end_layout
13949
13950 \end_inset
13951 </cell>
13952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13953 \begin_inset Text
13954
13955 \begin_layout Plain Layout
13956
13957 \lang english
13958 1:0
13959 \end_layout
13960
13961 \end_inset
13962 </cell>
13963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13964 \begin_inset Text
13965
13966 \begin_layout Plain Layout
13967
13968 \lang english
13969 0:0
13970 \end_layout
13971
13972 \end_inset
13973 </cell>
13974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13975 \begin_inset Text
13976
13977 \begin_layout Plain Layout
13978
13979 \lang english
13980 ---
13981 \end_layout
13982
13983 \end_inset
13984 </cell>
13985 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
13986 \begin_inset Text
13987
13988 \begin_layout Plain Layout
13989
13990 \lang english
13991 Falcons
13992 \end_layout
13993
13994 \end_inset
13995 </cell>
13996 </row>
13997 <row>
13998 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13999 \begin_inset Text
14000
14001 \begin_layout Plain Layout
14002
14003 \lang english
14004 \begin_inset ERT
14005 status open
14006
14007 \begin_layout Plain Layout
14008
14009
14010 \backslash
14011 diagbox[dir=SW]{
14012 \end_layout
14013
14014 \end_inset
14015
14016 Team home
14017 \begin_inset ERT
14018 status collapsed
14019
14020 \begin_layout Plain Layout
14021
14022 }{
14023 \end_layout
14024
14025 \end_inset
14026
14027 Result
14028 \begin_inset ERT
14029 status collapsed
14030
14031 \begin_layout Plain Layout
14032
14033 }{
14034 \end_layout
14035
14036 \end_inset
14037
14038 Team away
14039 \begin_inset ERT
14040 status collapsed
14041
14042 \begin_layout Plain Layout
14043
14044 }
14045 \end_layout
14046
14047 \end_inset
14048
14049
14050 \end_layout
14051
14052 \end_inset
14053 </cell>
14054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14055 \begin_inset Text
14056
14057 \begin_layout Plain Layout
14058
14059 \lang english
14060 Tigers
14061 \end_layout
14062
14063 \end_inset
14064 </cell>
14065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14066 \begin_inset Text
14067
14068 \begin_layout Plain Layout
14069
14070 \lang english
14071 Panthers
14072 \end_layout
14073
14074 \end_inset
14075 </cell>
14076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14077 \begin_inset Text
14078
14079 \begin_layout Plain Layout
14080
14081 \lang english
14082 Falcons
14083 \end_layout
14084
14085 \end_inset
14086 </cell>
14087 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
14088 \begin_inset Text
14089
14090 \begin_layout Plain Layout
14091
14092 \lang english
14093 \begin_inset ERT
14094 status open
14095
14096 \begin_layout Plain Layout
14097
14098
14099 \backslash
14100 diagbox[dir=SE]{
14101 \end_layout
14102
14103 \end_inset
14104
14105 Team home
14106 \begin_inset ERT
14107 status collapsed
14108
14109 \begin_layout Plain Layout
14110
14111 }{
14112 \end_layout
14113
14114 \end_inset
14115
14116 Result
14117 \begin_inset ERT
14118 status collapsed
14119
14120 \begin_layout Plain Layout
14121
14122 }{
14123 \end_layout
14124
14125 \end_inset
14126
14127 Team away
14128 \begin_inset ERT
14129 status collapsed
14130
14131 \begin_layout Plain Layout
14132
14133 }
14134 \end_layout
14135
14136 \end_inset
14137
14138
14139 \end_layout
14140
14141 \end_inset
14142 </cell>
14143 </row>
14144 </lyxtabular>
14145
14146 \end_inset
14147
14148
14149 \end_layout
14150
14151 \begin_layout Standard
14152
14153 \lang english
14154 To rotate the diagonal lines, the command option 
14155 \series bold
14156 dir=direction
14157 \series default
14158  is used.
14159  
14160 \emph on
14161 direction
14162 \emph default
14163  is either 
14164 \series bold
14165 NE
14166 \series default
14167
14168 \series bold
14169 DE
14170 \series default
14171
14172 \series bold
14173 SW
14174 \series default
14175  or 
14176 \series bold
14177 NW
14178 \series default
14179  and represent a point of a compass.
14180  
14181 \series bold
14182 SW
14183 \series default
14184  is for example the south-west corner.
14185  Thus in the lower left cell of the above table the command
14186 \end_layout
14187
14188 \begin_layout Standard
14189
14190 \series bold
14191 \lang english
14192
14193 \backslash
14194 diagbox[dir=SW]{Team home}{Result}{Team away}
14195 \end_layout
14196
14197 \begin_layout Standard
14198
14199 \lang english
14200 is used.
14201  If no direction is given, it will be NW.
14202 \end_layout
14203
14204 \begin_layout Standard
14205
14206 \lang english
14207 The necessary width of split cells is automatically calculated.
14208  Thus if you set a fixed column width smaller than the calculated one, the
14209  cell's content will protrude the cell borders:
14210 \end_layout
14211
14212 \begin_layout Standard
14213 \noindent
14214 \align center
14215
14216 \lang english
14217 \begin_inset Tabular
14218 <lyxtabular version="3" rows="2" columns="2">
14219 <features rotate="0" tabularvalignment="middle">
14220 <column alignment="center" valignment="top" width="3cm">
14221 <column alignment="center" valignment="top" width="0">
14222 <row>
14223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14224 \begin_inset Text
14225
14226 \begin_layout Plain Layout
14227
14228 \lang english
14229 \begin_inset ERT
14230 status collapsed
14231
14232 \begin_layout Plain Layout
14233
14234
14235 \backslash
14236 diagbox{
14237 \end_layout
14238
14239 \end_inset
14240
14241 Name
14242 \begin_inset ERT
14243 status collapsed
14244
14245 \begin_layout Plain Layout
14246
14247 }{
14248 \end_layout
14249
14250 \end_inset
14251
14252 Parameter
14253 \begin_inset ERT
14254 status collapsed
14255
14256 \begin_layout Plain Layout
14257
14258 }
14259 \end_layout
14260
14261 \end_inset
14262
14263
14264 \end_layout
14265
14266 \end_inset
14267 </cell>
14268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14269 \begin_inset Text
14270
14271 \begin_layout Plain Layout
14272
14273 \lang english
14274 Thickness in nm
14275 \end_layout
14276
14277 \end_inset
14278 </cell>
14279 </row>
14280 <row>
14281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14282 \begin_inset Text
14283
14284 \begin_layout Plain Layout
14285
14286 \lang english
14287 Perfect Green
14288 \end_layout
14289
14290 \end_inset
14291 </cell>
14292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14293 \begin_inset Text
14294
14295 \begin_layout Plain Layout
14296
14297 \lang english
14298 45
14299 \end_layout
14300
14301 \end_inset
14302 </cell>
14303 </row>
14304 </lyxtabular>
14305
14306 \end_inset
14307
14308
14309 \end_layout
14310
14311 \begin_layout Standard
14312
14313 \lang english
14314 If you need a certain width for columns with a split cell, use the command
14315  option 
14316 \series bold
14317 width=3cm
14318 \series default
14319  (replace '3cm' by the width you need).
14320  In the following table the width of the first column is set to 4
14321 \begin_inset space \thinspace{}
14322 \end_inset
14323
14324 cm.
14325  For 
14326 \series bold
14327
14328 \backslash
14329 diagbox
14330 \series default
14331  a width of 4
14332 \begin_inset space \thinspace{}
14333 \end_inset
14334
14335 cm + 2
14336 \begin_inset space \thinspace{}
14337 \end_inset
14338
14339
14340 \backslash
14341 tabcolsep is necessary because the overall width is the width for the text
14342  (in this case the 4
14343 \begin_inset space \thinspace{}
14344 \end_inset
14345
14346 cm) plus two times the separation of the text and the cell border.
14347  The calculation of the width cannot be done in the command option of 
14348 \series bold
14349
14350 \backslash
14351 diagbox
14352 \series default
14353  so one needs to create a new length which can be used later.
14354  This is done with the TeX-Code commands
14355 \end_layout
14356
14357 \begin_layout Standard
14358
14359 \series bold
14360
14361 \backslash
14362 newlength{
14363 \backslash
14364 diagtest}
14365 \begin_inset Newline newline
14366 \end_inset
14367
14368
14369 \backslash
14370 setlength{
14371 \backslash
14372 diagtest}{4cm+2
14373 \backslash
14374 tabcolsep}
14375 \end_layout
14376
14377 \begin_layout Standard
14378 \begin_inset ERT
14379 status collapsed
14380
14381 \begin_layout Plain Layout
14382
14383
14384 \backslash
14385 newlength{
14386 \backslash
14387 diagtest}
14388 \end_layout
14389
14390 \begin_layout Plain Layout
14391
14392
14393 \backslash
14394 setlength{
14395 \backslash
14396 diagtest}{4cm+2
14397 \backslash
14398 tabcolsep}
14399 \end_layout
14400
14401 \end_inset
14402
14403
14404 \end_layout
14405
14406 \begin_layout Standard
14407
14408 \lang english
14409 To enable calculations in LaTeX one needs to load the package 
14410 \series bold
14411 calc
14412 \series default
14413 \lang french
14414
14415 \begin_inset Index idx
14416 status collapsed
14417
14418 \begin_layout Plain Layout
14419 Paquetages LaTeX ! calc
14420 \end_layout
14421
14422 \end_inset
14423
14424  
14425 \lang english
14426 in the document preamble.
14427 \end_layout
14428
14429 \begin_layout Standard
14430
14431 \lang english
14432 In this table you can now use the command
14433 \end_layout
14434
14435 \begin_layout Standard
14436
14437 \series bold
14438
14439 \backslash
14440 diagbox[width=
14441 \backslash
14442 diagtest]{A}{B}
14443 \end_layout
14444
14445 \begin_layout Standard
14446
14447 \lang english
14448 in the first cell:
14449 \end_layout
14450
14451 \begin_layout Standard
14452 \noindent
14453 \align center
14454
14455 \lang english
14456 \begin_inset Tabular
14457 <lyxtabular version="3" rows="2" columns="2">
14458 <features rotate="0" tabularvalignment="middle">
14459 <column alignment="center" valignment="top" width="4cm">
14460 <column alignment="center" valignment="top" width="0">
14461 <row>
14462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14463 \begin_inset Text
14464
14465 \begin_layout Plain Layout
14466 \begin_inset ERT
14467 status open
14468
14469 \begin_layout Plain Layout
14470
14471
14472 \backslash
14473 diagbox[width=
14474 \backslash
14475 diagtest]{
14476 \end_layout
14477
14478 \end_inset
14479
14480 A
14481 \begin_inset ERT
14482 status collapsed
14483
14484 \begin_layout Plain Layout
14485
14486 }{
14487 \end_layout
14488
14489 \end_inset
14490
14491 B
14492 \begin_inset ERT
14493 status collapsed
14494
14495 \begin_layout Plain Layout
14496
14497 }
14498 \end_layout
14499
14500 \end_inset
14501
14502
14503 \end_layout
14504
14505 \end_inset
14506 </cell>
14507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14508 \begin_inset Text
14509
14510 \begin_layout Plain Layout
14511
14512 \lang english
14513 Thickness in nm
14514 \end_layout
14515
14516 \end_inset
14517 </cell>
14518 </row>
14519 <row>
14520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14521 \begin_inset Text
14522
14523 \begin_layout Plain Layout
14524
14525 \lang english
14526 Perfect Green
14527 \end_layout
14528
14529 \end_inset
14530 </cell>
14531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14532 \begin_inset Text
14533
14534 \begin_layout Plain Layout
14535
14536 \lang english
14537 45
14538 \end_layout
14539
14540 \end_inset
14541 </cell>
14542 </row>
14543 </lyxtabular>
14544
14545 \end_inset
14546
14547
14548 \end_layout
14549
14550 \begin_layout Standard
14551
14552 \lang english
14553 Note that the split cell needs to be the widest one in the column.
14554  Otherwise the length of the diagonal line cannot be calculated correctly
14555  like in this table:
14556 \end_layout
14557
14558 \begin_layout Standard
14559 \noindent
14560 \align center
14561
14562 \lang english
14563 \begin_inset Tabular
14564 <lyxtabular version="3" rows="2" columns="2">
14565 <features rotate="0" tabularvalignment="middle">
14566 <column alignment="center" valignment="top" width="0pt">
14567 <column alignment="center" valignment="top" width="0">
14568 <row>
14569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14570 \begin_inset Text
14571
14572 \begin_layout Plain Layout
14573 \begin_inset ERT
14574 status collapsed
14575
14576 \begin_layout Plain Layout
14577
14578
14579 \backslash
14580 diagbox{
14581 \end_layout
14582
14583 \end_inset
14584
14585 A
14586 \begin_inset ERT
14587 status collapsed
14588
14589 \begin_layout Plain Layout
14590
14591 }{
14592 \end_layout
14593
14594 \end_inset
14595
14596 B
14597 \begin_inset ERT
14598 status collapsed
14599
14600 \begin_layout Plain Layout
14601
14602 }
14603 \end_layout
14604
14605 \end_inset
14606
14607
14608 \end_layout
14609
14610 \end_inset
14611 </cell>
14612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14613 \begin_inset Text
14614
14615 \begin_layout Plain Layout
14616
14617 \lang english
14618 Thickness in nm
14619 \end_layout
14620
14621 \end_inset
14622 </cell>
14623 </row>
14624 <row>
14625 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14626 \begin_inset Text
14627
14628 \begin_layout Plain Layout
14629
14630 \lang english
14631 Perfect Green
14632 \end_layout
14633
14634 \end_inset
14635 </cell>
14636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14637 \begin_inset Text
14638
14639 \begin_layout Plain Layout
14640
14641 \lang english
14642 45
14643 \end_layout
14644
14645 \end_inset
14646 </cell>
14647 </row>
14648 </lyxtabular>
14649
14650 \end_inset
14651
14652
14653 \end_layout
14654
14655 \begin_layout Standard
14656
14657 \lang english
14658 In this case use the 
14659 \series bold
14660 width
14661 \series default
14662  option of the 
14663 \series bold
14664
14665 \backslash
14666 diagbox
14667 \series default
14668  command.
14669  It is then not necessary to add 2
14670 \backslash
14671 tabcolsep because the cell width is now the width of the column.
14672  In this table a width of 3
14673 \begin_inset space \thinspace{}
14674 \end_inset
14675
14676 cm is used:
14677 \end_layout
14678
14679 \begin_layout Standard
14680 \noindent
14681 \align center
14682
14683 \lang english
14684 \begin_inset Tabular
14685 <lyxtabular version="3" rows="2" columns="2">
14686 <features rotate="0" tabularvalignment="middle">
14687 <column alignment="center" valignment="top" width="0pt">
14688 <column alignment="center" valignment="top" width="0">
14689 <row>
14690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14691 \begin_inset Text
14692
14693 \begin_layout Plain Layout
14694 \begin_inset ERT
14695 status open
14696
14697 \begin_layout Plain Layout
14698
14699
14700 \backslash
14701 diagbox[width=3cm]{
14702 \end_layout
14703
14704 \end_inset
14705
14706 A
14707 \begin_inset ERT
14708 status collapsed
14709
14710 \begin_layout Plain Layout
14711
14712 }{
14713 \end_layout
14714
14715 \end_inset
14716
14717 B
14718 \begin_inset ERT
14719 status collapsed
14720
14721 \begin_layout Plain Layout
14722
14723 }
14724 \end_layout
14725
14726 \end_inset
14727
14728
14729 \end_layout
14730
14731 \end_inset
14732 </cell>
14733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14734 \begin_inset Text
14735
14736 \begin_layout Plain Layout
14737
14738 \lang english
14739 Thickness in nm
14740 \end_layout
14741
14742 \end_inset
14743 </cell>
14744 </row>
14745 <row>
14746 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14747 \begin_inset Text
14748
14749 \begin_layout Plain Layout
14750
14751 \lang english
14752 Perfect Green
14753 \end_layout
14754
14755 \end_inset
14756 </cell>
14757 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14758 \begin_inset Text
14759
14760 \begin_layout Plain Layout
14761
14762 \lang english
14763 45
14764 \end_layout
14765
14766 \end_inset
14767 </cell>
14768 </row>
14769 </lyxtabular>
14770
14771 \end_inset
14772
14773
14774 \end_layout
14775
14776 \begin_layout Standard
14777
14778 \lang english
14779 For multiple text lines in split cells one needs some extra height to fit
14780  the text to the cell.
14781  This can be achieved with the 
14782 \series bold
14783
14784 \backslash
14785 diagbox
14786 \series default
14787  option 
14788 \series bold
14789 height=3cm
14790 \series default
14791  (replace '3cm' by the height you need).
14792  In the following table the command
14793 \end_layout
14794
14795 \begin_layout Standard
14796
14797 \series bold
14798
14799 \backslash
14800 diagbox[width=3cm,height=1.4cm]{A
14801 \backslash
14802
14803 \backslash
14804 B}{C
14805 \backslash
14806
14807 \backslash
14808 D}
14809 \end_layout
14810
14811 \begin_layout Standard
14812
14813 \lang english
14814 is used in the first cell.
14815  The command 
14816 \series bold
14817
14818 \backslash
14819
14820 \backslash
14821
14822 \series default
14823  creates hereby the line break.
14824 \begin_inset Foot
14825 status collapsed
14826
14827 \begin_layout Plain Layout
14828
14829 \lang english
14830 Breaking lines with 
14831 \family sans
14832 Ctrl+Return
14833 \family default
14834  is only possible when the column has a fixed width.
14835 \end_layout
14836
14837 \end_inset
14838
14839
14840 \end_layout
14841
14842 \begin_layout Standard
14843 \noindent
14844 \align center
14845
14846 \lang english
14847 \begin_inset Tabular
14848 <lyxtabular version="3" rows="2" columns="2">
14849 <features rotate="0" tabularvalignment="middle">
14850 <column alignment="center" valignment="top" width="0">
14851 <column alignment="center" valignment="top" width="0">
14852 <row>
14853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14854 \begin_inset Text
14855
14856 \begin_layout Plain Layout
14857 \begin_inset ERT
14858 status open
14859
14860 \begin_layout Plain Layout
14861
14862
14863 \backslash
14864 diagbox[width=3cm,height=1.4cm]{
14865 \end_layout
14866
14867 \end_inset
14868
14869 A
14870 \begin_inset ERT
14871 status collapsed
14872
14873 \begin_layout Plain Layout
14874
14875
14876 \backslash
14877
14878 \backslash
14879
14880 \end_layout
14881
14882 \end_inset
14883
14884 B
14885 \begin_inset ERT
14886 status collapsed
14887
14888 \begin_layout Plain Layout
14889
14890 }{
14891 \end_layout
14892
14893 \end_inset
14894
14895 C
14896 \begin_inset ERT
14897 status collapsed
14898
14899 \begin_layout Plain Layout
14900
14901
14902 \backslash
14903
14904 \backslash
14905
14906 \end_layout
14907
14908 \end_inset
14909
14910 D
14911 \begin_inset ERT
14912 status collapsed
14913
14914 \begin_layout Plain Layout
14915
14916 }
14917 \end_layout
14918
14919 \end_inset
14920
14921
14922 \end_layout
14923
14924 \end_inset
14925 </cell>
14926 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14927 \begin_inset Text
14928
14929 \begin_layout Plain Layout
14930
14931 \lang english
14932 Thickness in nm
14933 \end_layout
14934
14935 \end_inset
14936 </cell>
14937 </row>
14938 <row>
14939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14940 \begin_inset Text
14941
14942 \begin_layout Plain Layout
14943
14944 \lang english
14945 Perfect Green
14946 \end_layout
14947
14948 \end_inset
14949 </cell>
14950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14951 \begin_inset Text
14952
14953 \begin_layout Plain Layout
14954
14955 \lang english
14956 45
14957 \end_layout
14958
14959 \end_inset
14960 </cell>
14961 </row>
14962 </lyxtabular>
14963
14964 \end_inset
14965
14966
14967 \end_layout
14968
14969 \begin_layout Standard
14970 \begin_inset ERT
14971 status collapsed
14972
14973 \begin_layout Plain Layout
14974
14975
14976 \backslash
14977 else
14978 \end_layout
14979
14980 \end_inset
14981
14982
14983 \begin_inset Note Note
14984 status open
14985
14986 \begin_layout Plain Layout
14987 Ce qui suit sera affiché si le paquetage LaTeX 
14988 \series bold
14989 diagbox
14990 \series default
14991  n'est pas installé :
14992 \end_layout
14993
14994 \end_inset
14995
14996
14997 \end_layout
14998
14999 \begin_layout Standard
15000 Vous devez installer le paquetage LaTeX 
15001 \series bold
15002 diagbox
15003 \series default
15004  pour voir le contenu des cette section dans la sortie imprimée.
15005 \end_layout
15006
15007 \begin_layout Standard
15008 \begin_inset ERT
15009 status collapsed
15010
15011 \begin_layout Plain Layout
15012
15013
15014 \backslash
15015 fi
15016 \end_layout
15017
15018 \end_inset
15019
15020
15021 \end_layout
15022
15023 \begin_layout Standard
15024
15025 \lang english
15026 For more info about the LaTeX-package 
15027 \series bold
15028 diagbox
15029 \series default
15030 , see its documentation
15031 \lang french
15032
15033 \begin_inset CommandInset citation
15034 LatexCommand cite
15035 key "diagbox"
15036
15037 \end_inset
15038
15039 .
15040 \end_layout
15041
15042 \begin_layout Section
15043 Les tableaux formels
15044 \begin_inset CommandInset label
15045 LatexCommand label
15046 name "sec:Tableaux-Formels"
15047
15048 \end_inset
15049
15050
15051 \begin_inset Index idx
15052 status collapsed
15053
15054 \begin_layout Plain Layout
15055 Tableau ! Formel
15056 \end_layout
15057
15058 \end_inset
15059
15060
15061 \end_layout
15062
15063 \begin_layout Standard
15064 Dans les livres les tableaux sont souvent mis en forme d'une façon semblable
15065  à celle du tableau
15066 \begin_inset space ~
15067 \end_inset
15068
15069
15070 \begin_inset CommandInset ref
15071 LatexCommand ref
15072 reference "tab:Exemple-tableau-booktabs"
15073
15074 \end_inset
15075
15076 .
15077  Ce genre de tableau est appelé 
15078 \begin_inset Quotes fld
15079 \end_inset
15080
15081
15082 \emph on
15083 formel
15084 \emph default
15085
15086 \begin_inset Quotes frd
15087 \end_inset
15088
15089 .
15090  Pour transformer un tableau en tableau formel, utilisez l'option 
15091 \family sans
15092 Formel
15093 \family default
15094  de l'onglet 
15095 \family sans
15096 Bordures
15097 \family default
15098  de la fenêtre de dialogue 
15099 \family sans
15100 Paramètres
15101 \begin_inset space ~
15102 \end_inset
15103
15104 du
15105 \begin_inset space ~
15106 \end_inset
15107
15108 tableau
15109 \family default
15110 .
15111 \end_layout
15112
15113 \begin_layout Standard
15114 \begin_inset Float table
15115 placement h
15116 wide false
15117 sideways false
15118 status open
15119
15120 \begin_layout Plain Layout
15121 \begin_inset Caption Standard
15122
15123 \begin_layout Plain Layout
15124 \begin_inset CommandInset label
15125 LatexCommand label
15126 name "tab:Exemple-tableau-booktabs"
15127
15128 \end_inset
15129
15130 Exemple de tableau formel
15131 \end_layout
15132
15133 \end_inset
15134
15135
15136 \end_layout
15137
15138 \begin_layout Plain Layout
15139 \align center
15140 \begin_inset Tabular
15141 <lyxtabular version="3" rows="8" columns="4">
15142 <features rotate="0" booktabs="true" tabularvalignment="middle">
15143 <column alignment="center" valignment="top" width="0">
15144 <column alignment="center" valignment="top" width="0">
15145 <column alignment="center" valignment="top" width="0">
15146 <column alignment="center" valignment="top" width="0">
15147 <row>
15148 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
15149 \begin_inset Text
15150
15151 \begin_layout Plain Layout
15152 Système
15153 \end_layout
15154
15155 \end_inset
15156 </cell>
15157 <cell alignment="center" valignment="top" topline="true" usebox="none">
15158 \begin_inset Text
15159
15160 \begin_layout Plain Layout
15161 Chip
15162 \begin_inset space \thinspace{}
15163 \end_inset
15164
15165 1
15166 \end_layout
15167
15168 \end_inset
15169 </cell>
15170 <cell multicolumn="1" alignment="center" valignment="top" topline="true" usebox="none">
15171 \begin_inset Text
15172
15173 \begin_layout Plain Layout
15174 Chip
15175 \begin_inset space \thinspace{}
15176 \end_inset
15177
15178 2
15179 \end_layout
15180
15181 \end_inset
15182 </cell>
15183 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15184 \begin_inset Text
15185
15186 \begin_layout Plain Layout
15187
15188 \end_layout
15189
15190 \end_inset
15191 </cell>
15192 </row>
15193 <row>
15194 <cell alignment="center" valignment="top" rightline="true" usebox="none">
15195 \begin_inset Text
15196
15197 \begin_layout Plain Layout
15198 \begin_inset ERT
15199 status collapsed
15200
15201 \begin_layout Plain Layout
15202
15203
15204 \backslash
15205 cmidrule(r){2-2}
15206 \end_layout
15207
15208 \end_inset
15209
15210
15211 \begin_inset ERT
15212 status collapsed
15213
15214 \begin_layout Plain Layout
15215
15216
15217 \backslash
15218 cmidrule(l){3-4}
15219 \end_layout
15220
15221 \end_inset
15222
15223 Épaisseur du capteur en µm
15224 \end_layout
15225
15226 \end_inset
15227 </cell>
15228 <cell alignment="center" valignment="top" usebox="none">
15229 \begin_inset Text
15230
15231 \begin_layout Plain Layout
15232 300
15233 \end_layout
15234
15235 \end_inset
15236 </cell>
15237 <cell alignment="center" valignment="top" usebox="none">
15238 \begin_inset Text
15239
15240 \begin_layout Plain Layout
15241 300
15242 \end_layout
15243
15244 \end_inset
15245 </cell>
15246 <cell alignment="center" valignment="top" usebox="none">
15247 \begin_inset Text
15248
15249 \begin_layout Plain Layout
15250 700
15251 \end_layout
15252
15253 \end_inset
15254 </cell>
15255 </row>
15256 <row>
15257 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
15258 \begin_inset Text
15259
15260 \begin_layout Plain Layout
15261 Angle du biseau en °
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 <cell alignment="center" valignment="top" topline="true" usebox="none">
15267 \begin_inset Text
15268
15269 \begin_layout Plain Layout
15270 3.55
15271 \end_layout
15272
15273 \end_inset
15274 </cell>
15275 <cell alignment="center" valignment="top" topline="true" usebox="none">
15276 \begin_inset Text
15277
15278 \begin_layout Plain Layout
15279 2.71
15280 \end_layout
15281
15282 \end_inset
15283 </cell>
15284 <cell alignment="center" valignment="top" topline="true" usebox="none">
15285 \begin_inset Text
15286
15287 \begin_layout Plain Layout
15288 7.99
15289 \end_layout
15290
15291 \end_inset
15292 </cell>
15293 </row>
15294 <row topspace="default">
15295 <cell alignment="center" valignment="top" rightline="true" usebox="none">
15296 \begin_inset Text
15297
15298 \begin_layout Plain Layout
15299 Résolution spatiale en µm
15300 \end_layout
15301
15302 \end_inset
15303 </cell>
15304 <cell alignment="center" valignment="top" usebox="none">
15305 \begin_inset Text
15306
15307 \begin_layout Plain Layout
15308 4.26
15309 \end_layout
15310
15311 \end_inset
15312 </cell>
15313 <cell alignment="center" valignment="top" usebox="none">
15314 \begin_inset Text
15315
15316 \begin_layout Plain Layout
15317 10.17
15318 \end_layout
15319
15320 \end_inset
15321 </cell>
15322 <cell alignment="center" valignment="top" usebox="none">
15323 \begin_inset Text
15324
15325 \begin_layout Plain Layout
15326 10.56
15327 \end_layout
15328
15329 \end_inset
15330 </cell>
15331 </row>
15332 <row topspace="default">
15333 <cell alignment="center" valignment="top" rightline="true" usebox="none">
15334 \begin_inset Text
15335
15336 \begin_layout Plain Layout
15337 MTF à 
15338 \begin_inset Formula $f_{\mathrm{max}}$
15339 \end_inset
15340
15341
15342 \end_layout
15343
15344 \end_inset
15345 </cell>
15346 <cell alignment="center" valignment="top" usebox="none">
15347 \begin_inset Text
15348
15349 \begin_layout Plain Layout
15350 0.53
15351 \end_layout
15352
15353 \end_inset
15354 </cell>
15355 <cell alignment="center" valignment="top" usebox="none">
15356 \begin_inset Text
15357
15358 \begin_layout Plain Layout
15359 0.37
15360 \end_layout
15361
15362 \end_inset
15363 </cell>
15364 <cell alignment="center" valignment="top" usebox="none">
15365 \begin_inset Text
15366
15367 \begin_layout Plain Layout
15368 0.39
15369 \end_layout
15370
15371 \end_inset
15372 </cell>
15373 </row>
15374 <row topspace="default">
15375 <cell alignment="center" valignment="top" rightline="true" usebox="none">
15376 \begin_inset Text
15377
15378 \begin_layout Plain Layout
15379 \begin_inset ERT
15380 status collapsed
15381
15382 \begin_layout Plain Layout
15383
15384
15385 \backslash
15386 cmidrule(l{10pt}){1-1}
15387 \end_layout
15388
15389 \end_inset
15390
15391 résolution spatiale LSF
15392 \end_layout
15393
15394 \end_inset
15395 </cell>
15396 <cell alignment="center" valignment="top" usebox="none">
15397 \begin_inset Text
15398
15399 \begin_layout Plain Layout
15400
15401 \end_layout
15402
15403 \end_inset
15404 </cell>
15405 <cell alignment="center" valignment="top" usebox="none">
15406 \begin_inset Text
15407
15408 \begin_layout Plain Layout
15409
15410 \end_layout
15411
15412 \end_inset
15413 </cell>
15414 <cell alignment="center" valignment="top" usebox="none">
15415 \begin_inset Text
15416
15417 \begin_layout Plain Layout
15418
15419 \end_layout
15420
15421 \end_inset
15422 </cell>
15423 </row>
15424 <row>
15425 <cell alignment="center" valignment="top" rightline="true" usebox="none">
15426 \begin_inset Text
15427
15428 \begin_layout Plain Layout
15429 en µm
15430 \end_layout
15431
15432 \end_inset
15433 </cell>
15434 <cell alignment="center" valignment="top" usebox="none">
15435 \begin_inset Text
15436
15437 \begin_layout Plain Layout
15438 129.7
15439 \end_layout
15440
15441 \end_inset
15442 </cell>
15443 <cell alignment="center" valignment="top" usebox="none">
15444 \begin_inset Text
15445
15446 \begin_layout Plain Layout
15447 52.75
15448 \end_layout
15449
15450 \end_inset
15451 </cell>
15452 <cell alignment="center" valignment="top" usebox="none">
15453 \begin_inset Text
15454
15455 \begin_layout Plain Layout
15456 50.78
15457 \end_layout
15458
15459 \end_inset
15460 </cell>
15461 </row>
15462 <row>
15463 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15464 \begin_inset Text
15465
15466 \begin_layout Plain Layout
15467 en % de la taille des pixels
15468 \end_layout
15469
15470 \end_inset
15471 </cell>
15472 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
15473 \begin_inset Text
15474
15475 \begin_layout Plain Layout
15476 76.3
15477 \end_layout
15478
15479 \end_inset
15480 </cell>
15481 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
15482 \begin_inset Text
15483
15484 \begin_layout Plain Layout
15485 95.9
15486 \end_layout
15487
15488 \end_inset
15489 </cell>
15490 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
15491 \begin_inset Text
15492
15493 \begin_layout Plain Layout
15494 92.3
15495 \end_layout
15496
15497 \end_inset
15498 </cell>
15499 </row>
15500 </lyxtabular>
15501
15502 \end_inset
15503
15504
15505 \end_layout
15506
15507 \end_inset
15508
15509
15510 \end_layout
15511
15512 \begin_layout Standard
15513 De l'espace vertical peut être ajouté entre les lignes en utilisant l'onglet
15514  
15515 \family sans
15516 Bordures
15517 \family default
15518  de la fenêtre de dialogue 
15519 \family sans
15520 Paramètres
15521 \begin_inset space ~
15522 \end_inset
15523
15524 du
15525 \begin_inset space ~
15526 \end_inset
15527
15528 tableau
15529 \family default
15530  comme c'est décrit dans la section
15531 \begin_inset space ~
15532 \end_inset
15533
15534
15535 \begin_inset CommandInset ref
15536 LatexCommand ref
15537 reference "sub:Espacement-lignes"
15538
15539 \end_inset
15540
15541 .
15542 \end_layout
15543
15544 \begin_layout Standard
15545 Au contraire des tableaux normaux, les tableaux formels n'ont pas de lignes
15546  verticales.
15547  Les lignes horizontales peuvent être mise en place comme pour les tableaux
15548  normaux mais elles apparaissent avec des épaisseurs différentes dans la
15549  sortie imprimée :
15550 \begin_inset Newline newline
15551 \end_inset
15552
15553 La première et la dernière ligne ont implicitement une épaisseur de 0.08
15554 \begin_inset space \thinspace{}
15555 \end_inset
15556
15557 em alors que les autres lignes ont implicite une épaisseur de 0.05
15558 \begin_inset space \thinspace{}
15559 \end_inset
15560
15561 em.
15562 \end_layout
15563
15564 \begin_layout Standard
15565 Les épaisseurs prises implicitement peuvent être modifiées en utilisant
15566  les lignes de préambule suivantes :
15567 \end_layout
15568
15569 \begin_layout Standard
15570
15571 \series bold
15572
15573 \backslash
15574 let
15575 \backslash
15576 mytoprule
15577 \backslash
15578 toprule
15579 \begin_inset Newline newline
15580 \end_inset
15581
15582
15583 \backslash
15584 renewcommand{
15585 \backslash
15586 toprule}{
15587 \backslash
15588 mytoprule[width]}
15589 \end_layout
15590
15591 \begin_layout Standard
15592 Cet exemple concerne la première ligne, appelée 
15593 \series bold
15594 toprule
15595 \series default
15596 .
15597  Si vous voulez changer l'épaisseur de la dernière ligne, remplacez 
15598 \series bold
15599 toprule
15600 \series default
15601  par 
15602 \series bold
15603 bottomrule
15604 \series default
15605 .
15606  Pour changer l'épaisseur de toutes les lignes intermédiaires, remplacez
15607  
15608 \series bold
15609 toprule
15610 \series default
15611  par 
15612 \series bold
15613 midrule
15614 \series default
15615 .
15616  Vous pouvez utiliser toutes les unités de longueur définies dans l'appendice
15617 \begin_inset space ~
15618 \end_inset
15619
15620
15621 \begin_inset CommandInset ref
15622 LatexCommand ref
15623 reference "cha:Unités-de-longueur"
15624
15625 \end_inset
15626
15627  pour préciser l'épaisseur voulue.
15628 \end_layout
15629
15630 \begin_layout Standard
15631 On peut aussi créer des lignes qui ne font pas toute la largeur du tableau
15632  en mettant une ligne pour une cellule multi-colonne.
15633  LyX va utiliser en interne la commande 
15634 \series bold
15635
15636 \backslash
15637 cmidrule
15638 \series default
15639  pour créer cette ligne.
15640  Sa syntaxe complète est :
15641 \end_layout
15642
15643 \begin_layout Standard
15644
15645 \series bold
15646
15647 \backslash
15648 cmidrule[largeur](rognage){colDépart-colFin}
15649 \end_layout
15650
15651 \begin_layout Standard
15652 Les options de la commande 
15653 \series bold
15654
15655 \backslash
15656 cmidrule
15657 \series default
15658  ne sont pas actuellement gérées par LyX, vous devez donc utiliser du code
15659  TeX pour pouvoir les utiliser.
15660  On peut créer manuellement des lignes 
15661 \series bold
15662
15663 \backslash
15664 mitrales
15665 \series default
15666  en insérant la commande en code TeX comme le premier élément de la première
15667  cellule de la ligne.
15668  La ligne est alors affichée dans la sortie imprimée au dessus de la ligne
15669  en question.
15670 \end_layout
15671
15672 \begin_layout Standard
15673 La valeur implicite pour l'épaisseur des lignes est de 0.03
15674 \begin_inset space \thinspace{}
15675 \end_inset
15676
15677 em.
15678  
15679 \series bold
15680 colDépart
15681 \series default
15682  est le numéro de la colonne dans laquelle la ligne commence et 
15683 \series bold
15684 colFin
15685 \series default
15686  est le numéro de la colonne dans laquelle elle se termine.
15687  La valeur de 
15688 \series bold
15689 colFin
15690 \series default
15691  doit toujours être précisée, même si la ligne ne couvre qu'une seule colonne.
15692  Le paramètre optionnel 
15693 \series bold
15694 rognage
15695 \series default
15696  peut être soit 
15697 \emph on
15698 l{largeurRognage}
15699 \emph default
15700 , ou 
15701 \emph on
15702 r{largeurRognage}
15703 \emph default
15704  où les valeurs de
15705 \emph on
15706  largeurRognage
15707 \emph default
15708  sont aussi optionnelles.
15709  En utilisant par exemple la valeur 
15710 \emph on
15711 l{2pt}
15712 \emph default
15713  pour ce paramètre, la ligne va être rognée de 2
15714 \begin_inset space \thinspace{}
15715 \end_inset
15716
15717 pt à son extrémité gauche.
15718  Si vous ne spécifiez pas de valeur pour 
15719 \emph on
15720 largeurRognage
15721 \emph default
15722  les lignes sont implicitement rognées de 0.5
15723 \begin_inset space \thinspace{}
15724 \end_inset
15725
15726 em.
15727 \end_layout
15728
15729 \begin_layout Standard
15730 \begin_inset VSpace bigskip
15731 \end_inset
15732
15733 Le tableau
15734 \begin_inset space ~
15735 \end_inset
15736
15737
15738 \begin_inset CommandInset ref
15739 LatexCommand ref
15740 reference "tab:Exemple-tableau-booktabs"
15741
15742 \end_inset
15743
15744  a été créé en utilisant les commandes
15745 \end_layout
15746
15747 \begin_layout Standard
15748
15749 \series bold
15750
15751 \backslash
15752 cmidrule(r){2-2}
15753 \backslash
15754 cmidrule(l){3-4}
15755 \end_layout
15756
15757 \begin_layout Standard
15758 au début de la deuxième ligne et
15759 \end_layout
15760
15761 \begin_layout Standard
15762
15763 \series bold
15764
15765 \backslash
15766 cmidrule(l{10pt}){1-1}
15767 \end_layout
15768
15769 \begin_layout Standard
15770 au début de la sixième ligne.
15771 \end_layout
15772
15773 \begin_layout Standard
15774 \begin_inset VSpace bigskip
15775 \end_inset
15776
15777
15778 \end_layout
15779
15780 \begin_layout Standard
15781 Vous pouvez vouloir des commandes 
15782 \series bold
15783
15784 \backslash
15785 cmidrule
15786 \series default
15787 s qui se recouvrent comme pour le tableau
15788 \begin_inset space ~
15789 \end_inset
15790
15791
15792 \begin_inset CommandInset ref
15793 LatexCommand ref
15794 reference "tab:Tableau-booktabs-special"
15795
15796 \end_inset
15797
15798 .
15799  On obtient ce résultat en utilisant la commande suivante en code TeX
15800 \end_layout
15801
15802 \begin_layout Standard
15803
15804 \series bold
15805
15806 \backslash
15807 morecmidrules
15808 \end_layout
15809
15810 \begin_layout Standard
15811 La commande qui a été utilisée pour la deuxième ligne du tableau
15812 \begin_inset space ~
15813 \end_inset
15814
15815
15816 \begin_inset CommandInset ref
15817 LatexCommand ref
15818 reference "tab:Tableau-booktabs-special"
15819
15820 \end_inset
15821
15822  est
15823 \end_layout
15824
15825 \begin_layout Standard
15826
15827 \series bold
15828
15829 \backslash
15830 cmidrule(r){2-2}
15831 \backslash
15832 cmidrule(l){3-4}
15833 \backslash
15834 morecmidrules
15835 \backslash
15836 cmidrule{2-4}
15837 \end_layout
15838
15839 \begin_layout Standard
15840 La commande pour la sixième ligne est
15841 \end_layout
15842
15843 \begin_layout Standard
15844
15845 \series bold
15846
15847 \backslash
15848 midrule
15849 \backslash
15850 morecmidrules
15851 \backslash
15852 cmidrule{3-4}
15853 \end_layout
15854
15855 \begin_layout Standard
15856 \begin_inset VSpace bigskip
15857 \end_inset
15858
15859
15860 \end_layout
15861
15862 \begin_layout Standard
15863 Si vous n'êtes toujours pas satisfait avec l'espacement des lignes de séparation
15864 , vous pouvez utiliser la commande suivante pour produire des lignes qui
15865  font toute la largeur du tableau :
15866 \end_layout
15867
15868 \begin_layout Standard
15869
15870 \series bold
15871
15872 \backslash
15873 specialrule{largeur}{espace au dessus}{espace en dessous}
15874 \end_layout
15875
15876 \begin_layout Standard
15877 Pour plus d'informations sur ces spécialités, nous vous renvoyons au manuel
15878  du paquetage LaTeX 
15879 \series bold
15880 booktabs
15881 \series default
15882  
15883 \begin_inset CommandInset citation
15884 LatexCommand cite
15885 key "booktabs"
15886
15887 \end_inset
15888
15889 .
15890 \begin_inset Index idx
15891 status collapsed
15892
15893 \begin_layout Plain Layout
15894 Paquetages LaTeX ! booktabs
15895 \end_layout
15896
15897 \end_inset
15898
15899
15900 \end_layout
15901
15902 \begin_layout Standard
15903 \begin_inset Float table
15904 placement h
15905 wide false
15906 sideways false
15907 status open
15908
15909 \begin_layout Plain Layout
15910 \begin_inset Caption Standard
15911
15912 \begin_layout Plain Layout
15913 \begin_inset CommandInset label
15914 LatexCommand label
15915 name "tab:Tableau-booktabs-special"
15916
15917 \end_inset
15918
15919 Tableau formel spécial
15920 \end_layout
15921
15922 \end_inset
15923
15924
15925 \end_layout
15926
15927 \begin_layout Plain Layout
15928 \align center
15929 \begin_inset Tabular
15930 <lyxtabular version="3" rows="8" columns="4">
15931 <features rotate="0" booktabs="true" tabularvalignment="middle">
15932 <column alignment="center" valignment="top" width="0">
15933 <column alignment="center" valignment="top" width="0">
15934 <column alignment="center" valignment="top" width="0">
15935 <column alignment="center" valignment="top" width="0">
15936 <row>
15937 <cell alignment="center" valignment="top" topline="true" usebox="none">
15938 \begin_inset Text
15939
15940 \begin_layout Plain Layout
15941 Système
15942 \end_layout
15943
15944 \end_inset
15945 </cell>
15946 <cell alignment="center" valignment="top" topline="true" usebox="none">
15947 \begin_inset Text
15948
15949 \begin_layout Plain Layout
15950 Chip
15951 \begin_inset space \thinspace{}
15952 \end_inset
15953
15954 1
15955 \end_layout
15956
15957 \end_inset
15958 </cell>
15959 <cell multicolumn="1" alignment="center" valignment="top" topline="true" usebox="none">
15960 \begin_inset Text
15961
15962 \begin_layout Plain Layout
15963 Chip
15964 \begin_inset space \thinspace{}
15965 \end_inset
15966
15967 2
15968 \end_layout
15969
15970 \end_inset
15971 </cell>
15972 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15973 \begin_inset Text
15974
15975 \begin_layout Plain Layout
15976
15977 \end_layout
15978
15979 \end_inset
15980 </cell>
15981 </row>
15982 <row>
15983 <cell alignment="center" valignment="top" usebox="none">
15984 \begin_inset Text
15985
15986 \begin_layout Plain Layout
15987 \begin_inset ERT
15988 status collapsed
15989
15990 \begin_layout Plain Layout
15991
15992
15993 \backslash
15994 cmidrule(r){2-2}
15995 \end_layout
15996
15997 \end_inset
15998
15999
16000 \begin_inset ERT
16001 status collapsed
16002
16003 \begin_layout Plain Layout
16004
16005
16006 \backslash
16007 cmidrule(l){3-4}
16008 \end_layout
16009
16010 \end_inset
16011
16012
16013 \begin_inset ERT
16014 status collapsed
16015
16016 \begin_layout Plain Layout
16017
16018
16019 \backslash
16020 morecmidrules 
16021 \end_layout
16022
16023 \end_inset
16024
16025
16026 \begin_inset ERT
16027 status collapsed
16028
16029 \begin_layout Plain Layout
16030
16031
16032 \backslash
16033 cmidrule{2-4}
16034 \end_layout
16035
16036 \end_inset
16037
16038 Epaisseur du capteur en µm
16039 \end_layout
16040
16041 \end_inset
16042 </cell>
16043 <cell alignment="center" valignment="top" usebox="none">
16044 \begin_inset Text
16045
16046 \begin_layout Plain Layout
16047 300
16048 \end_layout
16049
16050 \end_inset
16051 </cell>
16052 <cell alignment="center" valignment="top" usebox="none">
16053 \begin_inset Text
16054
16055 \begin_layout Plain Layout
16056 300
16057 \end_layout
16058
16059 \end_inset
16060 </cell>
16061 <cell alignment="center" valignment="top" usebox="none">
16062 \begin_inset Text
16063
16064 \begin_layout Plain Layout
16065 700
16066 \end_layout
16067
16068 \end_inset
16069 </cell>
16070 </row>
16071 <row>
16072 <cell alignment="center" valignment="top" topline="true" usebox="none">
16073 \begin_inset Text
16074
16075 \begin_layout Plain Layout
16076 Angle biseau en °
16077 \end_layout
16078
16079 \end_inset
16080 </cell>
16081 <cell alignment="center" valignment="top" topline="true" usebox="none">
16082 \begin_inset Text
16083
16084 \begin_layout Plain Layout
16085 3.55
16086 \end_layout
16087
16088 \end_inset
16089 </cell>
16090 <cell alignment="center" valignment="top" topline="true" usebox="none">
16091 \begin_inset Text
16092
16093 \begin_layout Plain Layout
16094 2.71
16095 \end_layout
16096
16097 \end_inset
16098 </cell>
16099 <cell alignment="center" valignment="top" topline="true" usebox="none">
16100 \begin_inset Text
16101
16102 \begin_layout Plain Layout
16103 7.99
16104 \end_layout
16105
16106 \end_inset
16107 </cell>
16108 </row>
16109 <row topspace="default">
16110 <cell alignment="center" valignment="top" usebox="none">
16111 \begin_inset Text
16112
16113 \begin_layout Plain Layout
16114 Résolution spatiale en µm
16115 \end_layout
16116
16117 \end_inset
16118 </cell>
16119 <cell alignment="center" valignment="top" usebox="none">
16120 \begin_inset Text
16121
16122 \begin_layout Plain Layout
16123 4.26
16124 \end_layout
16125
16126 \end_inset
16127 </cell>
16128 <cell alignment="center" valignment="top" usebox="none">
16129 \begin_inset Text
16130
16131 \begin_layout Plain Layout
16132 10.17
16133 \end_layout
16134
16135 \end_inset
16136 </cell>
16137 <cell alignment="center" valignment="top" usebox="none">
16138 \begin_inset Text
16139
16140 \begin_layout Plain Layout
16141 10.56
16142 \end_layout
16143
16144 \end_inset
16145 </cell>
16146 </row>
16147 <row topspace="default">
16148 <cell alignment="center" valignment="top" usebox="none">
16149 \begin_inset Text
16150
16151 \begin_layout Plain Layout
16152 MTF à 
16153 \begin_inset Formula $f_{\mathrm{max}}$
16154 \end_inset
16155
16156
16157 \end_layout
16158
16159 \end_inset
16160 </cell>
16161 <cell alignment="center" valignment="top" usebox="none">
16162 \begin_inset Text
16163
16164 \begin_layout Plain Layout
16165 0.53
16166 \end_layout
16167
16168 \end_inset
16169 </cell>
16170 <cell alignment="center" valignment="top" usebox="none">
16171 \begin_inset Text
16172
16173 \begin_layout Plain Layout
16174 0.37
16175 \end_layout
16176
16177 \end_inset
16178 </cell>
16179 <cell alignment="center" valignment="top" usebox="none">
16180 \begin_inset Text
16181
16182 \begin_layout Plain Layout
16183 0.39
16184 \end_layout
16185
16186 \end_inset
16187 </cell>
16188 </row>
16189 <row>
16190 <cell alignment="center" valignment="top" topline="true" usebox="none">
16191 \begin_inset Text
16192
16193 \begin_layout Plain Layout
16194 \begin_inset ERT
16195 status collapsed
16196
16197 \begin_layout Plain Layout
16198
16199
16200 \backslash
16201 morecmidrules 
16202 \end_layout
16203
16204 \end_inset
16205
16206
16207 \begin_inset ERT
16208 status collapsed
16209
16210 \begin_layout Plain Layout
16211
16212
16213 \backslash
16214 cmidrule{3-4}
16215 \end_layout
16216
16217 \end_inset
16218
16219 résolution spatiale LSF
16220 \end_layout
16221
16222 \end_inset
16223 </cell>
16224 <cell alignment="center" valignment="top" topline="true" usebox="none">
16225 \begin_inset Text
16226
16227 \begin_layout Plain Layout
16228
16229 \end_layout
16230
16231 \end_inset
16232 </cell>
16233 <cell alignment="center" valignment="top" topline="true" usebox="none">
16234 \begin_inset Text
16235
16236 \begin_layout Plain Layout
16237
16238 \end_layout
16239
16240 \end_inset
16241 </cell>
16242 <cell alignment="center" valignment="top" topline="true" usebox="none">
16243 \begin_inset Text
16244
16245 \begin_layout Plain Layout
16246
16247 \end_layout
16248
16249 \end_inset
16250 </cell>
16251 </row>
16252 <row>
16253 <cell alignment="center" valignment="top" usebox="none">
16254 \begin_inset Text
16255
16256 \begin_layout Plain Layout
16257 en µm
16258 \end_layout
16259
16260 \end_inset
16261 </cell>
16262 <cell alignment="center" valignment="top" usebox="none">
16263 \begin_inset Text
16264
16265 \begin_layout Plain Layout
16266 129.7
16267 \end_layout
16268
16269 \end_inset
16270 </cell>
16271 <cell alignment="center" valignment="top" usebox="none">
16272 \begin_inset Text
16273
16274 \begin_layout Plain Layout
16275 52.75
16276 \end_layout
16277
16278 \end_inset
16279 </cell>
16280 <cell alignment="center" valignment="top" usebox="none">
16281 \begin_inset Text
16282
16283 \begin_layout Plain Layout
16284 50.78
16285 \end_layout
16286
16287 \end_inset
16288 </cell>
16289 </row>
16290 <row>
16291 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
16292 \begin_inset Text
16293
16294 \begin_layout Plain Layout
16295 en % de la taille des pixels
16296 \end_layout
16297
16298 \end_inset
16299 </cell>
16300 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
16301 \begin_inset Text
16302
16303 \begin_layout Plain Layout
16304 76.3
16305 \end_layout
16306
16307 \end_inset
16308 </cell>
16309 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
16310 \begin_inset Text
16311
16312 \begin_layout Plain Layout
16313 95.9
16314 \end_layout
16315
16316 \end_inset
16317 </cell>
16318 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
16319 \begin_inset Text
16320
16321 \begin_layout Plain Layout
16322 92.3
16323 \end_layout
16324
16325 \end_inset
16326 </cell>
16327 </row>
16328 </lyxtabular>
16329
16330 \end_inset
16331
16332
16333 \end_layout
16334
16335 \end_inset
16336
16337
16338 \end_layout
16339
16340 \begin_layout Section
16341 Alignement vertical des tableaux
16342 \begin_inset Index idx
16343 status collapsed
16344
16345 \begin_layout Plain Layout
16346 Tableau ! Alignement
16347 \end_layout
16348
16349 \end_inset
16350
16351
16352 \end_layout
16353
16354 \begin_layout Standard
16355 Pour pouvoir être aligné verticalement par rapport au texte, un tableau
16356  doit être à l'intérieur d'une boîte.
16357  La boîte peut alors être alignée comme c'est décrit dans la 
16358 \begin_inset space ~
16359 \end_inset
16360
16361
16362 \begin_inset CommandInset ref
16363 LatexCommand ref
16364 reference "sec:Boîte-Dialogue"
16365
16366 \end_inset
16367
16368 .
16369 \end_layout
16370
16371 \begin_layout Standard
16372 Dans l'exemple qui suit les tableaux sont à l'intérieur d'une boîte de type
16373  minipage
16374 \begin_inset Foot
16375 status open
16376
16377 \begin_layout Plain Layout
16378 Les minipages son décrites dans la section
16379 \begin_inset space ~
16380 \end_inset
16381
16382
16383 \begin_inset CommandInset ref
16384 LatexCommand ref
16385 reference "sec:Minipages"
16386
16387 \end_inset
16388
16389 .
16390 \end_layout
16391
16392 \end_inset
16393
16394  dont la largeur est de 15
16395 \begin_inset space \thinspace{}
16396 \end_inset
16397
16398 col% :
16399 \end_layout
16400
16401 \begin_layout Itemize
16402 test 
16403 \begin_inset Box Frameless
16404 position "t"
16405 hor_pos "c"
16406 has_inner_box 1
16407 inner_pos "c"
16408 use_parbox 0
16409 use_makebox 0
16410 width "15col%"
16411 special "none"
16412 height "1in"
16413 height_special "totalheight"
16414 status collapsed
16415
16416 \begin_layout Plain Layout
16417 \begin_inset Tabular
16418 <lyxtabular version="3" rows="3" columns="3">
16419 <features rotate="0" tabularvalignment="middle">
16420 <column alignment="center" valignment="top" width="0">
16421 <column alignment="center" valignment="top" width="0">
16422 <column alignment="center" valignment="top" width="0">
16423 <row>
16424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16425 \begin_inset Text
16426
16427 \begin_layout Plain Layout
16428 a
16429 \end_layout
16430
16431 \end_inset
16432 </cell>
16433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16434 \begin_inset Text
16435
16436 \begin_layout Plain Layout
16437 d
16438 \end_layout
16439
16440 \end_inset
16441 </cell>
16442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16443 \begin_inset Text
16444
16445 \begin_layout Plain Layout
16446 g
16447 \end_layout
16448
16449 \end_inset
16450 </cell>
16451 </row>
16452 <row>
16453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16454 \begin_inset Text
16455
16456 \begin_layout Plain Layout
16457 b
16458 \end_layout
16459
16460 \end_inset
16461 </cell>
16462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16463 \begin_inset Text
16464
16465 \begin_layout Plain Layout
16466 e
16467 \end_layout
16468
16469 \end_inset
16470 </cell>
16471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16472 \begin_inset Text
16473
16474 \begin_layout Plain Layout
16475 h
16476 \end_layout
16477
16478 \end_inset
16479 </cell>
16480 </row>
16481 <row>
16482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16483 \begin_inset Text
16484
16485 \begin_layout Plain Layout
16486 c
16487 \end_layout
16488
16489 \end_inset
16490 </cell>
16491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16492 \begin_inset Text
16493
16494 \begin_layout Plain Layout
16495 f
16496 \end_layout
16497
16498 \end_inset
16499 </cell>
16500 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16501 \begin_inset Text
16502
16503 \begin_layout Plain Layout
16504 i
16505 \end_layout
16506
16507 \end_inset
16508 </cell>
16509 </row>
16510 </lyxtabular>
16511
16512 \end_inset
16513
16514
16515 \end_layout
16516
16517 \end_inset
16518
16519  test 
16520 \begin_inset ERT
16521 status collapsed
16522
16523 \begin_layout Plain Layout
16524
16525
16526 \backslash
16527 raisebox{0.85
16528 \backslash
16529 baselineskip}{
16530 \end_layout
16531
16532 \end_inset
16533
16534
16535 \begin_inset Box Frameless
16536 position "t"
16537 hor_pos "c"
16538 has_inner_box 1
16539 inner_pos "c"
16540 use_parbox 0
16541 use_makebox 0
16542 width "15col%"
16543 special "none"
16544 height "1in"
16545 height_special "totalheight"
16546 status collapsed
16547
16548 \begin_layout Plain Layout
16549 \begin_inset Tabular
16550 <lyxtabular version="3" rows="3" columns="3">
16551 <features rotate="0" tabularvalignment="middle">
16552 <column alignment="center" valignment="top" width="0">
16553 <column alignment="center" valignment="top" width="0">
16554 <column alignment="center" valignment="top" width="0">
16555 <row>
16556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16557 \begin_inset Text
16558
16559 \begin_layout Plain Layout
16560 a
16561 \end_layout
16562
16563 \end_inset
16564 </cell>
16565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16566 \begin_inset Text
16567
16568 \begin_layout Plain Layout
16569 d
16570 \end_layout
16571
16572 \end_inset
16573 </cell>
16574 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16575 \begin_inset Text
16576
16577 \begin_layout Plain Layout
16578 g
16579 \end_layout
16580
16581 \end_inset
16582 </cell>
16583 </row>
16584 <row>
16585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16586 \begin_inset Text
16587
16588 \begin_layout Plain Layout
16589 b
16590 \end_layout
16591
16592 \end_inset
16593 </cell>
16594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16595 \begin_inset Text
16596
16597 \begin_layout Plain Layout
16598 e
16599 \end_layout
16600
16601 \end_inset
16602 </cell>
16603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16604 \begin_inset Text
16605
16606 \begin_layout Plain Layout
16607 h
16608 \end_layout
16609
16610 \end_inset
16611 </cell>
16612 </row>
16613 <row>
16614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16615 \begin_inset Text
16616
16617 \begin_layout Plain Layout
16618 c
16619 \end_layout
16620
16621 \end_inset
16622 </cell>
16623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16624 \begin_inset Text
16625
16626 \begin_layout Plain Layout
16627 f
16628 \end_layout
16629
16630 \end_inset
16631 </cell>
16632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16633 \begin_inset Text
16634
16635 \begin_layout Plain Layout
16636 i
16637 \end_layout
16638
16639 \end_inset
16640 </cell>
16641 </row>
16642 </lyxtabular>
16643
16644 \end_inset
16645
16646
16647 \end_layout
16648
16649 \end_inset
16650
16651
16652 \begin_inset ERT
16653 status collapsed
16654
16655 \begin_layout Plain Layout
16656
16657 }
16658 \end_layout
16659
16660 \end_inset
16661
16662
16663 \end_layout
16664
16665 \begin_layout Itemize
16666 test 
16667 \begin_inset Box Frameless
16668 position "c"
16669 hor_pos "c"
16670 has_inner_box 1
16671 inner_pos "c"
16672 use_parbox 0
16673 use_makebox 0
16674 width "15col%"
16675 special "none"
16676 height "1in"
16677 height_special "totalheight"
16678 status collapsed
16679
16680 \begin_layout Plain Layout
16681 \begin_inset Tabular
16682 <lyxtabular version="3" rows="3" columns="3">
16683 <features rotate="0" tabularvalignment="middle">
16684 <column alignment="center" valignment="top" width="0">
16685 <column alignment="center" valignment="top" width="0">
16686 <column alignment="center" valignment="top" width="0">
16687 <row>
16688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16689 \begin_inset Text
16690
16691 \begin_layout Plain Layout
16692 a
16693 \end_layout
16694
16695 \end_inset
16696 </cell>
16697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16698 \begin_inset Text
16699
16700 \begin_layout Plain Layout
16701 d
16702 \end_layout
16703
16704 \end_inset
16705 </cell>
16706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16707 \begin_inset Text
16708
16709 \begin_layout Plain Layout
16710 g
16711 \end_layout
16712
16713 \end_inset
16714 </cell>
16715 </row>
16716 <row>
16717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16718 \begin_inset Text
16719
16720 \begin_layout Plain Layout
16721 b
16722 \end_layout
16723
16724 \end_inset
16725 </cell>
16726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16727 \begin_inset Text
16728
16729 \begin_layout Plain Layout
16730 e
16731 \end_layout
16732
16733 \end_inset
16734 </cell>
16735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16736 \begin_inset Text
16737
16738 \begin_layout Plain Layout
16739 h
16740 \end_layout
16741
16742 \end_inset
16743 </cell>
16744 </row>
16745 <row>
16746 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16747 \begin_inset Text
16748
16749 \begin_layout Plain Layout
16750 c
16751 \end_layout
16752
16753 \end_inset
16754 </cell>
16755 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16756 \begin_inset Text
16757
16758 \begin_layout Plain Layout
16759 f
16760 \end_layout
16761
16762 \end_inset
16763 </cell>
16764 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16765 \begin_inset Text
16766
16767 \begin_layout Plain Layout
16768 i
16769 \end_layout
16770
16771 \end_inset
16772 </cell>
16773 </row>
16774 </lyxtabular>
16775
16776 \end_inset
16777
16778
16779 \end_layout
16780
16781 \end_inset
16782
16783
16784 \end_layout
16785
16786 \begin_layout Itemize
16787 test 
16788 \begin_inset Box Frameless
16789 position "b"
16790 hor_pos "c"
16791 has_inner_box 1
16792 inner_pos "c"
16793 use_parbox 0
16794 use_makebox 0
16795 width "15col%"
16796 special "none"
16797 height "1in"
16798 height_special "totalheight"
16799 status collapsed
16800
16801 \begin_layout Plain Layout
16802 \begin_inset Tabular
16803 <lyxtabular version="3" rows="3" columns="3">
16804 <features rotate="0" tabularvalignment="middle">
16805 <column alignment="center" valignment="top" width="0">
16806 <column alignment="center" valignment="top" width="0">
16807 <column alignment="center" valignment="top" width="0">
16808 <row>
16809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16810 \begin_inset Text
16811
16812 \begin_layout Plain Layout
16813 a
16814 \end_layout
16815
16816 \end_inset
16817 </cell>
16818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16819 \begin_inset Text
16820
16821 \begin_layout Plain Layout
16822 d
16823 \end_layout
16824
16825 \end_inset
16826 </cell>
16827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16828 \begin_inset Text
16829
16830 \begin_layout Plain Layout
16831 g
16832 \end_layout
16833
16834 \end_inset
16835 </cell>
16836 </row>
16837 <row>
16838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16839 \begin_inset Text
16840
16841 \begin_layout Plain Layout
16842 b
16843 \end_layout
16844
16845 \end_inset
16846 </cell>
16847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16848 \begin_inset Text
16849
16850 \begin_layout Plain Layout
16851 e
16852 \end_layout
16853
16854 \end_inset
16855 </cell>
16856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16857 \begin_inset Text
16858
16859 \begin_layout Plain Layout
16860 h
16861 \end_layout
16862
16863 \end_inset
16864 </cell>
16865 </row>
16866 <row>
16867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16868 \begin_inset Text
16869
16870 \begin_layout Plain Layout
16871 c
16872 \end_layout
16873
16874 \end_inset
16875 </cell>
16876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16877 \begin_inset Text
16878
16879 \begin_layout Plain Layout
16880 f
16881 \end_layout
16882
16883 \end_inset
16884 </cell>
16885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16886 \begin_inset Text
16887
16888 \begin_layout Plain Layout
16889 i
16890 \end_layout
16891
16892 \end_inset
16893 </cell>
16894 </row>
16895 </lyxtabular>
16896
16897 \end_inset
16898
16899
16900 \end_layout
16901
16902 \end_inset
16903
16904  test 
16905 \begin_inset ERT
16906 status collapsed
16907
16908 \begin_layout Plain Layout
16909
16910
16911 \backslash
16912 raisebox{-0.32
16913 \backslash
16914 baselineskip}{
16915 \end_layout
16916
16917 \end_inset
16918
16919
16920 \begin_inset Box Frameless
16921 position "b"
16922 hor_pos "c"
16923 has_inner_box 1
16924 inner_pos "c"
16925 use_parbox 0
16926 use_makebox 0
16927 width "15col%"
16928 special "none"
16929 height "1in"
16930 height_special "totalheight"
16931 status collapsed
16932
16933 \begin_layout Plain Layout
16934 \begin_inset Tabular
16935 <lyxtabular version="3" rows="3" columns="3">
16936 <features rotate="0" tabularvalignment="middle">
16937 <column alignment="center" valignment="top" width="0">
16938 <column alignment="center" valignment="top" width="0">
16939 <column alignment="center" valignment="top" width="0">
16940 <row>
16941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16942 \begin_inset Text
16943
16944 \begin_layout Plain Layout
16945 a
16946 \end_layout
16947
16948 \end_inset
16949 </cell>
16950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16951 \begin_inset Text
16952
16953 \begin_layout Plain Layout
16954 d
16955 \end_layout
16956
16957 \end_inset
16958 </cell>
16959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16960 \begin_inset Text
16961
16962 \begin_layout Plain Layout
16963 g
16964 \end_layout
16965
16966 \end_inset
16967 </cell>
16968 </row>
16969 <row>
16970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16971 \begin_inset Text
16972
16973 \begin_layout Plain Layout
16974 b
16975 \end_layout
16976
16977 \end_inset
16978 </cell>
16979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16980 \begin_inset Text
16981
16982 \begin_layout Plain Layout
16983 e
16984 \end_layout
16985
16986 \end_inset
16987 </cell>
16988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Plain Layout
16992 h
16993 \end_layout
16994
16995 \end_inset
16996 </cell>
16997 </row>
16998 <row>
16999 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17000 \begin_inset Text
17001
17002 \begin_layout Plain Layout
17003 c
17004 \end_layout
17005
17006 \end_inset
17007 </cell>
17008 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17009 \begin_inset Text
17010
17011 \begin_layout Plain Layout
17012 f
17013 \end_layout
17014
17015 \end_inset
17016 </cell>
17017 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17018 \begin_inset Text
17019
17020 \begin_layout Plain Layout
17021 i
17022 \end_layout
17023
17024 \end_inset
17025 </cell>
17026 </row>
17027 </lyxtabular>
17028
17029 \end_inset
17030
17031
17032 \end_layout
17033
17034 \end_inset
17035
17036
17037 \begin_inset ERT
17038 status collapsed
17039
17040 \begin_layout Plain Layout
17041
17042 }
17043 \end_layout
17044
17045 \end_inset
17046
17047
17048 \end_layout
17049
17050 \begin_layout Standard
17051 Comme vous pouvez le voir, le contenu des premiers tableaux de la première
17052  et de la dernière ligne, n'est pas correctement aligné avec le texte de
17053  la ligne dans laquelle le tableau est inséré.
17054  Pour obtenir cet alignement, vous devez mettre la boîte minipage dans une
17055  boîte élévatrice (raisebox)
17056 \begin_inset Foot
17057 status collapsed
17058
17059 \begin_layout Plain Layout
17060 Les boîtes élévatrices (raiseboxes) sont décrites dans la section
17061 \begin_inset space ~
17062 \end_inset
17063
17064
17065 \begin_inset CommandInset ref
17066 LatexCommand ref
17067 reference "sub:Alignement-Vertical"
17068
17069 \end_inset
17070
17071 .
17072 \end_layout
17073
17074 \end_inset
17075
17076 .
17077  Dans l'exemple précédent, le deuxième tableau de la première ligne est
17078  aligné en utilisant la commande en code TeX suivante 
17079 \end_layout
17080
17081 \begin_layout Standard
17082
17083 \series bold
17084
17085 \backslash
17086 raisebox{0.85
17087 \backslash
17088 baselineskip}{
17089 \end_layout
17090
17091 \begin_layout Standard
17092 placée juste avant la boîte minipage.
17093  Après la boîte on insère l'accolade fermante en code TeX.
17094  Pour le deuxième tableau de la dernière ligne, la commande 
17095 \end_layout
17096
17097 \begin_layout Standard
17098
17099 \series bold
17100
17101 \backslash
17102 raisebox{-0.32
17103 \backslash
17104 baselineskip}{
17105 \end_layout
17106
17107 \begin_layout Standard
17108 est utilisée.
17109 \end_layout
17110
17111 \begin_layout Standard
17112 \begin_inset Note Greyedout
17113 status open
17114
17115 \begin_layout Plain Layout
17116
17117 \series bold
17118 Note:
17119 \series default
17120  L'alignement entre le contenu de la ligne du tableau et le texte de la
17121  ligne qui l'entoure ne peut pas être parfait.
17122  Le facteur utilisé dans la commande 
17123 \series bold
17124
17125 \backslash
17126 raisebox
17127 \series default
17128  pour obtenir cet alignement dépend de la police de caractères du document,
17129  de la taille de la police et de l'épaisseur des lignes du tableau.
17130 \end_layout
17131
17132 \end_inset
17133
17134
17135 \end_layout
17136
17137 \begin_layout Section
17138 Tableaux colorés
17139 \begin_inset CommandInset label
17140 LatexCommand label
17141 name "sec:Tableaux-Colorés"
17142
17143 \end_inset
17144
17145
17146 \begin_inset Index idx
17147 status collapsed
17148
17149 \begin_layout Plain Layout
17150 Tableau ! Coloré
17151 \end_layout
17152
17153 \end_inset
17154
17155
17156 \end_layout
17157
17158 \begin_layout Subsection
17159 Cellules colorées
17160 \begin_inset Index idx
17161 status collapsed
17162
17163 \begin_layout Plain Layout
17164 Couleur des tableaux ! Pour les cellules
17165 \end_layout
17166
17167 \end_inset
17168
17169
17170 \begin_inset Index idx
17171 status collapsed
17172
17173 \begin_layout Plain Layout
17174 Couleur ! Pour les cellules de tableau
17175 \end_layout
17176
17177 \end_inset
17178
17179
17180 \end_layout
17181
17182 \begin_layout Standard
17183 \begin_inset Float table
17184 placement h
17185 wide false
17186 sideways false
17187 status open
17188
17189 \begin_layout Plain Layout
17190 \begin_inset Caption Standard
17191
17192 \begin_layout Plain Layout
17193 \begin_inset CommandInset label
17194 LatexCommand label
17195 name "tab:Tableau-coloré-sans-colortbl"
17196
17197 \end_inset
17198
17199 Tableau coloré sans utiliser le paquetage  
17200 \series bold
17201 colortbl
17202 \series default
17203
17204 \begin_inset Argument 1
17205 status open
17206
17207 \begin_layout Plain Layout
17208 Tableau sans colortbl
17209 \end_layout
17210
17211 \end_inset
17212
17213
17214 \end_layout
17215
17216 \end_inset
17217
17218
17219 \end_layout
17220
17221 \begin_layout Plain Layout
17222 \align center
17223 \begin_inset Tabular
17224 <lyxtabular version="3" rows="3" columns="3">
17225 <features rotate="0" tabularvalignment="middle">
17226 <column alignment="center" valignment="top" width="0">
17227 <column alignment="center" valignment="top" width="0">
17228 <column alignment="center" valignment="top" width="0">
17229 <row>
17230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17231 \begin_inset Text
17232
17233 \begin_layout Plain Layout
17234
17235 \color green
17236 a
17237 \end_layout
17238
17239 \end_inset
17240 </cell>
17241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17242 \begin_inset Text
17243
17244 \begin_layout Plain Layout
17245
17246 \color red
17247 b
17248 \end_layout
17249
17250 \end_inset
17251 </cell>
17252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17253 \begin_inset Text
17254
17255 \begin_layout Plain Layout
17256
17257 \color red
17258 c
17259 \end_layout
17260
17261 \end_inset
17262 </cell>
17263 </row>
17264 <row>
17265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17266 \begin_inset Text
17267
17268 \begin_layout Plain Layout
17269
17270 \color green
17271 d
17272 \end_layout
17273
17274 \end_inset
17275 </cell>
17276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17277 \begin_inset Text
17278
17279 \begin_layout Plain Layout
17280
17281 \color blue
17282 e
17283 \end_layout
17284
17285 \end_inset
17286 </cell>
17287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17288 \begin_inset Text
17289
17290 \begin_layout Plain Layout
17291
17292 \color blue
17293 f
17294 \end_layout
17295
17296 \end_inset
17297 </cell>
17298 </row>
17299 <row>
17300 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17301 \begin_inset Text
17302
17303 \begin_layout Plain Layout
17304
17305 \color green
17306 g
17307 \end_layout
17308
17309 \end_inset
17310 </cell>
17311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17312 \begin_inset Text
17313
17314 \begin_layout Plain Layout
17315
17316 \color blue
17317 h
17318 \end_layout
17319
17320 \end_inset
17321 </cell>
17322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17323 \begin_inset Text
17324
17325 \begin_layout Plain Layout
17326
17327 \color blue
17328 i
17329 \end_layout
17330
17331 \end_inset
17332 </cell>
17333 </row>
17334 </lyxtabular>
17335
17336 \end_inset
17337
17338
17339 \end_layout
17340
17341 \end_inset
17342
17343
17344 \end_layout
17345
17346 \begin_layout Standard
17347 Si vous voulez seulement avoir du texte en couleur, sélectionnez les cellules
17348  et choisissez une couleur dans le menu 
17349 \family sans
17350 Édition\SpecialChar \menuseparator
17351 Style
17352 \begin_inset space ~
17353 \end_inset
17354
17355 de
17356 \begin_inset space ~
17357 \end_inset
17358
17359 Texte
17360 \family default
17361 .
17362  C'est ce qui a été utilisé pour créer le tableau
17363 \begin_inset space ~
17364 \end_inset
17365
17366
17367 \begin_inset CommandInset ref
17368 LatexCommand ref
17369 reference "tab:Tableau-coloré-sans-colortbl"
17370
17371 \end_inset
17372
17373 .
17374  Dans tous les autres cas vous aurez à utiliser le paquetage LaTeX 
17375 \series bold
17376 colortbl
17377 \series default
17378 .
17379 \begin_inset Index idx
17380 status collapsed
17381
17382 \begin_layout Plain Layout
17383 Paquetages LaTeX ! colortbl
17384 \end_layout
17385
17386 \end_inset
17387
17388
17389 \end_layout
17390
17391 \begin_layout Standard
17392 \begin_inset ERT
17393 status collapsed
17394
17395 \begin_layout Plain Layout
17396
17397
17398 \backslash
17399 ifcolortbl
17400 \end_layout
17401
17402 \end_inset
17403
17404
17405 \begin_inset Note Note
17406 status open
17407
17408 \begin_layout Plain Layout
17409 La section qui suit ne sera affichée que si vous avez installé le paquetage
17410  LaTeX 
17411 \series bold
17412 colortbl
17413 \series default
17414 .
17415 \end_layout
17416
17417 \end_inset
17418
17419
17420 \end_layout
17421
17422 \begin_layout Standard
17423 Pour créer des tableaux colorés, vous devez charger le paquetage
17424 \series bold
17425  colortbl
17426 \series default
17427  dans le préambule avec la ligne
17428 \end_layout
17429
17430 \begin_layout Standard
17431
17432 \series bold
17433
17434 \backslash
17435 usepackage{colortbl}
17436 \end_layout
17437
17438 \begin_layout Standard
17439 On choisit la couleur d'une colonne avec la commande 
17440 \end_layout
17441
17442 \begin_layout Standard
17443
17444 \series bold
17445
17446 \backslash
17447 columncolor{nom de couleur}
17448 \end_layout
17449
17450 \begin_layout Standard
17451 à l'intérieur d'une commande 
17452 \series bold
17453 >{ }
17454 \series default
17455 .
17456  Vous trouverez plus d'information sur la commande 
17457 \series bold
17458 >{}
17459 \series default
17460  dans la section
17461 \begin_inset space ~
17462 \end_inset
17463
17464
17465 \begin_inset CommandInset ref
17466 LatexCommand ref
17467 reference "sub:Calculs-multicolonnes"
17468
17469 \end_inset
17470
17471 .
17472 \end_layout
17473
17474 \begin_layout Standard
17475 Les noms de couleurs suivants sont prédéfinis :
17476 \end_layout
17477
17478 \begin_layout Standard
17479
17480 \family sans
17481 red
17482 \family default
17483  (rouge), 
17484 \family sans
17485 green
17486 \family default
17487  (vert), 
17488 \family sans
17489 yellow
17490 \family default
17491  (jaune), 
17492 \family sans
17493 blue
17494 \family default
17495  (bleu), 
17496 \family sans
17497 cyan
17498 \family default
17499
17500 \family sans
17501 magenta
17502 \family default
17503
17504 \family sans
17505 black 
17506 \family default
17507 (noir) et 
17508 \family sans
17509 white 
17510 \family default
17511 (blanc)
17512 \end_layout
17513
17514 \begin_layout Standard
17515 \begin_inset VSpace medskip
17516 \end_inset
17517
17518
17519 \end_layout
17520
17521 \begin_layout Standard
17522 Si vous ajoutez les options
17523 \end_layout
17524
17525 \begin_layout Standard
17526
17527 \series bold
17528 usenames,dvipsnames
17529 \end_layout
17530
17531 \begin_layout Standard
17532 aux options de la classe de document dans les paramètres du document, vous
17533  pouvez utiliser 61
17534 \begin_inset space ~
17535 \end_inset
17536
17537 couleurs supplémentaires.
17538  Ces couleurs sont listées dans l'appendice
17539 \begin_inset space ~
17540 \end_inset
17541
17542
17543 \begin_inset CommandInset ref
17544 LatexCommand ref
17545 reference "chap:Liste-de-noms-de-couleur-dvips"
17546
17547 \end_inset
17548
17549 .
17550  Une de ces couleurs, 
17551 \family sans
17552 Maroon
17553 \family default
17554 , est utilisée comme exemple dans le tableau
17555 \begin_inset space ~
17556 \end_inset
17557
17558
17559 \begin_inset CommandInset ref
17560 LatexCommand ref
17561 reference "tab:Tableau-coloré-avec-colortbl"
17562
17563 \end_inset
17564
17565 .
17566 \end_layout
17567
17568 \begin_layout Standard
17569 \begin_inset VSpace medskip
17570 \end_inset
17571
17572
17573 \end_layout
17574
17575 \begin_layout Standard
17576 Vous pouvez aussi définir votre propre couleur avec la commande
17577 \end_layout
17578
17579 \begin_layout Standard
17580
17581 \series bold
17582
17583 \backslash
17584 definecolor{nom de la couleur}{modèle de couleur}{valeurs de couleur}
17585 \end_layout
17586
17587 \begin_layout Standard
17588 Le modèle de couleur peut être
17589 \end_layout
17590
17591 \begin_layout Labeling
17592 \labelwidthstring 00.00.0000
17593 cmyk
17594 \begin_inset space ~
17595 \end_inset
17596
17597 : cyan, magenta, jaune (yellow), noir (black)
17598 \end_layout
17599
17600 \begin_layout Labeling
17601 \labelwidthstring 00.00.0000
17602 rgb
17603 \begin_inset space ~
17604 \end_inset
17605
17606 : rouge (red), vert (green), bleu (blue)
17607 \end_layout
17608
17609 \begin_layout Labeling
17610 \labelwidthstring 00.00.0000
17611 gray
17612 \begin_inset space ~
17613 \end_inset
17614
17615 : dégradé de gris (gray)
17616 \end_layout
17617
17618 \begin_layout Standard
17619 et les valeurs de couleur sont des nombres compris entre 0 et 1, séparés
17620  par des virgules qui décrivent la couleur dans le modèle de couleur choisi.
17621 \end_layout
17622
17623 \begin_layout Standard
17624 Vous pouvez par exemple définir la couleur 
17625 \begin_inset Quotes eld
17626 \end_inset
17627
17628
17629 \emph on
17630 vertfonce
17631 \begin_inset Quotes erd
17632 \end_inset
17633
17634  dans le préambule avec la ligne
17635 \end_layout
17636
17637 \begin_layout Standard
17638
17639 \series bold
17640
17641 \backslash
17642 definecolor{vertfonce}{cmyk}{0.5, 0, 1, 0.5}
17643 \end_layout
17644
17645 \begin_layout Standard
17646 et la couleur "
17647 \emph on
17648 grisclair
17649 \emph default
17650 " avec
17651 \end_layout
17652
17653 \begin_layout Standard
17654
17655 \series bold
17656
17657 \backslash
17658 definecolor{grisclair}{gray}{0.8}
17659 \end_layout
17660
17661 \begin_layout Standard
17662 \begin_inset VSpace medskip
17663 \end_inset
17664
17665
17666 \end_layout
17667
17668 \begin_layout Standard
17669 Les lignes sont colorées avec la commande
17670 \end_layout
17671
17672 \begin_layout Standard
17673
17674 \series bold
17675
17676 \backslash
17677 rowcolor{nom de la couleur}
17678 \end_layout
17679
17680 \begin_layout Standard
17681 et les cellules sont colorées avec la commande
17682 \end_layout
17683
17684 \begin_layout Standard
17685
17686 \series bold
17687
17688 \backslash
17689 cellcolor{nom de la couleur}
17690 \end_layout
17691
17692 \begin_layout Standard
17693 Les deux commandes sont insérées au début d'une cellule comme du code TeX.
17694 \end_layout
17695
17696 \begin_layout Standard
17697 Pour colorer de caractères dans un tableau, sélectionnez les cellules et
17698  choisissez une couleur dans le menu 
17699 \family sans
17700 Édition\SpecialChar \menuseparator
17701 Style
17702 \begin_inset space ~
17703 \end_inset
17704
17705 de
17706 \begin_inset space ~
17707 \end_inset
17708
17709 Texte
17710 \family default
17711 .
17712  Si une cellule contient du code TeX, faites bien attention à ne colorer
17713  que le texte, sinon le code TeX coloré provoquera des erreurs LaTeX.
17714 \end_layout
17715
17716 \begin_layout Standard
17717 \begin_inset Note Greyedout
17718 status open
17719
17720 \begin_layout Plain Layout
17721
17722 \series bold
17723 Note:
17724 \series default
17725  Tous les visualiseurs DVI ne sont pas capables d'afficher les couleurs
17726  définies par l'utilisateur.
17727 \end_layout
17728
17729 \end_inset
17730
17731
17732 \end_layout
17733
17734 \begin_layout Standard
17735 \begin_inset VSpace bigskip
17736 \end_inset
17737
17738
17739 \end_layout
17740
17741 \begin_layout Standard
17742 Pour créer le tableau
17743 \begin_inset space ~
17744 \end_inset
17745
17746
17747 \begin_inset CommandInset ref
17748 LatexCommand ref
17749 reference "tab:Tableau-coloré-avec-colortbl"
17750
17751 \end_inset
17752
17753  faites ce qui suit : La couleur de la première colonne doit être 
17754 \emph on
17755 vertfonce
17756 \emph default
17757 .
17758  On insère donc la commande
17759 \end_layout
17760
17761 \begin_layout Standard
17762
17763 \series bold
17764 >{
17765 \backslash
17766 columncolor{vertfonce}
17767 \backslash
17768 centering}c
17769 \end_layout
17770
17771 \begin_layout Standard
17772 en code TeX pour cette colonne.
17773  La première ligne doit être bleue clair, d'où la commande en code TeX
17774 \end_layout
17775
17776 \begin_layout Standard
17777
17778 \series bold
17779
17780 \backslash
17781 rowcolor{cyan}
17782 \end_layout
17783
17784 \begin_layout Standard
17785 qui est insérée dans la première cellule de cette ligne.
17786  Notez que cela annule la couleur de colonne pour la première cellule.
17787  La dernière cellule de la dernière ligne est colorée en marron
17788 \series bold
17789  
17790 \series default
17791 en insérant en code TeX la commande
17792 \end_layout
17793
17794 \begin_layout Standard
17795
17796 \series bold
17797
17798 \backslash
17799 cellcolor{Maroon}
17800 \end_layout
17801
17802 \begin_layout Standard
17803 Les caractères peuvent maintenant être colorés en utilisant le menu 
17804 \family sans
17805 Édition\SpecialChar \menuseparator
17806 Style
17807 \begin_inset space ~
17808 \end_inset
17809
17810 de
17811 \begin_inset space ~
17812 \end_inset
17813
17814 Texte
17815 \family default
17816 .
17817 \end_layout
17818
17819 \begin_layout Standard
17820 \begin_inset Float table
17821 placement h
17822 wide false
17823 sideways false
17824 status open
17825
17826 \begin_layout Plain Layout
17827 \begin_inset Caption Standard
17828
17829 \begin_layout Plain Layout
17830 \begin_inset CommandInset label
17831 LatexCommand label
17832 name "tab:Tableau-coloré-avec-colortbl"
17833
17834 \end_inset
17835
17836 Tableau coloré en utilisant le paquetage 
17837 \series bold
17838 colortbl
17839 \series default
17840
17841 \begin_inset Argument 1
17842 status collapsed
17843
17844 \begin_layout Plain Layout
17845 Tableau avec colortbl
17846 \end_layout
17847
17848 \end_inset
17849
17850
17851 \end_layout
17852
17853 \end_inset
17854
17855
17856 \end_layout
17857
17858 \begin_layout Plain Layout
17859 \align center
17860 \begin_inset Tabular
17861 <lyxtabular version="3" rows="3" columns="3">
17862 <features rotate="0" tabularvalignment="middle">
17863 <column alignment="center" valignment="top" width="0" special=">{\columncolor{darkgreen}\centering}c">
17864 <column alignment="center" valignment="top" width="0">
17865 <column alignment="center" valignment="top" width="0">
17866 <row>
17867 <cell alignment="center" valignment="top" usebox="none">
17868 \begin_inset Text
17869
17870 \begin_layout Plain Layout
17871 \begin_inset ERT
17872 status collapsed
17873
17874 \begin_layout Plain Layout
17875
17876
17877 \backslash
17878 rowcolor{cyan}
17879 \end_layout
17880
17881 \end_inset
17882
17883
17884 \color magenta
17885 a
17886 \end_layout
17887
17888 \end_inset
17889 </cell>
17890 <cell alignment="center" valignment="top" usebox="none">
17891 \begin_inset Text
17892
17893 \begin_layout Plain Layout
17894
17895 \color red
17896 b
17897 \end_layout
17898
17899 \end_inset
17900 </cell>
17901 <cell alignment="center" valignment="top" usebox="none">
17902 \begin_inset Text
17903
17904 \begin_layout Plain Layout
17905
17906 \color red
17907 c
17908 \end_layout
17909
17910 \end_inset
17911 </cell>
17912 </row>
17913 <row>
17914 <cell alignment="center" valignment="top" usebox="none">
17915 \begin_inset Text
17916
17917 \begin_layout Plain Layout
17918
17919 \color yellow
17920 d
17921 \end_layout
17922
17923 \end_inset
17924 </cell>
17925 <cell alignment="center" valignment="top" usebox="none">
17926 \begin_inset Text
17927
17928 \begin_layout Plain Layout
17929
17930 \color blue
17931 e
17932 \end_layout
17933
17934 \end_inset
17935 </cell>
17936 <cell alignment="center" valignment="top" usebox="none">
17937 \begin_inset Text
17938
17939 \begin_layout Plain Layout
17940
17941 \color blue
17942 f
17943 \end_layout
17944
17945 \end_inset
17946 </cell>
17947 </row>
17948 <row>
17949 <cell alignment="center" valignment="top" usebox="none">
17950 \begin_inset Text
17951
17952 \begin_layout Plain Layout
17953
17954 \color yellow
17955 g
17956 \end_layout
17957
17958 \end_inset
17959 </cell>
17960 <cell alignment="center" valignment="top" usebox="none">
17961 \begin_inset Text
17962
17963 \begin_layout Plain Layout
17964
17965 \color blue
17966 h
17967 \end_layout
17968
17969 \end_inset
17970 </cell>
17971 <cell alignment="center" valignment="top" usebox="none">
17972 \begin_inset Text
17973
17974 \begin_layout Plain Layout
17975 \begin_inset ERT
17976 status collapsed
17977
17978 \begin_layout Plain Layout
17979
17980
17981 \backslash
17982 cellcolor{Maroon}
17983 \end_layout
17984
17985 \end_inset
17986
17987
17988 \color green
17989 i
17990 \end_layout
17991
17992 \end_inset
17993 </cell>
17994 </row>
17995 </lyxtabular>
17996
17997 \end_inset
17998
17999
18000 \end_layout
18001
18002 \end_inset
18003
18004
18005 \end_layout
18006
18007 \begin_layout Standard
18008 \begin_inset ERT
18009 status collapsed
18010
18011 \begin_layout Plain Layout
18012
18013
18014 \backslash
18015 else
18016 \end_layout
18017
18018 \end_inset
18019
18020
18021 \begin_inset Note Note
18022 status open
18023
18024 \begin_layout Plain Layout
18025 Ce qui suit sera affiché si le paquetage 
18026 \series bold
18027 colortbl
18028 \series default
18029  n'est pas installé :
18030 \end_layout
18031
18032 \end_inset
18033
18034
18035 \end_layout
18036
18037 \begin_layout Standard
18038 Vous devez installer le paquetage 
18039 \series bold
18040 colortbl
18041 \series default
18042  pour voir le contenu des cette section dans la sortie imprimée.
18043 \end_layout
18044
18045 \begin_layout Standard
18046 \begin_inset ERT
18047 status collapsed
18048
18049 \begin_layout Plain Layout
18050
18051
18052 \backslash
18053 fi
18054 \end_layout
18055
18056 \end_inset
18057
18058
18059 \end_layout
18060
18061 \begin_layout Subsection
18062
18063 \lang english
18064 Colored Rows
18065 \lang french
18066
18067 \begin_inset Index idx
18068 status collapsed
18069
18070 \begin_layout Plain Layout
18071 Tableau Coloré ! pour
18072 \lang english
18073  Rows
18074 \end_layout
18075
18076 \end_inset
18077
18078
18079 \begin_inset Index idx
18080 status collapsed
18081
18082 \begin_layout Plain Layout
18083 Couleur ! Pour les 
18084 \lang english
18085 Table Rows
18086 \end_layout
18087
18088 \end_inset
18089
18090
18091 \end_layout
18092
18093 \begin_layout Standard
18094
18095 \lang english
18096 In case every second table row needs to be colored there is an alternative
18097  to the method described in the previous section: One loads the package
18098 \lang french
18099  
18100 \series bold
18101 xcolor
18102 \series default
18103
18104 \begin_inset Index idx
18105 status collapsed
18106
18107 \begin_layout Plain Layout
18108 Paquetages LaTeX ! xcolor
18109 \begin_inset ERT
18110 status collapsed
18111
18112 \begin_layout Plain Layout
18113
18114
18115 \backslash
18116 vspace{4mm}
18117 \end_layout
18118
18119 \end_inset
18120
18121
18122 \end_layout
18123
18124 \end_inset
18125
18126  
18127 \lang english
18128 in the document preamble with the command
18129 \end_layout
18130
18131 \begin_layout Standard
18132
18133 \series bold
18134
18135 \backslash
18136 usepackage[table]{xcolor}
18137 \end_layout
18138
18139 \begin_layout Standard
18140
18141 \series bold
18142 \lang english
18143 xcolor
18144 \series default
18145  automatically loads also the package
18146 \lang french
18147  
18148 \series bold
18149 colortbl
18150 \series default
18151
18152 \begin_inset Index idx
18153 status collapsed
18154
18155 \begin_layout Plain Layout
18156 Paquetages LaTeX ! colortbl
18157 \end_layout
18158
18159 \end_inset
18160
18161
18162 \lang english
18163 , so 
18164 \series bold
18165 colortbl
18166 \series default
18167  must be installed in your LaTeX-distribution, otherwise you get LaTeX-errors.
18168 \end_layout
18169
18170 \begin_layout Standard
18171 \begin_inset ERT
18172 status collapsed
18173
18174 \begin_layout Plain Layout
18175
18176
18177 \backslash
18178 ifcolortbl
18179 \end_layout
18180
18181 \end_inset
18182
18183
18184 \begin_inset Note Note
18185 status open
18186
18187 \begin_layout Plain Layout
18188 La section qui suit ne sera affichée que si vous avez installé le paquetage
18189  LaTeX 
18190 \series bold
18191 colortbl
18192 \series default
18193 .
18194 \end_layout
18195
18196 \end_inset
18197
18198
18199 \end_layout
18200
18201 \begin_layout Standard
18202
18203 \lang english
18204 The table rows are colored with the command
18205 \end_layout
18206
18207 \begin_layout Standard
18208
18209 \series bold
18210 \lang english
18211
18212 \backslash
18213 rowcolors[commands]{row number}{odd row color}{even row color}
18214 \end_layout
18215
18216 \begin_layout Standard
18217
18218 \lang english
18219 that is either inserted in the document preamble or as TeX-Code before the
18220  first table to be colored.
18221  row
18222 \begin_inset space ~
18223 \end_inset
18224
18225 number is the number of the first row which should be colored according
18226  to the odd row color.
18227  commands can be additional commands that are executed before every table
18228  row.
18229  So for example the command
18230 \end_layout
18231
18232 \begin_layout Standard
18233
18234 \series bold
18235
18236 \backslash
18237 rowcolors{1}{white}{lightgray}
18238 \end_layout
18239
18240 \begin_layout Standard
18241
18242 \lang english
18243 leads to the coloring scheme of Table
18244 \begin_inset space ~
18245 \end_inset
18246
18247
18248 \begin_inset CommandInset ref
18249 LatexCommand ref
18250 reference "tab:Table-rowcolors"
18251
18252 \end_inset
18253
18254 .
18255  The command
18256 \end_layout
18257
18258 \begin_layout Standard
18259
18260 \series bold
18261
18262 \backslash
18263 rowcolors[
18264 \backslash
18265 hline]{1}{lightgray}{cyan}
18266 \end_layout
18267
18268 \begin_layout Standard
18269
18270 \lang english
18271 leads to the coloring scheme of Table
18272 \begin_inset space ~
18273 \end_inset
18274
18275
18276 \begin_inset CommandInset ref
18277 LatexCommand ref
18278 reference "tab:Table-rowcolors-2"
18279
18280 \end_inset
18281
18282 .
18283  If odd
18284 \begin_inset space ~
18285 \end_inset
18286
18287 row
18288 \begin_inset space ~
18289 \end_inset
18290
18291 color and/or even
18292 \begin_inset space ~
18293 \end_inset
18294
18295 row
18296 \begin_inset space ~
18297 \end_inset
18298
18299 color are left empty, no color will be used so that the command
18300 \end_layout
18301
18302 \begin_layout Standard
18303
18304 \series bold
18305
18306 \backslash
18307 rowcolors{1}{}{}
18308 \end_layout
18309
18310 \begin_layout Standard
18311
18312 \lang english
18313 deletes all colors.
18314  
18315 \series bold
18316
18317 \backslash
18318 rowcolors
18319 \series default
18320  affects all tables following that command.
18321 \end_layout
18322
18323 \begin_layout Standard
18324 \begin_inset ERT
18325 status open
18326
18327 \begin_layout Plain Layout
18328
18329
18330 \backslash
18331 rowcolors{1}{white}{lightgray}
18332 \end_layout
18333
18334 \end_inset
18335
18336
18337 \end_layout
18338
18339 \begin_layout Standard
18340 \begin_inset Float table
18341 placement h
18342 wide false
18343 sideways false
18344 status open
18345
18346 \begin_layout Plain Layout
18347 \begin_inset Caption Standard
18348
18349 \begin_layout Plain Layout
18350
18351 \lang english
18352 \begin_inset CommandInset label
18353 LatexCommand label
18354 name "tab:Table-rowcolors"
18355
18356 \end_inset
18357
18358 Table where every second row is colored light gray.
18359 \end_layout
18360
18361 \end_inset
18362
18363
18364 \end_layout
18365
18366 \begin_layout Plain Layout
18367 \align center
18368 \begin_inset Tabular
18369 <lyxtabular version="3" rows="4" columns="3">
18370 <features rotate="0" tabularvalignment="middle">
18371 <column alignment="center" valignment="top" width="0">
18372 <column alignment="center" valignment="top" width="0pt">
18373 <column alignment="center" valignment="top" width="0pt">
18374 <row>
18375 <cell alignment="center" valignment="top" usebox="none">
18376 \begin_inset Text
18377
18378 \begin_layout Plain Layout
18379 X
18380 \end_layout
18381
18382 \end_inset
18383 </cell>
18384 <cell alignment="center" valignment="top" usebox="none">
18385 \begin_inset Text
18386
18387 \begin_layout Plain Layout
18388 Y
18389 \end_layout
18390
18391 \end_inset
18392 </cell>
18393 <cell alignment="center" valignment="top" usebox="none">
18394 \begin_inset Text
18395
18396 \begin_layout Plain Layout
18397 Z
18398 \end_layout
18399
18400 \end_inset
18401 </cell>
18402 </row>
18403 <row>
18404 <cell alignment="center" valignment="top" usebox="none">
18405 \begin_inset Text
18406
18407 \begin_layout Plain Layout
18408 1
18409 \end_layout
18410
18411 \end_inset
18412 </cell>
18413 <cell alignment="center" valignment="top" usebox="none">
18414 \begin_inset Text
18415
18416 \begin_layout Plain Layout
18417 2
18418 \end_layout
18419
18420 \end_inset
18421 </cell>
18422 <cell alignment="center" valignment="top" usebox="none">
18423 \begin_inset Text
18424
18425 \begin_layout Plain Layout
18426 3
18427 \end_layout
18428
18429 \end_inset
18430 </cell>
18431 </row>
18432 <row>
18433 <cell alignment="center" valignment="top" usebox="none">
18434 \begin_inset Text
18435
18436 \begin_layout Plain Layout
18437 4
18438 \end_layout
18439
18440 \end_inset
18441 </cell>
18442 <cell alignment="center" valignment="top" usebox="none">
18443 \begin_inset Text
18444
18445 \begin_layout Plain Layout
18446 5
18447 \end_layout
18448
18449 \end_inset
18450 </cell>
18451 <cell alignment="center" valignment="top" usebox="none">
18452 \begin_inset Text
18453
18454 \begin_layout Plain Layout
18455 6
18456 \end_layout
18457
18458 \end_inset
18459 </cell>
18460 </row>
18461 <row>
18462 <cell alignment="center" valignment="top" usebox="none">
18463 \begin_inset Text
18464
18465 \begin_layout Plain Layout
18466 7
18467 \end_layout
18468
18469 \end_inset
18470 </cell>
18471 <cell alignment="center" valignment="top" usebox="none">
18472 \begin_inset Text
18473
18474 \begin_layout Plain Layout
18475 8
18476 \end_layout
18477
18478 \end_inset
18479 </cell>
18480 <cell alignment="center" valignment="top" usebox="none">
18481 \begin_inset Text
18482
18483 \begin_layout Plain Layout
18484 9
18485 \end_layout
18486
18487 \end_inset
18488 </cell>
18489 </row>
18490 </lyxtabular>
18491
18492 \end_inset
18493
18494
18495 \end_layout
18496
18497 \end_inset
18498
18499
18500 \end_layout
18501
18502 \begin_layout Standard
18503 \begin_inset ERT
18504 status open
18505
18506 \begin_layout Plain Layout
18507
18508
18509 \backslash
18510 rowcolors[
18511 \backslash
18512 hline]{1}{lightgray}{cyan}
18513 \end_layout
18514
18515 \end_inset
18516
18517
18518 \end_layout
18519
18520 \begin_layout Standard
18521 \begin_inset Float table
18522 placement h
18523 wide false
18524 sideways false
18525 status open
18526
18527 \begin_layout Plain Layout
18528 \begin_inset Caption Standard
18529
18530 \begin_layout Plain Layout
18531
18532 \lang english
18533 \begin_inset CommandInset label
18534 LatexCommand label
18535 name "tab:Table-rowcolors-2"
18536
18537 \end_inset
18538
18539 Table where every second row is colored cyan and at which there is a line
18540  between each row.
18541 \end_layout
18542
18543 \end_inset
18544
18545
18546 \end_layout
18547
18548 \begin_layout Plain Layout
18549 \align center
18550 \begin_inset Tabular
18551 <lyxtabular version="3" rows="4" columns="3">
18552 <features rotate="0" tabularvalignment="middle">
18553 <column alignment="center" valignment="top" width="0">
18554 <column alignment="center" valignment="top" width="0">
18555 <column alignment="center" valignment="top" width="0pt">
18556 <row>
18557 <cell alignment="center" valignment="top" usebox="none">
18558 \begin_inset Text
18559
18560 \begin_layout Plain Layout
18561 X
18562 \end_layout
18563
18564 \end_inset
18565 </cell>
18566 <cell alignment="center" valignment="top" usebox="none">
18567 \begin_inset Text
18568
18569 \begin_layout Plain Layout
18570 Y
18571 \end_layout
18572
18573 \end_inset
18574 </cell>
18575 <cell alignment="center" valignment="top" usebox="none">
18576 \begin_inset Text
18577
18578 \begin_layout Plain Layout
18579 Z
18580 \end_layout
18581
18582 \end_inset
18583 </cell>
18584 </row>
18585 <row>
18586 <cell alignment="center" valignment="top" usebox="none">
18587 \begin_inset Text
18588
18589 \begin_layout Plain Layout
18590 1
18591 \end_layout
18592
18593 \end_inset
18594 </cell>
18595 <cell alignment="center" valignment="top" usebox="none">
18596 \begin_inset Text
18597
18598 \begin_layout Plain Layout
18599 2
18600 \end_layout
18601
18602 \end_inset
18603 </cell>
18604 <cell alignment="center" valignment="top" usebox="none">
18605 \begin_inset Text
18606
18607 \begin_layout Plain Layout
18608 3
18609 \end_layout
18610
18611 \end_inset
18612 </cell>
18613 </row>
18614 <row>
18615 <cell alignment="center" valignment="top" usebox="none">
18616 \begin_inset Text
18617
18618 \begin_layout Plain Layout
18619 4
18620 \end_layout
18621
18622 \end_inset
18623 </cell>
18624 <cell alignment="center" valignment="top" usebox="none">
18625 \begin_inset Text
18626
18627 \begin_layout Plain Layout
18628 5
18629 \end_layout
18630
18631 \end_inset
18632 </cell>
18633 <cell alignment="center" valignment="top" usebox="none">
18634 \begin_inset Text
18635
18636 \begin_layout Plain Layout
18637 6
18638 \end_layout
18639
18640 \end_inset
18641 </cell>
18642 </row>
18643 <row>
18644 <cell alignment="center" valignment="top" usebox="none">
18645 \begin_inset Text
18646
18647 \begin_layout Plain Layout
18648 7
18649 \end_layout
18650
18651 \end_inset
18652 </cell>
18653 <cell alignment="center" valignment="top" usebox="none">
18654 \begin_inset Text
18655
18656 \begin_layout Plain Layout
18657 8
18658 \end_layout
18659
18660 \end_inset
18661 </cell>
18662 <cell alignment="center" valignment="top" usebox="none">
18663 \begin_inset Text
18664
18665 \begin_layout Plain Layout
18666 9
18667 \end_layout
18668
18669 \end_inset
18670 </cell>
18671 </row>
18672 </lyxtabular>
18673
18674 \end_inset
18675
18676
18677 \end_layout
18678
18679 \end_inset
18680
18681
18682 \end_layout
18683
18684 \begin_layout Standard
18685 \begin_inset ERT
18686 status collapsed
18687
18688 \begin_layout Plain Layout
18689
18690
18691 \backslash
18692 rowcolors{1}{}{}
18693 \end_layout
18694
18695 \end_inset
18696
18697
18698 \begin_inset Note Note
18699 status collapsed
18700
18701 \begin_layout Plain Layout
18702
18703 \lang english
18704 turns off the row coloring
18705 \end_layout
18706
18707 \end_inset
18708
18709
18710 \end_layout
18711
18712 \begin_layout Standard
18713 \begin_inset ERT
18714 status collapsed
18715
18716 \begin_layout Plain Layout
18717
18718
18719 \backslash
18720 else
18721 \end_layout
18722
18723 \end_inset
18724
18725
18726 \begin_inset Note Note
18727 status open
18728
18729 \begin_layout Plain Layout
18730 Ce qui suit sera affiché si le paquetage 
18731 \series bold
18732 colortbl
18733 \series default
18734  n'est pas installé :
18735 \end_layout
18736
18737 \end_inset
18738
18739
18740 \end_layout
18741
18742 \begin_layout Standard
18743 Vous devez installer le paquetage 
18744 \series bold
18745 colortbl
18746 \series default
18747  pour voir le contenu des cette section dans la sortie imprimée.
18748 \end_layout
18749
18750 \begin_layout Standard
18751 \begin_inset ERT
18752 status collapsed
18753
18754 \begin_layout Plain Layout
18755
18756
18757 \backslash
18758 fi
18759 \end_layout
18760
18761 \end_inset
18762
18763
18764 \end_layout
18765
18766 \begin_layout Subsection
18767 Les filets colorées
18768 \begin_inset Index idx
18769 status collapsed
18770
18771 \begin_layout Plain Layout
18772 Tableau Coloré ! Pour les filets
18773 \end_layout
18774
18775 \end_inset
18776
18777
18778 \begin_inset Index idx
18779 status collapsed
18780
18781 \begin_layout Plain Layout
18782 Couleur ! Pour les filets des tableaux
18783 \end_layout
18784
18785 \end_inset
18786
18787
18788 \begin_inset Note Note
18789 status collapsed
18790
18791 \begin_layout Plain Layout
18792 on parle de filets plutôt que de lignes pour les tableaux
18793 \end_layout
18794
18795 \end_inset
18796
18797
18798 \end_layout
18799
18800 \begin_layout Standard
18801 Comme c'est décrit dans la section
18802 \begin_inset space ~
18803 \end_inset
18804
18805
18806 \begin_inset CommandInset ref
18807 LatexCommand ref
18808 reference "sub:Epaisseur-filets"
18809
18810 \end_inset
18811
18812 , l'épaisseur de tous les filets d'un tableau peut être modifiée avec la
18813  variable 
18814 \series bold
18815
18816 \backslash
18817 arrayrulewidth
18818 \series default
18819 .
18820  Elle est mise à 1.5
18821 \begin_inset space \thinspace{}
18822 \end_inset
18823
18824 pt pour tous les tableaux de cette section.
18825 \begin_inset ERT
18826 status collapsed
18827
18828 \begin_layout Plain Layout
18829
18830
18831 \backslash
18832 setlength{
18833 \backslash
18834 arrayrulewidth}{1.5pt}
18835 \end_layout
18836
18837 \end_inset
18838
18839
18840 \end_layout
18841
18842 \begin_layout Standard
18843 Pour colorer les filets verticaux, par exemple en vert, créez le format
18844  de colonne suivant dans le préambule du document, en suivant la description
18845  de la section
18846 \begin_inset space ~
18847 \end_inset
18848
18849
18850 \begin_inset CommandInset ref
18851 LatexCommand ref
18852 reference "sub:Formats-personnalisés"
18853
18854 \end_inset
18855
18856 :
18857 \end_layout
18858
18859 \begin_layout Standard
18860
18861 \series bold
18862
18863 \backslash
18864 newcolumntype{W}{!{
18865 \backslash
18866 color{green}
18867 \backslash
18868 vline}}
18869 \end_layout
18870
18871 \begin_layout Standard
18872 Pour le tableau
18873 \begin_inset space ~
18874 \end_inset
18875
18876
18877 \begin_inset CommandInset ref
18878 LatexCommand ref
18879 reference "tab:Tableau-filets-verticaux-colorés"
18880
18881 \end_inset
18882
18883  le paramètre LaTeX
18884 \series bold
18885  WcW
18886 \series default
18887  a été utilisé pour la dernière colonne et
18888 \series bold
18889  Wc
18890 \series default
18891  pour les autres colonnes.
18892 \end_layout
18893
18894 \begin_layout Standard
18895 Si vous voulez plusieurs couleurs, définissez plusieurs formats de colonne.
18896 \end_layout
18897
18898 \begin_layout Standard
18899 \begin_inset Float table
18900 placement h
18901 wide false
18902 sideways false
18903 status open
18904
18905 \begin_layout Plain Layout
18906 \begin_inset Caption Standard
18907
18908 \begin_layout Plain Layout
18909 \begin_inset CommandInset label
18910 LatexCommand label
18911 name "tab:Tableau-filets-verticaux-colorés"
18912
18913 \end_inset
18914
18915 Tableau avec filets verticaux colorés
18916 \end_layout
18917
18918 \end_inset
18919
18920
18921 \end_layout
18922
18923 \begin_layout Plain Layout
18924 \align center
18925 \begin_inset Tabular
18926 <lyxtabular version="3" rows="3" columns="3">
18927 <features rotate="0" tabularvalignment="middle">
18928 <column alignment="center" valignment="top" width="0" special="Wc">
18929 <column alignment="center" valignment="top" width="0" special="Wc">
18930 <column alignment="center" valignment="top" width="0" special="WcW">
18931 <row>
18932 <cell alignment="center" valignment="top" topline="true" usebox="none">
18933 \begin_inset Text
18934
18935 \begin_layout Plain Layout
18936 sd
18937 \end_layout
18938
18939 \end_inset
18940 </cell>
18941 <cell alignment="center" valignment="top" topline="true" usebox="none">
18942 \begin_inset Text
18943
18944 \begin_layout Plain Layout
18945
18946 \end_layout
18947
18948 \end_inset
18949 </cell>
18950 <cell alignment="center" valignment="top" topline="true" usebox="none">
18951 \begin_inset Text
18952
18953 \begin_layout Plain Layout
18954
18955 \end_layout
18956
18957 \end_inset
18958 </cell>
18959 </row>
18960 <row>
18961 <cell alignment="center" valignment="top" topline="true" usebox="none">
18962 \begin_inset Text
18963
18964 \begin_layout Plain Layout
18965
18966 \end_layout
18967
18968 \end_inset
18969 </cell>
18970 <cell alignment="center" valignment="top" topline="true" usebox="none">
18971 \begin_inset Text
18972
18973 \begin_layout Plain Layout
18974 sd
18975 \end_layout
18976
18977 \end_inset
18978 </cell>
18979 <cell alignment="center" valignment="top" topline="true" usebox="none">
18980 \begin_inset Text
18981
18982 \begin_layout Plain Layout
18983
18984 \end_layout
18985
18986 \end_inset
18987 </cell>
18988 </row>
18989 <row>
18990 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
18991 \begin_inset Text
18992
18993 \begin_layout Plain Layout
18994
18995 \end_layout
18996
18997 \end_inset
18998 </cell>
18999 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19000 \begin_inset Text
19001
19002 \begin_layout Plain Layout
19003
19004 \end_layout
19005
19006 \end_inset
19007 </cell>
19008 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19009 \begin_inset Text
19010
19011 \begin_layout Plain Layout
19012 sd
19013 \end_layout
19014
19015 \end_inset
19016 </cell>
19017 </row>
19018 </lyxtabular>
19019
19020 \end_inset
19021
19022
19023 \end_layout
19024
19025 \end_inset
19026
19027
19028 \end_layout
19029
19030 \begin_layout Standard
19031 \begin_inset VSpace bigskip
19032 \end_inset
19033
19034 Pour colorer les filets horizontaux en rouge comme pour le tableau
19035 \begin_inset space ~
19036 \end_inset
19037
19038
19039 \begin_inset CommandInset ref
19040 LatexCommand ref
19041 reference "tab:Tableau-filet-horizontaux-colorés"
19042
19043 \end_inset
19044
19045 , insérez les commandes suivantes en code TeX juste avant le tableau ou
19046  le flottant de tableau :
19047 \end_layout
19048
19049 \begin_layout Standard
19050
19051 \series bold
19052
19053 \backslash
19054 let
19055 \backslash
19056 myHlineC
19057 \backslash
19058 hline
19059 \begin_inset Newline newline
19060 \end_inset
19061
19062
19063 \backslash
19064 renewcommand{
19065 \backslash
19066 hline}
19067 \begin_inset Newline newline
19068 \end_inset
19069
19070
19071 \begin_inset Phantom HPhantom
19072 status open
19073
19074 \begin_layout Plain Layout
19075
19076 \series bold
19077 \begin_inset space ~
19078 \end_inset
19079
19080
19081 \end_layout
19082
19083 \end_inset
19084
19085 {
19086 \backslash
19087 arrayrulecolor{red}
19088 \backslash
19089 myHlineC
19090 \backslash
19091 arrayrulecolor{black}}
19092 \end_layout
19093
19094 \begin_layout Standard
19095 \begin_inset ERT
19096 status collapsed
19097
19098 \begin_layout Plain Layout
19099
19100
19101 \backslash
19102 let
19103 \backslash
19104 myHlineC
19105 \backslash
19106 hline
19107 \end_layout
19108
19109 \begin_layout Plain Layout
19110
19111
19112 \backslash
19113 renewcommand{
19114 \backslash
19115 hline}
19116 \end_layout
19117
19118 \begin_layout Plain Layout
19119
19120  {
19121 \backslash
19122 arrayrulecolor{red}
19123 \backslash
19124 myHlineC
19125 \backslash
19126 arrayrulecolor{black}}
19127 \end_layout
19128
19129 \end_inset
19130
19131
19132 \begin_inset Float table
19133 placement h
19134 wide false
19135 sideways false
19136 status open
19137
19138 \begin_layout Plain Layout
19139 \begin_inset Caption Standard
19140
19141 \begin_layout Plain Layout
19142 \begin_inset CommandInset label
19143 LatexCommand label
19144 name "tab:Tableau-filet-horizontaux-colorés"
19145
19146 \end_inset
19147
19148 Tableau avec filets horizontaux colorés
19149 \end_layout
19150
19151 \end_inset
19152
19153
19154 \end_layout
19155
19156 \begin_layout Plain Layout
19157 \align center
19158 \begin_inset Tabular
19159 <lyxtabular version="3" rows="3" columns="3">
19160 <features rotate="0" tabularvalignment="middle">
19161 <column alignment="center" valignment="top" width="0">
19162 <column alignment="center" valignment="top" width="0">
19163 <column alignment="center" valignment="top" width="0">
19164 <row>
19165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19166 \begin_inset Text
19167
19168 \begin_layout Plain Layout
19169 sd
19170 \end_layout
19171
19172 \end_inset
19173 </cell>
19174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19175 \begin_inset Text
19176
19177 \begin_layout Plain Layout
19178
19179 \end_layout
19180
19181 \end_inset
19182 </cell>
19183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19184 \begin_inset Text
19185
19186 \begin_layout Plain Layout
19187
19188 \end_layout
19189
19190 \end_inset
19191 </cell>
19192 </row>
19193 <row>
19194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19195 \begin_inset Text
19196
19197 \begin_layout Plain Layout
19198
19199 \end_layout
19200
19201 \end_inset
19202 </cell>
19203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19204 \begin_inset Text
19205
19206 \begin_layout Plain Layout
19207 sd
19208 \end_layout
19209
19210 \end_inset
19211 </cell>
19212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19213 \begin_inset Text
19214
19215 \begin_layout Plain Layout
19216
19217 \end_layout
19218
19219 \end_inset
19220 </cell>
19221 </row>
19222 <row>
19223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19224 \begin_inset Text
19225
19226 \begin_layout Plain Layout
19227
19228 \end_layout
19229
19230 \end_inset
19231 </cell>
19232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19233 \begin_inset Text
19234
19235 \begin_layout Plain Layout
19236
19237 \end_layout
19238
19239 \end_inset
19240 </cell>
19241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19242 \begin_inset Text
19243
19244 \begin_layout Plain Layout
19245 sd
19246 \end_layout
19247
19248 \end_inset
19249 </cell>
19250 </row>
19251 </lyxtabular>
19252
19253 \end_inset
19254
19255
19256 \end_layout
19257
19258 \end_inset
19259
19260
19261 \end_layout
19262
19263 \begin_layout Standard
19264 Pour revenir à la couleur noire implicite, insérez la commande suivante
19265  en code TeX, juste après le tableau ou le flottant de tableau :
19266 \end_layout
19267
19268 \begin_layout Standard
19269
19270 \series bold
19271
19272 \backslash
19273 renewcommand{
19274 \backslash
19275 hline}{
19276 \backslash
19277 myHlineC}
19278 \end_layout
19279
19280 \begin_layout Standard
19281 Le tableau
19282 \begin_inset space ~
19283 \end_inset
19284
19285
19286 \begin_inset CommandInset ref
19287 LatexCommand ref
19288 reference "tab:Tableau-avec-filets-colorés"
19289
19290 \end_inset
19291
19292  est un exemple avec des filets horizontaux et verticaux colorés.
19293 \end_layout
19294
19295 \begin_layout Standard
19296 \begin_inset Float table
19297 placement h
19298 wide false
19299 sideways false
19300 status open
19301
19302 \begin_layout Plain Layout
19303 \begin_inset Caption Standard
19304
19305 \begin_layout Plain Layout
19306 \begin_inset CommandInset label
19307 LatexCommand label
19308 name "tab:Tableau-avec-filets-colorés"
19309
19310 \end_inset
19311
19312 Tableau avec filets horizontaux et verticaux colorés
19313 \end_layout
19314
19315 \end_inset
19316
19317
19318 \end_layout
19319
19320 \begin_layout Plain Layout
19321 \align center
19322 \begin_inset Tabular
19323 <lyxtabular version="3" rows="3" columns="3">
19324 <features rotate="0" tabularvalignment="middle">
19325 <column alignment="center" valignment="top" width="0" special="Wc">
19326 <column alignment="center" valignment="top" width="0" special="Wc">
19327 <column alignment="center" valignment="top" width="0" special="WcW">
19328 <row>
19329 <cell alignment="center" valignment="top" topline="true" usebox="none">
19330 \begin_inset Text
19331
19332 \begin_layout Plain Layout
19333 sd
19334 \end_layout
19335
19336 \end_inset
19337 </cell>
19338 <cell alignment="center" valignment="top" topline="true" usebox="none">
19339 \begin_inset Text
19340
19341 \begin_layout Plain Layout
19342
19343 \end_layout
19344
19345 \end_inset
19346 </cell>
19347 <cell alignment="center" valignment="top" topline="true" usebox="none">
19348 \begin_inset Text
19349
19350 \begin_layout Plain Layout
19351
19352 \end_layout
19353
19354 \end_inset
19355 </cell>
19356 </row>
19357 <row>
19358 <cell alignment="center" valignment="top" topline="true" usebox="none">
19359 \begin_inset Text
19360
19361 \begin_layout Plain Layout
19362
19363 \end_layout
19364
19365 \end_inset
19366 </cell>
19367 <cell alignment="center" valignment="top" topline="true" usebox="none">
19368 \begin_inset Text
19369
19370 \begin_layout Plain Layout
19371 sd
19372 \end_layout
19373
19374 \end_inset
19375 </cell>
19376 <cell alignment="center" valignment="top" topline="true" usebox="none">
19377 \begin_inset Text
19378
19379 \begin_layout Plain Layout
19380
19381 \end_layout
19382
19383 \end_inset
19384 </cell>
19385 </row>
19386 <row topspace="default">
19387 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19388 \begin_inset Text
19389
19390 \begin_layout Plain Layout
19391
19392 \end_layout
19393
19394 \end_inset
19395 </cell>
19396 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19397 \begin_inset Text
19398
19399 \begin_layout Plain Layout
19400
19401 \end_layout
19402
19403 \end_inset
19404 </cell>
19405 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19406 \begin_inset Text
19407
19408 \begin_layout Plain Layout
19409 sd
19410 \end_layout
19411
19412 \end_inset
19413 </cell>
19414 </row>
19415 </lyxtabular>
19416
19417 \end_inset
19418
19419
19420 \end_layout
19421
19422 \end_inset
19423
19424
19425 \end_layout
19426
19427 \begin_layout Standard
19428 \begin_inset ERT
19429 status collapsed
19430
19431 \begin_layout Plain Layout
19432
19433
19434 \backslash
19435 renewcommand{
19436 \backslash
19437 hline}{
19438 \backslash
19439 myHlineC}
19440 \end_layout
19441
19442 \end_inset
19443
19444
19445 \end_layout
19446
19447 \begin_layout Standard
19448 \begin_inset ERT
19449 status collapsed
19450
19451 \begin_layout Plain Layout
19452
19453
19454 \backslash
19455 setlength{
19456 \backslash
19457 arrayrulewidth}{0.4pt}
19458 \end_layout
19459
19460 \end_inset
19461
19462
19463 \end_layout
19464
19465 \begin_layout Section
19466
19467 \lang english
19468 Rotated Table Cells
19469 \lang french
19470
19471 \begin_inset CommandInset label
19472 LatexCommand label
19473 name "sec:Rotated-Table-Cells"
19474
19475 \end_inset
19476
19477
19478 \begin_inset Index idx
19479 status open
19480
19481 \begin_layout Plain Layout
19482 Tableau ! 
19483 \lang english
19484 Rotated Cells
19485 \end_layout
19486
19487 \end_inset
19488
19489
19490 \begin_inset Index idx
19491 status collapsed
19492
19493 \begin_layout Plain Layout
19494 Pivoter des objets
19495 \end_layout
19496
19497 \end_inset
19498
19499
19500 \end_layout
19501
19502 \begin_layout Standard
19503
19504 \lang english
19505 \begin_inset Note Greyedout
19506 status open
19507
19508 \begin_layout Plain Layout
19509
19510 \series bold
19511 \lang english
19512 Note:
19513 \series default
19514  Not all DVI-viewers are able to display rotations.
19515 \end_layout
19516
19517 \end_inset
19518
19519
19520 \end_layout
19521
19522 \begin_layout Standard
19523
19524 \lang english
19525 Currently LyX only offers to rotate table cells by 90
19526 \begin_inset space \thinspace{}
19527 \end_inset
19528
19529 ° counter-clockwise.
19530  To rotate cells by an angle of your choice, you have to add this to the
19531  document preamble:
19532 \end_layout
19533
19534 \begin_layout Standard
19535
19536 \series bold
19537
19538 \backslash
19539 @ifundefined{turnbox}{
19540 \backslash
19541 usepackage{rotating}}{}
19542 \end_layout
19543
19544 \begin_layout Standard
19545
19546 \lang english
19547 In the table cell that should be rotated, add at the beginning this command
19548  as TeX-code:
19549 \end_layout
19550
19551 \begin_layout Standard
19552
19553 \series bold
19554
19555 \backslash
19556 begin{turn}{angle}
19557 \end_layout
19558
19559 \begin_layout Standard
19560
19561 \lang english
19562 where angle is the rotation angle in °.
19563  At the end of the cell the command
19564 \end_layout
19565
19566 \begin_layout Standard
19567
19568 \series bold
19569
19570 \backslash
19571 end{turn}
19572 \end_layout
19573
19574 \begin_layout Standard
19575
19576 \lang english
19577 is inserted as TeX-code.
19578 \end_layout
19579
19580 \begin_layout Standard
19581
19582 \lang english
19583 Table
19584 \begin_inset space ~
19585 \end_inset
19586
19587
19588 \begin_inset CommandInset ref
19589 LatexCommand ref
19590 reference "tab:Table-with-rotated-multi"
19591
19592 \end_inset
19593
19594  is an example where 3
19595 \begin_inset space ~
19596 \end_inset
19597
19598 cells were rotated by 45
19599 \begin_inset space \thinspace{}
19600 \end_inset
19601
19602 °.
19603 \end_layout
19604
19605 \begin_layout Standard
19606
19607 \lang english
19608 \begin_inset Float table
19609 placement h
19610 wide false
19611 sideways false
19612 status open
19613
19614 \begin_layout Plain Layout
19615
19616 \lang english
19617 \begin_inset Caption Standard
19618
19619 \begin_layout Plain Layout
19620
19621 \lang english
19622 \begin_inset CommandInset label
19623 LatexCommand label
19624 name "tab:Table-with-rotated"
19625
19626 \end_inset
19627
19628 Table with rotated cells in the first row.
19629 \end_layout
19630
19631 \end_inset
19632
19633
19634 \end_layout
19635
19636 \begin_layout Plain Layout
19637 \noindent
19638 \align center
19639
19640 \lang english
19641 \begin_inset Tabular
19642 <lyxtabular version="3" rows="2" columns="3">
19643 <features rotate="0" tabularvalignment="middle">
19644 <column alignment="center" valignment="top" width="0">
19645 <column alignment="center" valignment="top" width="0pt">
19646 <column alignment="center" valignment="top" width="0">
19647 <row>
19648 <cell alignment="center" valignment="top" usebox="none">
19649 \begin_inset Text
19650
19651 \begin_layout Plain Layout
19652
19653 \lang english
19654 \begin_inset ERT
19655 status collapsed
19656
19657 \begin_layout Plain Layout
19658
19659
19660 \backslash
19661 begin{turn}{45}
19662 \end_layout
19663
19664 \end_inset
19665
19666 cups
19667 \begin_inset ERT
19668 status collapsed
19669
19670 \begin_layout Plain Layout
19671
19672
19673 \backslash
19674 end{turn}
19675 \end_layout
19676
19677 \end_inset
19678
19679
19680 \end_layout
19681
19682 \end_inset
19683 </cell>
19684 <cell alignment="center" valignment="top" usebox="none">
19685 \begin_inset Text
19686
19687 \begin_layout Plain Layout
19688
19689 \lang english
19690 \begin_inset ERT
19691 status collapsed
19692
19693 \begin_layout Plain Layout
19694
19695
19696 \backslash
19697 begin{turn}{45}
19698 \end_layout
19699
19700 \end_inset
19701
19702 plates
19703 \begin_inset ERT
19704 status collapsed
19705
19706 \begin_layout Plain Layout
19707
19708
19709 \backslash
19710 end{turn}
19711 \end_layout
19712
19713 \end_inset
19714
19715
19716 \end_layout
19717
19718 \end_inset
19719 </cell>
19720 <cell alignment="center" valignment="top" usebox="none">
19721 \begin_inset Text
19722
19723 \begin_layout Plain Layout
19724
19725 \lang english
19726 \begin_inset ERT
19727 status collapsed
19728
19729 \begin_layout Plain Layout
19730
19731
19732 \backslash
19733 begin{turn}{45}
19734 \end_layout
19735
19736 \end_inset
19737
19738 saucers
19739 \begin_inset ERT
19740 status collapsed
19741
19742 \begin_layout Plain Layout
19743
19744
19745 \backslash
19746 end{turn}
19747 \end_layout
19748
19749 \end_inset
19750
19751
19752 \end_layout
19753
19754 \end_inset
19755 </cell>
19756 </row>
19757 <row>
19758 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19759 \begin_inset Text
19760
19761 \begin_layout Plain Layout
19762
19763 \lang english
19764 45
19765 \end_layout
19766
19767 \end_inset
19768 </cell>
19769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19770 \begin_inset Text
19771
19772 \begin_layout Plain Layout
19773
19774 \lang english
19775 33
19776 \end_layout
19777
19778 \end_inset
19779 </cell>
19780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19781 \begin_inset Text
19782
19783 \begin_layout Plain Layout
19784
19785 \lang english
19786 21
19787 \end_layout
19788
19789 \end_inset
19790 </cell>
19791 </row>
19792 </lyxtabular>
19793
19794 \end_inset
19795
19796
19797 \end_layout
19798
19799 \end_inset
19800
19801
19802 \end_layout
19803
19804 \begin_layout Standard
19805
19806 \lang english
19807 \begin_inset Note Greyedout
19808 status open
19809
19810 \begin_layout Plain Layout
19811
19812 \series bold
19813 \lang english
19814 Note:
19815 \series default
19816  Line breaks (shortcut 
19817 \begin_inset Info
19818 type  "shortcut"
19819 arg   "newline-insert newline"
19820 \end_inset
19821
19822 ) are not allowed in rotated cells.
19823 \end_layout
19824
19825 \end_inset
19826
19827
19828 \end_layout
19829
19830 \begin_layout Standard
19831
19832 \lang english
19833 If you want to rotate table cells containing line breaks, you have to put
19834  the cell content into a minipage or a parbox.
19835 \begin_inset Foot
19836 status collapsed
19837
19838 \begin_layout Plain Layout
19839
19840 \lang english
19841 For more about these boxes
19842 \lang french
19843  voir la section
19844 \begin_inset space ~
19845 \end_inset
19846
19847
19848 \begin_inset CommandInset ref
19849 LatexCommand ref
19850 reference "sec:Minipages"
19851
19852 \end_inset
19853
19854  et 
19855 \begin_inset CommandInset ref
19856 LatexCommand ref
19857 reference "sec:Parboxes"
19858
19859 \end_inset
19860
19861 .
19862 \end_layout
19863
19864 \end_inset
19865
19866  If you rotate this cell by 90
19867 \begin_inset space \thinspace{}
19868 \end_inset
19869
19870 ° the width of the box is the height of the cell.
19871  Table
19872 \begin_inset space ~
19873 \end_inset
19874
19875
19876 \begin_inset CommandInset ref
19877 LatexCommand ref
19878 reference "tab:Table-with-rotated-multi"
19879
19880 \end_inset
19881
19882  is an example for a rotated multiline cell where the box width was set
19883  to 3
19884 \begin_inset space \thinspace{}
19885 \end_inset
19886
19887 cm.
19888 \end_layout
19889
19890 \begin_layout Standard
19891
19892 \lang english
19893 \begin_inset Float table
19894 placement h
19895 wide false
19896 sideways false
19897 status open
19898
19899 \begin_layout Plain Layout
19900
19901 \lang english
19902 \begin_inset Caption Standard
19903
19904 \begin_layout Plain Layout
19905
19906 \lang english
19907 \begin_inset CommandInset label
19908 LatexCommand label
19909 name "tab:Table-with-rotated-multi"
19910
19911 \end_inset
19912
19913 Table with rotated multiline cell.
19914 \end_layout
19915
19916 \end_inset
19917
19918
19919 \end_layout
19920
19921 \begin_layout Plain Layout
19922 \noindent
19923 \align center
19924
19925 \lang english
19926 \begin_inset Tabular
19927 <lyxtabular version="3" rows="2" columns="3">
19928 <features rotate="0" tabularvalignment="middle">
19929 <column alignment="center" valignment="top" width="0">
19930 <column alignment="center" valignment="top" width="0pt">
19931 <column alignment="center" valignment="top" width="0">
19932 <row>
19933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19934 \begin_inset Text
19935
19936 \begin_layout Plain Layout
19937
19938 \lang english
19939 a
19940 \end_layout
19941
19942 \end_inset
19943 </cell>
19944 <cell alignment="center" valignment="top" topline="true" leftline="true" rotate="90" usebox="none">
19945 \begin_inset Text
19946
19947 \begin_layout Plain Layout
19948
19949 \lang english
19950 \begin_inset Box Frameless
19951 position "t"
19952 hor_pos "c"
19953 has_inner_box 1
19954 inner_pos "t"
19955 use_parbox 0
19956 use_makebox 0
19957 width "3cm"
19958 special "none"
19959 height "1in"
19960 height_special "totalheight"
19961 status open
19962
19963 \begin_layout Plain Layout
19964
19965 \lang english
19966 rotated cell
19967 \begin_inset Newline newline
19968 \end_inset
19969
19970 with line break
19971 \end_layout
19972
19973 \end_inset
19974
19975
19976 \end_layout
19977
19978 \end_inset
19979 </cell>
19980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19981 \begin_inset Text
19982
19983 \begin_layout Plain Layout
19984
19985 \lang english
19986 e
19987 \end_layout
19988
19989 \end_inset
19990 </cell>
19991 </row>
19992 <row>
19993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19994 \begin_inset Text
19995
19996 \begin_layout Plain Layout
19997
19998 \lang english
19999 b
20000 \end_layout
20001
20002 \end_inset
20003 </cell>
20004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20005 \begin_inset Text
20006
20007 \begin_layout Plain Layout
20008
20009 \lang english
20010 c
20011 \end_layout
20012
20013 \end_inset
20014 </cell>
20015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20016 \begin_inset Text
20017
20018 \begin_layout Plain Layout
20019
20020 \lang english
20021 d
20022 \end_layout
20023
20024 \end_inset
20025 </cell>
20026 </row>
20027 </lyxtabular>
20028
20029 \end_inset
20030
20031
20032 \end_layout
20033
20034 \end_inset
20035
20036
20037 \end_layout
20038
20039 \begin_layout Section
20040
20041 \lang english
20042 Table Width Calculation
20043 \begin_inset CommandInset label
20044 LatexCommand label
20045 name "sec:Table-Width-Calculation"
20046
20047 \end_inset
20048
20049
20050 \end_layout
20051
20052 \begin_layout Standard
20053
20054 \lang english
20055 For wide tables it is sometimes difficult to assure that the table does
20056  not protrude over the page margin.
20057  Setting a fixed width for every column of the table is the solution, but
20058  what amount of space is needed for each column?
20059 \end_layout
20060
20061 \begin_layout Standard
20062
20063 \lang english
20064 The table width 
20065 \begin_inset Formula $W_{\mathrm{table}}$
20066 \end_inset
20067
20068  can be calculated: Every column has the width of the specified column width
20069  
20070 \begin_inset Formula $W_{\mathrm{column}}$
20071 \end_inset
20072
20073  (that the content of the column can consume) plus two times the separation
20074  between the column content and the column border (LaTeX length
20075 \series bold
20076  
20077 \backslash
20078 tabcolsep
20079 \series default
20080 , default 6
20081 \begin_inset space \thinspace{}
20082 \end_inset
20083
20084 pt) plus the width of a border line (LaTeX length 
20085 \series bold
20086
20087 \backslash
20088 arrayrulewidth
20089 \series default
20090 , default 0.4
20091 \begin_inset space \thinspace{}
20092 \end_inset
20093
20094 pt): So if all 
20095 \begin_inset Formula $n$
20096 \end_inset
20097
20098
20099 \begin_inset space ~
20100 \end_inset
20101
20102 columns have the same width, the table width is
20103 \lang french
20104
20105 \begin_inset Formula 
20106 \begin{equation}
20107 W_{\mathrm{table}}=n\left(W_{\mathrm{column}}+2\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}\right)+\backslash\mbox{arrayrulewidth}
20108 \end{equation}
20109
20110 \end_inset
20111
20112
20113 \end_layout
20114
20115 \begin_layout Standard
20116
20117 \lang english
20118 The available width for a table is the space between the page margins or
20119  the width of a text column (for a two-column document) (LaTeX length 
20120 \series bold
20121
20122 \backslash
20123 columnwidth
20124 \series default
20125 ).
20126  If all table columns should have the same width and 
20127 \begin_inset Formula $W_{\mathrm{table}}$
20128 \end_inset
20129
20130  should be 1
20131 \begin_inset space \thinspace{}
20132 \end_inset
20133
20134
20135 \backslash
20136 columnwidth, 
20137 \begin_inset Formula $W_{\mathrm{column}}$
20138 \end_inset
20139
20140  can easily be calculated.
20141 \end_layout
20142
20143 \begin_layout Standard
20144
20145 \lang english
20146 To be able to perform calculations you need to load the LaTeX-package 
20147 \series bold
20148 calc
20149 \series default
20150 \lang french
20151
20152 \begin_inset Index idx
20153 status collapsed
20154
20155 \begin_layout Plain Layout
20156 Paquetages LaTeX ! calc
20157 \end_layout
20158
20159 \end_inset
20160
20161
20162 \lang english
20163  in the document preamble.
20164  To set the width in the table dialog you have to use the field 
20165 \family sans
20166 LaTeX argument
20167 \family default
20168 .
20169  The command scheme for this field is the same that is explained in section
20170 \begin_inset space ~
20171 \end_inset
20172
20173
20174 \lang french
20175
20176 \begin_inset CommandInset ref
20177 LatexCommand ref
20178 reference "sub:Calculs-multicolonnes"
20179
20180 \end_inset
20181
20182
20183 \lang english
20184 .
20185  For a table with 5
20186 \begin_inset space \thinspace{}
20187 \end_inset
20188
20189 columns with an uniform width and centered text, enter there for each column
20190  the command
20191 \end_layout
20192
20193 \begin_layout Standard
20194
20195 \series bold
20196 >{
20197 \backslash
20198 centering}p{(1
20199 \backslash
20200 columnwidth-62.4pt)/5}
20201 \end_layout
20202
20203 \begin_layout Standard
20204
20205 \lang english
20206 For a table with 5
20207 \begin_inset space \thinspace{}
20208 \end_inset
20209
20210 columns where 2 should have 0.75
20211 \begin_inset space ~
20212 \end_inset
20213
20214 times the width than the 3 others, the calculation is
20215 \end_layout
20216
20217 \begin_layout Standard
20218 \begin_inset Formula 
20219 \begin{align}
20220 \backslash\mbox{columnwidth} & =3\, W_{\mathrm{column}}+2\cdot0.75\, W_{\mathrm{column}}+\backslash\mbox{arrayrulewidth}\nonumber \\
20221  & \phantom{=\,}+5\left(2\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}\right)\nonumber \\
20222  & =4.5\, W_{\mathrm{column}}+62.4\,\mathrm{pt}\nonumber \\
20223 W_{\mathrm{column}} & =\frac{\backslash\mbox{columnwidth}-62.4\,\mathrm{pt}}{4.5}
20224 \end{align}
20225
20226 \end_inset
20227
20228
20229 \end_layout
20230
20231 \begin_layout Standard
20232
20233 \lang english
20234 In the table therefore the command
20235 \end_layout
20236
20237 \begin_layout Standard
20238
20239 \series bold
20240 >{
20241 \backslash
20242 centering}p{(1
20243 \backslash
20244 columnwidth-62.4pt)/
20245 \backslash
20246 real{4.5}}
20247 \end_layout
20248
20249 \begin_layout Standard
20250
20251 \lang english
20252 is used for the wider columns and
20253 \end_layout
20254
20255 \begin_layout Standard
20256
20257 \series bold
20258 >{
20259 \backslash
20260 centering}p{(1
20261 \backslash
20262 columnwidth-62.4pt)/
20263 \backslash
20264 real{4.5}*
20265 \backslash
20266 real{0.75}}
20267 \end_layout
20268
20269 \begin_layout Standard
20270
20271 \lang english
20272 for the smaller ones:
20273 \end_layout
20274
20275 \begin_layout Standard
20276 \begin_inset Tabular
20277 <lyxtabular version="3" rows="2" columns="5">
20278 <features rotate="0" tabularvalignment="middle">
20279 <column alignment="center" valignment="top" width="20col%" special=">{\centering}p{(1\columnwidth-62.4pt)/\real{4.5}}">
20280 <column alignment="center" valignment="top" width="0pt" special=">{\centering}p{(1\columnwidth-62.4pt)/\real{4.5}*\real{0.75}}">
20281 <column alignment="center" valignment="top" width="20col%" special=">{\centering}p{(1\columnwidth-62.4pt)/\real{4.5}}">
20282 <column alignment="center" valignment="top" width="0pt" special=">{\centering}p{(1\columnwidth-62.4pt)/\real{4.5}*\real{0.75}}">
20283 <column alignment="center" valignment="top" width="20col%" special=">{\centering}p{(1\columnwidth-62.4pt)/\real{4.5}}">
20284 <row>
20285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20286 \begin_inset Text
20287
20288 \begin_layout Plain Layout
20289 1
20290 \end_layout
20291
20292 \end_inset
20293 </cell>
20294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20295 \begin_inset Text
20296
20297 \begin_layout Plain Layout
20298 2
20299 \end_layout
20300
20301 \end_inset
20302 </cell>
20303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20304 \begin_inset Text
20305
20306 \begin_layout Plain Layout
20307 3
20308 \end_layout
20309
20310 \end_inset
20311 </cell>
20312 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20313 \begin_inset Text
20314
20315 \begin_layout Plain Layout
20316 4
20317 \end_layout
20318
20319 \end_inset
20320 </cell>
20321 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20322 \begin_inset Text
20323
20324 \begin_layout Plain Layout
20325 5
20326 \end_layout
20327
20328 \end_inset
20329 </cell>
20330 </row>
20331 <row>
20332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20333 \begin_inset Text
20334
20335 \begin_layout Plain Layout
20336 111111 1111111 111111 111111111 11111 11111 1111
20337 \end_layout
20338
20339 \end_inset
20340 </cell>
20341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20342 \begin_inset Text
20343
20344 \begin_layout Plain Layout
20345
20346 \end_layout
20347
20348 \end_inset
20349 </cell>
20350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20351 \begin_inset Text
20352
20353 \begin_layout Plain Layout
20354 2222 22222 222222 222222222 2222222 22 22222
20355 \end_layout
20356
20357 \end_inset
20358 </cell>
20359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20360 \begin_inset Text
20361
20362 \begin_layout Plain Layout
20363
20364 \end_layout
20365
20366 \end_inset
20367 </cell>
20368 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20369 \begin_inset Text
20370
20371 \begin_layout Plain Layout
20372 333333 333333 333333 33333 3333333 333
20373 \end_layout
20374
20375 \end_inset
20376 </cell>
20377 </row>
20378 </lyxtabular>
20379
20380 \end_inset
20381
20382
20383 \end_layout
20384
20385 \begin_layout Section
20386 Personnalisation des tableaux
20387 \begin_inset Index idx
20388 status collapsed
20389
20390 \begin_layout Plain Layout
20391 Tableau ! Personnalisation
20392 \end_layout
20393
20394 \end_inset
20395
20396
20397 \begin_inset Index idx
20398 status collapsed
20399
20400 \begin_layout Plain Layout
20401 Personnalisation des tableaux
20402 \end_layout
20403
20404 \end_inset
20405
20406
20407 \end_layout
20408
20409 \begin_layout Subsection
20410 Espacement des lignes
20411 \begin_inset CommandInset label
20412 LatexCommand label
20413 name "sub:Espacement-lignes"
20414
20415 \end_inset
20416
20417
20418 \begin_inset Index idx
20419 status collapsed
20420
20421 \begin_layout Plain Layout
20422 Personnalisation des tableaux ! Espacement des lignes
20423 \end_layout
20424
20425 \end_inset
20426
20427
20428 \end_layout
20429
20430 \begin_layout Standard
20431 Vous pouvez ajouter de l'espace vertical entre les lignes d'un tableau avec
20432  l'onglet 
20433 \family sans
20434 Bordures
20435 \family default
20436  de la fenêtre de dialogue 
20437 \family sans
20438 Paramètres
20439 \begin_inset space ~
20440 \end_inset
20441
20442 du
20443 \begin_inset space ~
20444 \end_inset
20445
20446 tableau
20447 \family default
20448 .
20449  Vous y trouverez trois possibilités :
20450 \end_layout
20451
20452 \begin_layout Description
20453 Haut
20454 \begin_inset space ~
20455 \end_inset
20456
20457 de
20458 \begin_inset space ~
20459 \end_inset
20460
20461 ligne va ajouter de l'espace au-dessus de caractères de la ligne .
20462  Si le tableau est un tableau formel
20463 \begin_inset Foot
20464 status collapsed
20465
20466 \begin_layout Plain Layout
20467 Les tableaux formels sont décrits dans la section
20468 \begin_inset space ~
20469 \end_inset
20470
20471
20472 \begin_inset CommandInset ref
20473 LatexCommand ref
20474 reference "sec:Tableaux-Formels"
20475
20476 \end_inset
20477
20478 .
20479 \end_layout
20480
20481 \end_inset
20482
20483  LyX va insérer implicitement un espace de 0.5
20484 \begin_inset space \thinspace{}
20485 \end_inset
20486
20487 em.
20488  Pour les tableaux normaux, l'espace inséré va malheureusement détruire
20489  les filets verticaux comme dans le tableau suivant :
20490 \begin_inset VSpace medskip
20491 \end_inset
20492
20493
20494 \begin_inset Newline newline
20495 \end_inset
20496
20497
20498 \begin_inset space \hspace*{}
20499 \length 0pt
20500 \end_inset
20501
20502
20503 \begin_inset space \hfill{}
20504 \end_inset
20505
20506
20507 \begin_inset Tabular
20508 <lyxtabular version="3" rows="3" columns="1">
20509 <features rotate="0" tabularvalignment="middle">
20510 <column alignment="center" valignment="top" width="0">
20511 <row>
20512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20513 \begin_inset Text
20514
20515 \begin_layout Plain Layout
20516 A
20517 \end_layout
20518
20519 \end_inset
20520 </cell>
20521 </row>
20522 <row topspace="3mm">
20523 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20524 \begin_inset Text
20525
20526 \begin_layout Plain Layout
20527 espace de 3
20528 \begin_inset space \thinspace{}
20529 \end_inset
20530
20531 mm en haut de la ligne
20532 \end_layout
20533
20534 \end_inset
20535 </cell>
20536 </row>
20537 <row>
20538 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20539 \begin_inset Text
20540
20541 \begin_layout Plain Layout
20542 C
20543 \end_layout
20544
20545 \end_inset
20546 </cell>
20547 </row>
20548 </lyxtabular>
20549
20550 \end_inset
20551
20552
20553 \begin_inset space \hfill{}
20554 \end_inset
20555
20556
20557 \begin_inset space \hspace*{}
20558 \length 0pt
20559 \end_inset
20560
20561
20562 \begin_inset VSpace medskip
20563 \end_inset
20564
20565
20566 \begin_inset Newline newline
20567 \end_inset
20568
20569 L'insertion d'espace en haut de ligne n'a donc d'intérêt que si vous n'avez
20570  pas de filets verticaux.
20571 \end_layout
20572
20573 \begin_layout Description
20574 Bas
20575 \begin_inset space ~
20576 \end_inset
20577
20578 de
20579 \begin_inset space ~
20580 \end_inset
20581
20582 ligne va ajouter de l'espace sous les caractères de la ligne.
20583  Si le tableau est un tableau formel LyX va insérer implicitement un espace
20584  de 0.5
20585 \begin_inset space \thinspace{}
20586 \end_inset
20587
20588 em, pour les tableaux normaux, l'espace implicite est de 2
20589 \begin_inset space \thinspace{}
20590 \end_inset
20591
20592 pt.
20593 \end_layout
20594
20595 \begin_layout Description
20596 Entre
20597 \begin_inset space ~
20598 \end_inset
20599
20600 les
20601 \begin_inset space ~
20602 \end_inset
20603
20604 lignes ajoute l'espace entre la ligne courante et la ligne suivante.
20605  Si le tableau est un tableau formel LyX va insérer implicitement un espace
20606  de 0.5
20607 \begin_inset space \thinspace{}
20608 \end_inset
20609
20610 em.
20611  Pour les tableaux normaux, l'espace inséré va malheureusement détruire
20612  les filets verticaux comme dans le tableau suivant :
20613 \begin_inset VSpace medskip
20614 \end_inset
20615
20616
20617 \begin_inset Newline newline
20618 \end_inset
20619
20620
20621 \begin_inset space \hspace*{}
20622 \length 0pt
20623 \end_inset
20624
20625
20626 \begin_inset space \hfill{}
20627 \end_inset
20628
20629
20630 \begin_inset Tabular
20631 <lyxtabular version="3" rows="3" columns="1">
20632 <features rotate="0" tabularvalignment="middle">
20633 <column alignment="center" valignment="top" width="0">
20634 <row>
20635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20636 \begin_inset Text
20637
20638 \begin_layout Plain Layout
20639 A
20640 \end_layout
20641
20642 \end_inset
20643 </cell>
20644 </row>
20645 <row interlinespace="3mm">
20646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20647 \begin_inset Text
20648
20649 \begin_layout Plain Layout
20650 \begin_inset Formula $\downarrow$
20651 \end_inset
20652
20653  espace de 3
20654 \begin_inset space \thinspace{}
20655 \end_inset
20656
20657 mm entre les lignes 
20658 \begin_inset Formula $\downarrow$
20659 \end_inset
20660
20661
20662 \end_layout
20663
20664 \end_inset
20665 </cell>
20666 </row>
20667 <row>
20668 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20669 \begin_inset Text
20670
20671 \begin_layout Plain Layout
20672 \begin_inset Formula $\uparrow$
20673 \end_inset
20674
20675  espace de 3
20676 \begin_inset space \thinspace{}
20677 \end_inset
20678
20679 mm entre les lignes 
20680 \begin_inset Formula $\uparrow$
20681 \end_inset
20682
20683
20684 \end_layout
20685
20686 \end_inset
20687 </cell>
20688 </row>
20689 </lyxtabular>
20690
20691 \end_inset
20692
20693
20694 \begin_inset space \hfill{}
20695 \end_inset
20696
20697
20698 \begin_inset space \hspace*{}
20699 \length 0pt
20700 \end_inset
20701
20702
20703 \begin_inset VSpace medskip
20704 \end_inset
20705
20706
20707 \begin_inset Newline newline
20708 \end_inset
20709
20710 L'insertion d'espace entre les lignes n'a donc d'intérêt que si vous n'avez
20711  pas de filets verticaux.
20712 \end_layout
20713
20714 \begin_layout Standard
20715 \begin_inset VSpace bigskip
20716 \end_inset
20717
20718 Quand vous voulez ajouter de l'espace à toutes les cases de tous les tableaux
20719  de votre document, vous pouvez le faire en ajoutant les lignes suivantes
20720  dans le préambule :
20721 \end_layout
20722
20723 \begin_layout Standard
20724
20725 \series bold
20726
20727 \backslash
20728 @ifundefined{extrarowheight}
20729 \begin_inset Newline newline
20730 \end_inset
20731
20732
20733 \begin_inset Phantom HPhantom
20734 status open
20735
20736 \begin_layout Plain Layout
20737
20738 \series bold
20739 \begin_inset space ~
20740 \end_inset
20741
20742
20743 \end_layout
20744
20745 \end_inset
20746
20747 {
20748 \backslash
20749 usepackage{array}}{}
20750 \begin_inset Newline newline
20751 \end_inset
20752
20753
20754 \backslash
20755 setlength{
20756 \backslash
20757 extrarowheight}{height}
20758 \end_layout
20759
20760 \begin_layout Standard
20761 Mais ceci présente le défaut que le texte des cellules de tableau n'est
20762  plus exactement centré verticalement.
20763  (le paquetage 
20764 \series bold
20765 array 
20766 \series default
20767 sera chargé automatiquement par LyX quand vous utilisez des formats de tableaux
20768  auto-définis.
20769  C'est pour éviter qu'il soit chargé deux fois que l'on utilise la commande
20770  
20771 \series bold
20772
20773 \backslash
20774 @ifundefined
20775 \series default
20776  dans la commande précédente.)
20777 \end_layout
20778
20779 \begin_layout Standard
20780 Si vous utilisez des polices de taille plus grande que la taille normale,
20781  les bordures des tableaux sont souvent trop proches du texte.
20782  On peut corriger ce problème en insérant la commande 
20783 \series bold
20784
20785 \begin_inset space \space{}
20786 \end_inset
20787
20788
20789 \backslash
20790 strut
20791 \series default
20792  en code TeX au debut d'une ligne du tableau.
20793  Le tableau
20794 \begin_inset space ~
20795 \end_inset
20796
20797
20798 \begin_inset CommandInset ref
20799 LatexCommand ref
20800 reference "tab:Alignement-vertical"
20801
20802 \end_inset
20803
20804  montre l'effet de cette commande.
20805 \end_layout
20806
20807 \begin_layout Standard
20808 \noindent
20809 \begin_inset Float table
20810 placement h
20811 wide false
20812 sideways false
20813 status open
20814
20815 \begin_layout Plain Layout
20816 \begin_inset Caption Standard
20817
20818 \begin_layout Plain Layout
20819 \begin_inset CommandInset label
20820 LatexCommand label
20821 name "tab:Alignement-vertical"
20822
20823 \end_inset
20824
20825 Alignement vertical d'un texte avec une police de grande taille.
20826 \end_layout
20827
20828 \end_inset
20829
20830
20831 \end_layout
20832
20833 \begin_layout Plain Layout
20834 \begin_inset space \hfill{}
20835 \end_inset
20836
20837
20838 \begin_inset Float table
20839 wide false
20840 sideways false
20841 status collapsed
20842
20843 \begin_layout Plain Layout
20844 \begin_inset Caption Standard
20845
20846 \begin_layout Plain Layout
20847 Tableau normal.
20848 \end_layout
20849
20850 \end_inset
20851
20852
20853 \end_layout
20854
20855 \begin_layout Plain Layout
20856 \noindent
20857 \align center
20858 \begin_inset Tabular
20859 <lyxtabular version="3" rows="6" columns="1">
20860 <features rotate="0" tabularvalignment="middle">
20861 <column alignment="left" valignment="top" width="0">
20862 <row>
20863 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20864 \begin_inset Text
20865
20866 \begin_layout Plain Layout
20867 Normal, g
20868 \end_layout
20869
20870 \end_inset
20871 </cell>
20872 </row>
20873 <row>
20874 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20875 \begin_inset Text
20876
20877 \begin_layout Plain Layout
20878
20879 \size large
20880 Large
20881 \end_layout
20882
20883 \end_inset
20884 </cell>
20885 </row>
20886 <row>
20887 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20888 \begin_inset Text
20889
20890 \begin_layout Plain Layout
20891
20892 \size larger
20893 Larger
20894 \end_layout
20895
20896 \end_inset
20897 </cell>
20898 </row>
20899 <row>
20900 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20901 \begin_inset Text
20902
20903 \begin_layout Plain Layout
20904
20905 \size largest
20906 Largest
20907 \end_layout
20908
20909 \end_inset
20910 </cell>
20911 </row>
20912 <row>
20913 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20914 \begin_inset Text
20915
20916 \begin_layout Plain Layout
20917
20918 \size huge
20919 Huge
20920 \end_layout
20921
20922 \end_inset
20923 </cell>
20924 </row>
20925 <row>
20926 <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20927 \begin_inset Text
20928
20929 \begin_layout Plain Layout
20930
20931 \size huge
20932 Huger
20933 \end_layout
20934
20935 \end_inset
20936 </cell>
20937 </row>
20938 </lyxtabular>
20939
20940 \end_inset
20941
20942
20943 \end_layout
20944
20945 \end_inset
20946
20947
20948 \begin_inset space \hfill{}
20949 \end_inset
20950
20951
20952 \begin_inset Float table
20953 wide false
20954 sideways false
20955 status collapsed
20956
20957 \begin_layout Plain Layout
20958 \begin_inset Caption Standard
20959
20960 \begin_layout Plain Layout
20961 Tableau utilisant la commande 
20962 \series bold
20963
20964 \backslash
20965 strut
20966 \series default
20967 .
20968 \end_layout
20969
20970 \end_inset
20971
20972
20973 \end_layout
20974
20975 \begin_layout Plain Layout
20976 \noindent
20977 \align center
20978 \begin_inset Tabular
20979 <lyxtabular version="3" rows="6" columns="1">
20980 <features rotate="0" tabularvalignment="middle">
20981 <column alignment="left" valignment="top" width="0">
20982 <row>
20983 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20984 \begin_inset Text
20985
20986 \begin_layout Plain Layout
20987 Normal, g
20988 \end_layout
20989
20990 \end_inset
20991 </cell>
20992 </row>
20993 <row>
20994 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20995 \begin_inset Text
20996
20997 \begin_layout Plain Layout
20998
20999 \size large
21000 \begin_inset ERT
21001 status collapsed
21002
21003 \begin_layout Plain Layout
21004
21005
21006 \backslash
21007 strut 
21008 \end_layout
21009
21010 \end_inset
21011
21012 Large
21013 \end_layout
21014
21015 \end_inset
21016 </cell>
21017 </row>
21018 <row>
21019 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21020 \begin_inset Text
21021
21022 \begin_layout Plain Layout
21023
21024 \size larger
21025 \begin_inset ERT
21026 status collapsed
21027
21028 \begin_layout Plain Layout
21029
21030
21031 \backslash
21032 strut 
21033 \end_layout
21034
21035 \end_inset
21036
21037 Larger
21038 \end_layout
21039
21040 \end_inset
21041 </cell>
21042 </row>
21043 <row>
21044 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21045 \begin_inset Text
21046
21047 \begin_layout Plain Layout
21048
21049 \size largest
21050 \begin_inset ERT
21051 status collapsed
21052
21053 \begin_layout Plain Layout
21054
21055
21056 \backslash
21057 strut 
21058 \end_layout
21059
21060 \end_inset
21061
21062 Largest
21063 \end_layout
21064
21065 \end_inset
21066 </cell>
21067 </row>
21068 <row>
21069 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21070 \begin_inset Text
21071
21072 \begin_layout Plain Layout
21073
21074 \size huge
21075 \begin_inset ERT
21076 status collapsed
21077
21078 \begin_layout Plain Layout
21079
21080
21081 \backslash
21082 strut 
21083 \end_layout
21084
21085 \end_inset
21086
21087 Huge
21088 \end_layout
21089
21090 \end_inset
21091 </cell>
21092 </row>
21093 <row>
21094 <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21095 \begin_inset Text
21096
21097 \begin_layout Plain Layout
21098
21099 \size giant
21100 \begin_inset ERT
21101 status collapsed
21102
21103 \begin_layout Plain Layout
21104
21105
21106 \backslash
21107 strut 
21108 \end_layout
21109
21110 \end_inset
21111
21112
21113 \size huge
21114 Huger
21115 \end_layout
21116
21117 \end_inset
21118 </cell>
21119 </row>
21120 </lyxtabular>
21121
21122 \end_inset
21123
21124
21125 \end_layout
21126
21127 \end_inset
21128
21129
21130 \begin_inset space \hfill{}
21131 \end_inset
21132
21133
21134 \end_layout
21135
21136 \end_inset
21137
21138
21139 \end_layout
21140
21141 \begin_layout Standard
21142 \begin_inset Newpage newpage
21143 \end_inset
21144
21145
21146 \end_layout
21147
21148 \begin_layout Subsection
21149 Alignements de cellules spéciaux
21150 \begin_inset CommandInset label
21151 LatexCommand label
21152 name "sub:Alignements-de-cellules"
21153
21154 \end_inset
21155
21156
21157 \begin_inset Index idx
21158 status collapsed
21159
21160 \begin_layout Plain Layout
21161 Personnalisation des tableaux ! Alignement de cellules spéciaux
21162 \end_layout
21163
21164 \end_inset
21165
21166
21167 \end_layout
21168
21169 \begin_layout Standard
21170 On peut parfois améliorer l'aspect d'un tableau en alignant le contenu des
21171  cellules sur un caractère donné, par exemple le séparateur décimal comme
21172  dans le tableau
21173 \begin_inset space ~
21174 \end_inset
21175
21176
21177 \begin_inset CommandInset ref
21178 LatexCommand ref
21179 reference "tab:Tableau-centré-sur-séparateur-1"
21180
21181 \end_inset
21182
21183 .
21184  Cet alignement est obtenu en mettant le curseur dans la colonne et ensuite,
21185  soit en appuyant sur le bouton 
21186 \begin_inset Info
21187 type  "icon"
21188 arg   "inset-modify tabular align-decimal"
21189 \end_inset
21190
21191  de la barre d'outils ou en modifiant le paramètre 
21192 \family sans
21193 Alignement horizontal
21194 \family default
21195  à 
21196 \family sans
21197 Au séparateur décimal
21198 \family default
21199 .
21200  Le caractère sur lequel se fait l'alignement peut être choisi en le précisant
21201  dans les paramètres du tableau.
21202 \end_layout
21203
21204 \begin_layout Standard
21205 \begin_inset Float table
21206 placement h
21207 wide false
21208 sideways false
21209 status open
21210
21211 \begin_layout Plain Layout
21212 \begin_inset Caption Standard
21213
21214 \begin_layout Plain Layout
21215 \begin_inset CommandInset label
21216 LatexCommand label
21217 name "tab:Tableau-centré-sur-séparateur-1"
21218
21219 \end_inset
21220
21221 Les cellules d'une colonnes sont centrées sur le séparateur décimal.
21222 \end_layout
21223
21224 \end_inset
21225
21226
21227 \end_layout
21228
21229 \begin_layout Plain Layout
21230 \align center
21231 \begin_inset Tabular
21232 <lyxtabular version="3" rows="4" columns="1">
21233 <features rotate="0" booktabs="true" tabularvalignment="middle">
21234 <column alignment="decimal" decimal_point="," valignment="top" width="0pt">
21235 <row>
21236 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
21237 \begin_inset Text
21238
21239 \begin_layout Plain Layout
21240 en-tête
21241 \end_layout
21242
21243 \end_inset
21244 </cell>
21245 </row>
21246 <row>
21247 <cell alignment="center" valignment="top" topline="true" usebox="none">
21248 \begin_inset Text
21249
21250 \begin_layout Plain Layout
21251 12,6
21252 \end_layout
21253
21254 \end_inset
21255 </cell>
21256 </row>
21257 <row>
21258 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
21259 \begin_inset Text
21260
21261 \begin_layout Plain Layout
21262 0,68
21263 \end_layout
21264
21265 \end_inset
21266 </cell>
21267 </row>
21268 <row>
21269 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
21270 \begin_inset Text
21271
21272 \begin_layout Plain Layout
21273 -123,0
21274 \end_layout
21275
21276 \end_inset
21277 </cell>
21278 </row>
21279 </lyxtabular>
21280
21281 \end_inset
21282
21283
21284 \end_layout
21285
21286 \end_inset
21287
21288
21289 \end_layout
21290
21291 \begin_layout Standard
21292 \begin_inset Float table
21293 placement h
21294 wide false
21295 sideways false
21296 status open
21297
21298 \begin_layout Plain Layout
21299 \begin_inset Caption Standard
21300
21301 \begin_layout Plain Layout
21302 \begin_inset CommandInset label
21303 LatexCommand label
21304 name "tab:Tableau-centré-sur-séparateur-2"
21305
21306 \end_inset
21307
21308 Les cellules d'une colonnes sont centrées sur les opérateurs.
21309 \end_layout
21310
21311 \end_inset
21312
21313
21314 \end_layout
21315
21316 \begin_layout Plain Layout
21317 \align center
21318 \begin_inset Tabular
21319 <lyxtabular version="3" rows="4" columns="2">
21320 <features rotate="0" booktabs="true" tabularvalignment="middle">
21321 <column alignment="right" valignment="top" width="0pt">
21322 <column alignment="left" valignment="top" width="0pt" special="@{}l">
21323 <row>
21324 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
21325 \begin_inset Text
21326
21327 \begin_layout Plain Layout
21328 en-tête
21329 \end_layout
21330
21331 \end_inset
21332 </cell>
21333 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21334 \begin_inset Text
21335
21336 \begin_layout Plain Layout
21337
21338 \end_layout
21339
21340 \end_inset
21341 </cell>
21342 </row>
21343 <row>
21344 <cell alignment="center" valignment="top" usebox="none">
21345 \begin_inset Text
21346
21347 \begin_layout Plain Layout
21348 \begin_inset Formula $12\,+$
21349 \end_inset
21350
21351
21352 \end_layout
21353
21354 \end_inset
21355 </cell>
21356 <cell alignment="center" valignment="top" usebox="none">
21357 \begin_inset Text
21358
21359 \begin_layout Plain Layout
21360 \begin_inset Formula $\,6$
21361 \end_inset
21362
21363
21364 \end_layout
21365
21366 \end_inset
21367 </cell>
21368 </row>
21369 <row>
21370 <cell alignment="center" valignment="top" usebox="none">
21371 \begin_inset Text
21372
21373 \begin_layout Plain Layout
21374 \begin_inset Formula $0\,-$
21375 \end_inset
21376
21377
21378 \end_layout
21379
21380 \end_inset
21381 </cell>
21382 <cell alignment="center" valignment="top" usebox="none">
21383 \begin_inset Text
21384
21385 \begin_layout Plain Layout
21386 \begin_inset Formula $\,68$
21387 \end_inset
21388
21389
21390 \end_layout
21391
21392 \end_inset
21393 </cell>
21394 </row>
21395 <row>
21396 <cell alignment="center" valignment="top" usebox="none">
21397 \begin_inset Text
21398
21399 \begin_layout Plain Layout
21400 \begin_inset Formula $-123\,/$
21401 \end_inset
21402
21403
21404 \end_layout
21405
21406 \end_inset
21407 </cell>
21408 <cell alignment="center" valignment="top" usebox="none">
21409 \begin_inset Text
21410
21411 \begin_layout Plain Layout
21412 \begin_inset Formula $\,0$
21413 \end_inset
21414
21415
21416 \end_layout
21417
21418 \end_inset
21419 </cell>
21420 </row>
21421 </lyxtabular>
21422
21423 \end_inset
21424
21425
21426 \end_layout
21427
21428 \end_inset
21429
21430
21431 \end_layout
21432
21433 \begin_layout Standard
21434 L'alignement sur un caractère ne fonctionne pas avec des formules parce
21435  que le champ utilisé pour préciser le caractère voulu n'accepte pas les
21436  formules.
21437  Dans ce cas on doit utiliser la méthode du tableau
21438 \begin_inset space ~
21439 \end_inset
21440
21441
21442 \begin_inset CommandInset ref
21443 LatexCommand ref
21444 reference "tab:Tableau-centré-sur-séparateur-2"
21445
21446 \end_inset
21447
21448 .
21449  Ce tableau a été créé comme un tableau 4×2.
21450  L'en-tête est une cellule multi-colonne centrée.
21451  La première colonne est alignée à droite et contient la première partie
21452  et inclue l'opérateur.
21453  La seconde colonne contient le reste de la cellule aligné à gauche.
21454  Un petit espace a été ajouté au début de toutes les cellules de la deuxième
21455  colonne pour obtenir l'espace que l'on a d'habitude autour d'un opérateur.
21456  Pour éviter l'espace qui est normalement placé entre deux colonnes d'un
21457  tableau, le paramètre LaTeX suivant a été utilisé pour la deuxième colonne
21458  :
21459 \end_layout
21460
21461 \begin_layout Standard
21462
21463 \series bold
21464 @{}l
21465 \end_layout
21466
21467 \begin_layout Standard
21468 Le tableau
21469 \begin_inset space ~
21470 \end_inset
21471
21472
21473 \begin_inset CommandInset ref
21474 LatexCommand ref
21475 reference "tab:Plusieurs-exemples-alignements"
21476
21477 \end_inset
21478
21479  montre quelques exemples d'alignements.
21480  Pour l'alignement sur l'opérateur de relation, un petit espace a été ajouté
21481  comme pour la deuxième colonne du tableau
21482 \begin_inset space ~
21483 \end_inset
21484
21485
21486 \begin_inset CommandInset ref
21487 LatexCommand ref
21488 reference "tab:Tableau-centré-sur-séparateur-2"
21489
21490 \end_inset
21491
21492 .
21493 \end_layout
21494
21495 \begin_layout Standard
21496 \begin_inset Float table
21497 wide false
21498 sideways false
21499 status open
21500
21501 \begin_layout Plain Layout
21502 \begin_inset Caption Standard
21503
21504 \begin_layout Plain Layout
21505 \begin_inset CommandInset label
21506 LatexCommand label
21507 name "tab:Plusieurs-exemples-alignements"
21508
21509 \end_inset
21510
21511 Plusieurs exemples d'alignement de cellules.
21512 \end_layout
21513
21514 \end_inset
21515
21516
21517 \end_layout
21518
21519 \begin_layout Plain Layout
21520 \align center
21521 \begin_inset Tabular
21522 <lyxtabular version="3" rows="4" columns="6">
21523 <features rotate="0" tabularvalignment="middle">
21524 <column alignment="right" valignment="top" width="0">
21525 <column alignment="left" valignment="top" width="0" special="@{}l">
21526 <column alignment="right" valignment="top" width="0">
21527 <column alignment="left" valignment="top" width="0" special="@{}l">
21528 <column alignment="right" valignment="top" width="0">
21529 <column alignment="left" valignment="top" width="0" special="@{}l">
21530 <row>
21531 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
21532 \begin_inset Text
21533
21534 \begin_layout Plain Layout
21535 unités
21536 \end_layout
21537
21538 \end_inset
21539 </cell>
21540 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21541 \begin_inset Text
21542
21543 \begin_layout Plain Layout
21544
21545 \end_layout
21546
21547 \end_inset
21548 </cell>
21549 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
21550 \begin_inset Text
21551
21552 \begin_layout Plain Layout
21553 exposants
21554 \end_layout
21555
21556 \end_inset
21557 </cell>
21558 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21559 \begin_inset Text
21560
21561 \begin_layout Plain Layout
21562
21563 \end_layout
21564
21565 \end_inset
21566 </cell>
21567 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
21568 \begin_inset Text
21569
21570 \begin_layout Plain Layout
21571 relations
21572 \end_layout
21573
21574 \end_inset
21575 </cell>
21576 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21577 \begin_inset Text
21578
21579 \begin_layout Plain Layout
21580
21581 \end_layout
21582
21583 \end_inset
21584 </cell>
21585 </row>
21586 <row>
21587 <cell alignment="center" valignment="top" usebox="none">
21588 \begin_inset Text
21589
21590 \begin_layout Plain Layout
21591 12×
21592 \end_layout
21593
21594 \end_inset
21595 </cell>
21596 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21597 \begin_inset Text
21598
21599 \begin_layout Plain Layout
21600 24
21601 \begin_inset space \thinspace{}
21602 \end_inset
21603
21604 bouteilles
21605 \end_layout
21606
21607 \end_inset
21608 </cell>
21609 <cell alignment="center" valignment="top" usebox="none">
21610 \begin_inset Text
21611
21612 \begin_layout Plain Layout
21613 \begin_inset Formula $10\cdot$
21614 \end_inset
21615
21616
21617 \end_layout
21618
21619 \end_inset
21620 </cell>
21621 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21622 \begin_inset Text
21623
21624 \begin_layout Plain Layout
21625 \begin_inset Formula $10^{\mbox{-}17}$
21626 \end_inset
21627
21628
21629 \end_layout
21630
21631 \end_inset
21632 </cell>
21633 <cell alignment="center" valignment="top" usebox="none">
21634 \begin_inset Text
21635
21636 \begin_layout Plain Layout
21637 \begin_inset Formula $\Gamma(t)\propto$
21638 \end_inset
21639
21640
21641 \end_layout
21642
21643 \end_inset
21644 </cell>
21645 <cell alignment="center" valignment="top" usebox="none">
21646 \begin_inset Text
21647
21648 \begin_layout Plain Layout
21649 \begin_inset Formula $\:\Upsilon(t)$
21650 \end_inset
21651
21652
21653 \end_layout
21654
21655 \end_inset
21656 </cell>
21657 </row>
21658 <row>
21659 <cell alignment="center" valignment="top" usebox="none">
21660 \begin_inset Text
21661
21662 \begin_layout Plain Layout
21663 1024×
21664 \end_layout
21665
21666 \end_inset
21667 </cell>
21668 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21669 \begin_inset Text
21670
21671 \begin_layout Plain Layout
21672 768
21673 \begin_inset space \thinspace{}
21674 \end_inset
21675
21676 Pixels
21677 \end_layout
21678
21679 \end_inset
21680 </cell>
21681 <cell alignment="center" valignment="top" usebox="none">
21682 \begin_inset Text
21683
21684 \begin_layout Plain Layout
21685 \begin_inset Formula $5.78\cdot$
21686 \end_inset
21687
21688
21689 \end_layout
21690
21691 \end_inset
21692 </cell>
21693 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21694 \begin_inset Text
21695
21696 \begin_layout Plain Layout
21697 \begin_inset Formula $10^{7}$
21698 \end_inset
21699
21700
21701 \end_layout
21702
21703 \end_inset
21704 </cell>
21705 <cell alignment="center" valignment="top" usebox="none">
21706 \begin_inset Text
21707
21708 \begin_layout Plain Layout
21709 \begin_inset Formula $A\ne$
21710 \end_inset
21711
21712
21713 \end_layout
21714
21715 \end_inset
21716 </cell>
21717 <cell alignment="center" valignment="top" usebox="none">
21718 \begin_inset Text
21719
21720 \begin_layout Plain Layout
21721 \begin_inset Formula $\: B_{\mathrm{red}}$
21722 \end_inset
21723
21724
21725 \end_layout
21726
21727 \end_inset
21728 </cell>
21729 </row>
21730 <row>
21731 <cell alignment="center" valignment="top" usebox="none">
21732 \begin_inset Text
21733
21734 \begin_layout Plain Layout
21735 32×
21736 \end_layout
21737
21738 \end_inset
21739 </cell>
21740 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21741 \begin_inset Text
21742
21743 \begin_layout Plain Layout
21744 6
21745 \begin_inset space \thinspace{}
21746 \end_inset
21747
21748 cm
21749 \end_layout
21750
21751 \end_inset
21752 </cell>
21753 <cell alignment="center" valignment="top" usebox="none">
21754 \begin_inset Text
21755
21756 \begin_layout Plain Layout
21757 -
21758 \begin_inset Formula $33.5\cdot$
21759 \end_inset
21760
21761
21762 \end_layout
21763
21764 \end_inset
21765 </cell>
21766 <cell alignment="center" valignment="top" rightline="true" usebox="none">
21767 \begin_inset Text
21768
21769 \begin_layout Plain Layout
21770 \begin_inset Formula $10^{4}$
21771 \end_inset
21772
21773
21774 \end_layout
21775
21776 \end_inset
21777 </cell>
21778 <cell alignment="center" valignment="top" usebox="none">
21779 \begin_inset Text
21780
21781 \begin_layout Plain Layout
21782 \begin_inset Formula $\sin(\alpha)\ge$
21783 \end_inset
21784
21785
21786 \end_layout
21787
21788 \end_inset
21789 </cell>
21790 <cell alignment="center" valignment="top" usebox="none">
21791 \begin_inset Text
21792
21793 \begin_layout Plain Layout
21794 \begin_inset Formula $\:\sin(\beta)$
21795 \end_inset
21796
21797
21798 \end_layout
21799
21800 \end_inset
21801 </cell>
21802 </row>
21803 </lyxtabular>
21804
21805 \end_inset
21806
21807
21808 \end_layout
21809
21810 \end_inset
21811
21812
21813 \end_layout
21814
21815 \begin_layout Subsection
21816 Formats de cellule et de colonne personnalisés
21817 \begin_inset CommandInset label
21818 LatexCommand label
21819 name "sub:Formats-personnalisés"
21820
21821 \end_inset
21822
21823
21824 \begin_inset Index idx
21825 status collapsed
21826
21827 \begin_layout Plain Layout
21828 Personnalisation des tableaux !  Format de cellule/colonne
21829 \end_layout
21830
21831 \end_inset
21832
21833
21834 \end_layout
21835
21836 \begin_layout Standard
21837 Calculer la largeur nécessaire pour colonnes normales comme dans la section
21838 \begin_inset space ~
21839 \end_inset
21840
21841
21842 \begin_inset CommandInset ref
21843 LatexCommand ref
21844 reference "sec:Table-Width-Calculation"
21845
21846 \end_inset
21847
21848  et pour des colonnes couvertes par un cellule multi-colonne comme dans
21849  la section
21850 \begin_inset space ~
21851 \end_inset
21852
21853
21854 \begin_inset CommandInset ref
21855 LatexCommand ref
21856 reference "sub:Calculs-multicolonnes"
21857
21858 \end_inset
21859
21860  peut devenir très pénible si vous avez plusieurs tableaux.
21861  Pour vous rendre la vie plus facile, vous pouvez définir dans le préambule
21862  un format de cellule/colonne, qui puisse être utilisé dans tous les tableaux
21863  du document.
21864  Le format est défini avec la commande
21865 \end_layout
21866
21867 \begin_layout Standard
21868
21869 \series bold
21870
21871 \backslash
21872 newcolumntype{nom du format}[nombre d'arguments]{commandes}
21873 \end_layout
21874
21875 \begin_layout Standard
21876 Le nom du format peut n'avoir qu'une lettre.
21877  Les lettres 
21878 \emph on
21879 b
21880 \emph default
21881
21882 \emph on
21883 c
21884 \emph default
21885
21886 \emph on
21887 l
21888 \emph default
21889
21890 \emph on
21891 m
21892 \emph default
21893
21894 \emph on
21895 p
21896 \emph default
21897  et 
21898 \emph on
21899 r
21900 \emph default
21901  sont prédéfinies et donc ne peuvent être utilisées.
21902  Mais toutes les lettres de l'alphabet sont autorisées en majuscules.
21903 \end_layout
21904
21905 \begin_layout Standard
21906 \begin_inset VSpace medskip
21907 \end_inset
21908
21909
21910 \end_layout
21911
21912 \begin_layout Standard
21913 Pour de cellules multi-colonnes centrées verticalement et horizontalement
21914  avec une largeur donnée, vous pouvez définir le format de cellule suivant
21915  :
21916 \end_layout
21917
21918 \begin_layout Standard
21919
21920 \series bold
21921
21922 \backslash
21923 newcolumntype{M}[1]{>{
21924 \backslash
21925 centering
21926 \backslash
21927 hspace{0pt}}m{#1}}
21928 \end_layout
21929
21930 \begin_layout Standard
21931 Où le 
21932 \series bold
21933
21934 \backslash
21935 hspace{0pt}
21936 \series default
21937  évite le problème de césure du premier mot, comme c'est décrit en section
21938 \begin_inset space ~
21939 \end_inset
21940
21941
21942 \begin_inset CommandInset ref
21943 LatexCommand ref
21944 reference "sub:Lignes-multiple-dans-cellule"
21945
21946 \end_inset
21947
21948 .
21949  Ensuite, vous pouvez entrer
21950 \end_layout
21951
21952 \begin_layout Standard
21953
21954 \series bold
21955 M{width}
21956 \end_layout
21957
21958 \begin_layout Standard
21959 comme paramètre LaTeX dans la fenêtre de dialogue de tableau pour créer
21960  une multi-colonne.
21961 \end_layout
21962
21963 \begin_layout Standard
21964 \begin_inset VSpace bigskip
21965 \end_inset
21966
21967
21968 \end_layout
21969
21970 \begin_layout Standard
21971 Pour les cellules qui sont couvertes par la cellule multi-colonne, vous
21972  pouvez définir le format
21973 \end_layout
21974
21975 \begin_layout Standard
21976
21977 \series bold
21978
21979 \backslash
21980 newcolumntype{S}[2]{>{
21981 \backslash
21982 centering
21983 \backslash
21984 hspace{0pt}}
21985 \begin_inset Newline newline
21986 \end_inset
21987
21988
21989 \begin_inset Phantom HPhantom
21990 status open
21991
21992 \begin_layout Plain Layout
21993
21994 \series bold
21995
21996 \backslash
21997 newcolumntype{S}[2]
21998 \end_layout
21999
22000 \end_inset
22001
22002 m{(#1+(2
22003 \backslash
22004 tabcolsep+
22005 \backslash
22006 arrayrulewidth)*(1-#2))/#2}}
22007 \end_layout
22008
22009 \begin_layout Standard
22010 Ce format utilise l'équation
22011 \begin_inset space ~
22012 \end_inset
22013
22014
22015 \begin_inset CommandInset ref
22016 LatexCommand eqref
22017 reference "eq:Wgn"
22018
22019 \end_inset
22020
22021  pour calculer la largeur que doit avoir chacune des cellules couverte par
22022  la cellule multi-colonne pour qu'elles aient toutes la même largeur.
22023 \end_layout
22024
22025 \begin_layout Standard
22026 Ensuite, vous pouvez entrer
22027 \end_layout
22028
22029 \begin_layout Standard
22030
22031 \series bold
22032 S{largeur de la cellule multi-colonne}{nombre de colonnes couvertes}
22033 \end_layout
22034
22035 \begin_layout Standard
22036 comme paramètre LaTeX de la colonne.
22037 \end_layout
22038
22039 \begin_layout Standard
22040 \begin_inset VSpace bigskip
22041 \end_inset
22042
22043
22044 \end_layout
22045
22046 \begin_layout Standard
22047 Pour des colonnes colorées, vous pouvez définir
22048 \end_layout
22049
22050 \begin_layout Standard
22051
22052 \series bold
22053
22054 \backslash
22055 newcolumntype{K}[1]{>{
22056 \backslash
22057 columncolor{#1}
22058 \backslash
22059 hspace{0pt}}c}
22060 \end_layout
22061
22062 \begin_layout Standard
22063 Le 
22064 \begin_inset Quotes eld
22065 \end_inset
22066
22067 c
22068 \begin_inset Quotes erd
22069 \end_inset
22070
22071  à la fin crée une colonne de largeur variable dont le texte est centré
22072  horizontalement.
22073  Vous pouvez maintenant entrer
22074 \end_layout
22075
22076 \begin_layout Standard
22077
22078 \series bold
22079 K{nom de couleur}
22080 \end_layout
22081
22082 \begin_layout Standard
22083 comme paramètre LaTeX.
22084 \end_layout
22085
22086 \begin_layout Standard
22087 \begin_inset VSpace bigskip
22088 \end_inset
22089
22090
22091 \end_layout
22092
22093 \begin_layout Standard
22094 Pour créer le tableau
22095 \begin_inset space ~
22096 \end_inset
22097
22098
22099 \begin_inset CommandInset ref
22100 LatexCommand ref
22101 reference "tab:Tableau-formats-personnalisés"
22102
22103 \end_inset
22104
22105  utilisez les paramètres LaTeX
22106 \end_layout
22107
22108 \begin_layout Standard
22109
22110 \series bold
22111 M{2.5cm}
22112 \end_layout
22113
22114 \begin_layout Standard
22115 pour la première colonne et la multi-colonne,
22116 \end_layout
22117
22118 \begin_layout Standard
22119
22120 \series bold
22121 K{red}
22122 \end_layout
22123
22124 \begin_layout Standard
22125 pour la dernière colonne, et
22126 \end_layout
22127
22128 \begin_layout Standard
22129
22130 \series bold
22131 S{2.5cm}{2}
22132 \end_layout
22133
22134 \begin_layout Standard
22135 pour les cellules de la deuxième colonne.
22136 \end_layout
22137
22138 \begin_layout Standard
22139 \begin_inset Float table
22140 placement h
22141 wide false
22142 sideways false
22143 status open
22144
22145 \begin_layout Plain Layout
22146 \begin_inset Caption Standard
22147
22148 \begin_layout Plain Layout
22149 \begin_inset CommandInset label
22150 LatexCommand label
22151 name "tab:Tableau-formats-personnalisés"
22152
22153 \end_inset
22154
22155 Tableau utilisant des formats personnalisés
22156 \end_layout
22157
22158 \end_inset
22159
22160
22161 \end_layout
22162
22163 \begin_layout Plain Layout
22164 \align center
22165 \begin_inset Tabular
22166 <lyxtabular version="3" rows="3" columns="4">
22167 <features rotate="0" tabularvalignment="middle">
22168 <column alignment="center" valignment="middle" width="2.5cm" special="M{2.5cm}">
22169 <column alignment="center" valignment="middle" width="0" special="S{2.5cm}{2}">
22170 <column alignment="center" valignment="middle" width="0">
22171 <column alignment="center" valignment="middle" width="0" special="K{red}">
22172 <row>
22173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22174 \begin_inset Text
22175
22176 \begin_layout Plain Layout
22177 motTrèsLongDansUneCellule
22178 \end_layout
22179
22180 \end_inset
22181 </cell>
22182 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="M{2.5cm}">
22183 \begin_inset Text
22184
22185 \begin_layout Plain Layout
22186 multi-colonne avec multi-ligne
22187 \end_layout
22188
22189 \end_inset
22190 </cell>
22191 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22192 \begin_inset Text
22193
22194 \begin_layout Plain Layout
22195
22196 \end_layout
22197
22198 \end_inset
22199 </cell>
22200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22201 \begin_inset Text
22202
22203 \begin_layout Plain Layout
22204 c
22205 \end_layout
22206
22207 \end_inset
22208 </cell>
22209 </row>
22210 <row>
22211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22212 \begin_inset Text
22213
22214 \begin_layout Plain Layout
22215 d
22216 \end_layout
22217
22218 \end_inset
22219 </cell>
22220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22221 \begin_inset Text
22222
22223 \begin_layout Plain Layout
22224 e
22225 \end_layout
22226
22227 \end_inset
22228 </cell>
22229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22230 \begin_inset Text
22231
22232 \begin_layout Plain Layout
22233 f
22234 \end_layout
22235
22236 \end_inset
22237 </cell>
22238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22239 \begin_inset Text
22240
22241 \begin_layout Plain Layout
22242 g
22243 \end_layout
22244
22245 \end_inset
22246 </cell>
22247 </row>
22248 <row>
22249 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22250 \begin_inset Text
22251
22252 \begin_layout Plain Layout
22253 h
22254 \end_layout
22255
22256 \end_inset
22257 </cell>
22258 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22259 \begin_inset Text
22260
22261 \begin_layout Plain Layout
22262 i
22263 \end_layout
22264
22265 \end_inset
22266 </cell>
22267 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22268 \begin_inset Text
22269
22270 \begin_layout Plain Layout
22271 j
22272 \end_layout
22273
22274 \end_inset
22275 </cell>
22276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22277 \begin_inset Text
22278
22279 \begin_layout Plain Layout
22280 k
22281 \end_layout
22282
22283 \end_inset
22284 </cell>
22285 </row>
22286 </lyxtabular>
22287
22288 \end_inset
22289
22290
22291 \end_layout
22292
22293 \end_inset
22294
22295
22296 \end_layout
22297
22298 \begin_layout Subsection
22299 Épaisseur des filets
22300 \begin_inset CommandInset label
22301 LatexCommand label
22302 name "sub:Epaisseur-filets"
22303
22304 \end_inset
22305
22306
22307 \begin_inset Index idx
22308 status collapsed
22309
22310 \begin_layout Plain Layout
22311 Personnalisation des tableaux ! Épaisseur filets
22312 \end_layout
22313
22314 \end_inset
22315
22316
22317 \end_layout
22318
22319 \begin_layout Standard
22320 L'épaisseur de tous les filets d'un tableau peut être modifiée avec la variable
22321  
22322 \series bold
22323
22324 \backslash
22325 arrayrulewidth
22326 \series default
22327 .
22328  Pour mettre, par exemple, une épaisseur de filet de 1.5
22329 \begin_inset space \thinspace{}
22330 \end_inset
22331
22332 pt, comme pour le tableau
22333 \begin_inset space ~
22334 \end_inset
22335
22336
22337 \begin_inset CommandInset ref
22338 LatexCommand ref
22339 reference "tab:Tableau-filets-1.5pt"
22340
22341 \end_inset
22342
22343 , insérez la commande
22344 \end_layout
22345
22346 \begin_layout Standard
22347
22348 \series bold
22349
22350 \backslash
22351 setlength{
22352 \backslash
22353 arrayrulewidth}{1.5pt}
22354 \end_layout
22355
22356 \begin_layout Standard
22357 en code TeX avant le tableau ou le flottant de tableau.
22358  La nouvelle épaisseur de filet reste valable pour tous les tableaux qui
22359  suivent.
22360  pour revenir aux valeurs implicites, mettez 
22361 \series bold
22362
22363 \backslash
22364 arrayrulewidth
22365 \series default
22366  à 0.4
22367 \begin_inset space \thinspace{}
22368 \end_inset
22369
22370 pt en utilisant du code LaTeX après le tableau ou le flottant de tableau.
22371 \end_layout
22372
22373 \begin_layout Standard
22374 \begin_inset ERT
22375 status collapsed
22376
22377 \begin_layout Plain Layout
22378
22379
22380 \backslash
22381 setlength{
22382 \backslash
22383 arrayrulewidth}{1.5pt}
22384 \end_layout
22385
22386 \end_inset
22387
22388
22389 \begin_inset Float table
22390 wide false
22391 sideways false
22392 status open
22393
22394 \begin_layout Plain Layout
22395 \begin_inset Caption Standard
22396
22397 \begin_layout Plain Layout
22398 \begin_inset CommandInset label
22399 LatexCommand label
22400 name "tab:Tableau-filets-1.5pt"
22401
22402 \end_inset
22403
22404 Tableau avec des filets de 1.5
22405 \begin_inset space \thinspace{}
22406 \end_inset
22407
22408 pt
22409 \end_layout
22410
22411 \end_inset
22412
22413
22414 \end_layout
22415
22416 \begin_layout Plain Layout
22417 \align center
22418 \begin_inset Tabular
22419 <lyxtabular version="3" rows="3" columns="3">
22420 <features rotate="0" tabularvalignment="middle">
22421 <column alignment="center" valignment="top" width="0">
22422 <column alignment="center" valignment="top" width="0">
22423 <column alignment="center" valignment="top" width="0">
22424 <row>
22425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22426 \begin_inset Text
22427
22428 \begin_layout Plain Layout
22429 sd
22430 \end_layout
22431
22432 \end_inset
22433 </cell>
22434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22435 \begin_inset Text
22436
22437 \begin_layout Plain Layout
22438
22439 \end_layout
22440
22441 \end_inset
22442 </cell>
22443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22444 \begin_inset Text
22445
22446 \begin_layout Plain Layout
22447
22448 \end_layout
22449
22450 \end_inset
22451 </cell>
22452 </row>
22453 <row>
22454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22455 \begin_inset Text
22456
22457 \begin_layout Plain Layout
22458
22459 \end_layout
22460
22461 \end_inset
22462 </cell>
22463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22464 \begin_inset Text
22465
22466 \begin_layout Plain Layout
22467 sd
22468 \end_layout
22469
22470 \end_inset
22471 </cell>
22472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22473 \begin_inset Text
22474
22475 \begin_layout Plain Layout
22476
22477 \end_layout
22478
22479 \end_inset
22480 </cell>
22481 </row>
22482 <row>
22483 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22484 \begin_inset Text
22485
22486 \begin_layout Plain Layout
22487
22488 \end_layout
22489
22490 \end_inset
22491 </cell>
22492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22493 \begin_inset Text
22494
22495 \begin_layout Plain Layout
22496
22497 \end_layout
22498
22499 \end_inset
22500 </cell>
22501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22502 \begin_inset Text
22503
22504 \begin_layout Plain Layout
22505 sd
22506 \end_layout
22507
22508 \end_inset
22509 </cell>
22510 </row>
22511 </lyxtabular>
22512
22513 \end_inset
22514
22515
22516 \end_layout
22517
22518 \end_inset
22519
22520
22521 \begin_inset ERT
22522 status collapsed
22523
22524 \begin_layout Plain Layout
22525
22526
22527 \backslash
22528 setlength{
22529 \backslash
22530 arrayrulewidth}{0.4pt}
22531 \end_layout
22532
22533 \end_inset
22534
22535
22536 \end_layout
22537
22538 \begin_layout Standard
22539 \begin_inset VSpace bigskip
22540 \end_inset
22541
22542 Pour que seuls les filets horizontaux aient une épaisseur de 1.5
22543 \begin_inset space \thinspace{}
22544 \end_inset
22545
22546 pt, comme dans le tableau
22547 \begin_inset space ~
22548 \end_inset
22549
22550
22551 \begin_inset CommandInset ref
22552 LatexCommand ref
22553 reference "tab:Tableau-filets-horizontaux-1.5pt"
22554
22555 \end_inset
22556
22557 , insérez les commandes suivantes en code TeX avant le tableau ou le flottant
22558  de tableau :
22559 \end_layout
22560
22561 \begin_layout Standard
22562
22563 \series bold
22564
22565 \backslash
22566 let
22567 \backslash
22568 myHline
22569 \backslash
22570 hline
22571 \begin_inset Newline newline
22572 \end_inset
22573
22574
22575 \backslash
22576 renewcommand{
22577 \backslash
22578 hline}
22579 \begin_inset Newline newline
22580 \end_inset
22581
22582  {
22583 \backslash
22584 noalign{
22585 \backslash
22586 global
22587 \backslash
22588 arrayrulewidth 1.5pt}
22589 \begin_inset Newline newline
22590 \end_inset
22591
22592  
22593 \backslash
22594 myHline
22595 \backslash
22596 noalign{
22597 \backslash
22598 global
22599 \backslash
22600 arrayrulewidth 0.4pt}}
22601 \end_layout
22602
22603 \begin_layout Standard
22604 Pour revenir à l'épaisseur de filet implicite, insérez les commandes suivantes
22605  en code TeX après le tableau ou le flottant de tableau :
22606 \end_layout
22607
22608 \begin_layout Standard
22609
22610 \series bold
22611
22612 \backslash
22613 renewcommand{
22614 \backslash
22615 hline}{
22616 \backslash
22617 myHline}
22618 \end_layout
22619
22620 \begin_layout Standard
22621 \begin_inset ERT
22622 status collapsed
22623
22624 \begin_layout Plain Layout
22625
22626
22627 \backslash
22628 let
22629 \backslash
22630 myHline
22631 \backslash
22632 hline
22633 \end_layout
22634
22635 \begin_layout Plain Layout
22636
22637
22638 \backslash
22639 renewcommand{
22640 \backslash
22641 hline}
22642 \end_layout
22643
22644 \begin_layout Plain Layout
22645
22646  {
22647 \backslash
22648 noalign{
22649 \backslash
22650 global
22651 \backslash
22652 arrayrulewidth 1.5pt}
22653 \end_layout
22654
22655 \begin_layout Plain Layout
22656
22657   
22658 \backslash
22659 myHline
22660 \backslash
22661 noalign{
22662 \backslash
22663 global
22664 \backslash
22665 arrayrulewidth 0.4pt}}
22666 \end_layout
22667
22668 \end_inset
22669
22670
22671 \begin_inset Float table
22672 wide false
22673 sideways false
22674 status open
22675
22676 \begin_layout Plain Layout
22677 \begin_inset Caption Standard
22678
22679 \begin_layout Plain Layout
22680 \begin_inset CommandInset label
22681 LatexCommand label
22682 name "tab:Tableau-filets-horizontaux-1.5pt"
22683
22684 \end_inset
22685
22686 Tableau avec des filets horizontaux de 1.5
22687 \begin_inset space \thinspace{}
22688 \end_inset
22689
22690 pt
22691 \end_layout
22692
22693 \end_inset
22694
22695
22696 \end_layout
22697
22698 \begin_layout Plain Layout
22699 \align center
22700 \begin_inset Tabular
22701 <lyxtabular version="3" rows="3" columns="3">
22702 <features rotate="0" tabularvalignment="middle">
22703 <column alignment="center" valignment="top" width="0">
22704 <column alignment="center" valignment="top" width="0">
22705 <column alignment="center" valignment="top" width="0">
22706 <row>
22707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22708 \begin_inset Text
22709
22710 \begin_layout Plain Layout
22711 sd
22712 \end_layout
22713
22714 \end_inset
22715 </cell>
22716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22717 \begin_inset Text
22718
22719 \begin_layout Plain Layout
22720
22721 \end_layout
22722
22723 \end_inset
22724 </cell>
22725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22726 \begin_inset Text
22727
22728 \begin_layout Plain Layout
22729
22730 \end_layout
22731
22732 \end_inset
22733 </cell>
22734 </row>
22735 <row>
22736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22737 \begin_inset Text
22738
22739 \begin_layout Plain Layout
22740
22741 \end_layout
22742
22743 \end_inset
22744 </cell>
22745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22746 \begin_inset Text
22747
22748 \begin_layout Plain Layout
22749 sd
22750 \end_layout
22751
22752 \end_inset
22753 </cell>
22754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22755 \begin_inset Text
22756
22757 \begin_layout Plain Layout
22758
22759 \end_layout
22760
22761 \end_inset
22762 </cell>
22763 </row>
22764 <row>
22765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22766 \begin_inset Text
22767
22768 \begin_layout Plain Layout
22769
22770 \end_layout
22771
22772 \end_inset
22773 </cell>
22774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22775 \begin_inset Text
22776
22777 \begin_layout Plain Layout
22778
22779 \end_layout
22780
22781 \end_inset
22782 </cell>
22783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22784 \begin_inset Text
22785
22786 \begin_layout Plain Layout
22787 sd
22788 \end_layout
22789
22790 \end_inset
22791 </cell>
22792 </row>
22793 </lyxtabular>
22794
22795 \end_inset
22796
22797
22798 \end_layout
22799
22800 \end_inset
22801
22802
22803 \begin_inset ERT
22804 status collapsed
22805
22806 \begin_layout Plain Layout
22807
22808
22809 \backslash
22810 renewcommand{
22811 \backslash
22812 hline}{
22813 \backslash
22814 myHline}
22815 \end_layout
22816
22817 \end_inset
22818
22819
22820 \end_layout
22821
22822 \begin_layout Standard
22823 \begin_inset VSpace bigskip
22824 \end_inset
22825
22826 Pour que seuls les filets verticaux aient une épaisseur de 1.5
22827 \begin_inset space \thinspace{}
22828 \end_inset
22829
22830 pt, créez le format de colonne suivant dans le préambule, en suivant la
22831  description de la section
22832 \begin_inset space ~
22833 \end_inset
22834
22835
22836 \begin_inset CommandInset ref
22837 LatexCommand ref
22838 reference "sub:Formats-personnalisés"
22839
22840 \end_inset
22841
22842 :
22843 \end_layout
22844
22845 \begin_layout Standard
22846
22847 \series bold
22848
22849 \backslash
22850 newcolumntype{V}{!{
22851 \backslash
22852 vrule width 1.5pt}}
22853 \end_layout
22854
22855 \begin_layout Standard
22856 Pour le tableau
22857 \begin_inset space ~
22858 \end_inset
22859
22860
22861 \begin_inset CommandInset ref
22862 LatexCommand ref
22863 reference "tab:Tableau-filets-verticaux-1.5pt"
22864
22865 \end_inset
22866
22867  le paramètre LaTeX 
22868 \end_layout
22869
22870 \begin_layout Standard
22871
22872 \series bold
22873 VcV
22874 \end_layout
22875
22876 \begin_layout Standard
22877 a été utilisé pour la dernière colonne et
22878 \end_layout
22879
22880 \begin_layout Standard
22881
22882 \series bold
22883 Vc
22884 \end_layout
22885
22886 \begin_layout Standard
22887 pour les autres colonnes.
22888 \end_layout
22889
22890 \begin_layout Standard
22891 \begin_inset Float table
22892 wide false
22893 sideways false
22894 status open
22895
22896 \begin_layout Plain Layout
22897 \begin_inset Caption Standard
22898
22899 \begin_layout Plain Layout
22900 \begin_inset CommandInset label
22901 LatexCommand label
22902 name "tab:Tableau-filets-verticaux-1.5pt"
22903
22904 \end_inset
22905
22906 Tableau avec des filets verticaux de 1.5
22907 \begin_inset space \thinspace{}
22908 \end_inset
22909
22910 pt 
22911 \end_layout
22912
22913 \end_inset
22914
22915
22916 \end_layout
22917
22918 \begin_layout Plain Layout
22919 \align center
22920 \begin_inset Tabular
22921 <lyxtabular version="3" rows="3" columns="3">
22922 <features rotate="0" tabularvalignment="middle">
22923 <column alignment="center" valignment="top" width="0" special="Vc">
22924 <column alignment="center" valignment="top" width="0" special="Vc">
22925 <column alignment="center" valignment="top" width="0" special="VcV">
22926 <row>
22927 <cell alignment="center" valignment="top" topline="true" usebox="none">
22928 \begin_inset Text
22929
22930 \begin_layout Plain Layout
22931 sd
22932 \end_layout
22933
22934 \end_inset
22935 </cell>
22936 <cell alignment="center" valignment="top" topline="true" usebox="none">
22937 \begin_inset Text
22938
22939 \begin_layout Plain Layout
22940
22941 \end_layout
22942
22943 \end_inset
22944 </cell>
22945 <cell alignment="center" valignment="top" topline="true" usebox="none">
22946 \begin_inset Text
22947
22948 \begin_layout Plain Layout
22949
22950 \end_layout
22951
22952 \end_inset
22953 </cell>
22954 </row>
22955 <row>
22956 <cell alignment="center" valignment="top" topline="true" usebox="none">
22957 \begin_inset Text
22958
22959 \begin_layout Plain Layout
22960
22961 \end_layout
22962
22963 \end_inset
22964 </cell>
22965 <cell alignment="center" valignment="top" topline="true" usebox="none">
22966 \begin_inset Text
22967
22968 \begin_layout Plain Layout
22969 sd
22970 \end_layout
22971
22972 \end_inset
22973 </cell>
22974 <cell alignment="center" valignment="top" topline="true" usebox="none">
22975 \begin_inset Text
22976
22977 \begin_layout Plain Layout
22978
22979 \end_layout
22980
22981 \end_inset
22982 </cell>
22983 </row>
22984 <row>
22985 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
22986 \begin_inset Text
22987
22988 \begin_layout Plain Layout
22989
22990 \end_layout
22991
22992 \end_inset
22993 </cell>
22994 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
22995 \begin_inset Text
22996
22997 \begin_layout Plain Layout
22998
22999 \end_layout
23000
23001 \end_inset
23002 </cell>
23003 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
23004 \begin_inset Text
23005
23006 \begin_layout Plain Layout
23007 sd
23008 \end_layout
23009
23010 \end_inset
23011 </cell>
23012 </row>
23013 </lyxtabular>
23014
23015 \end_inset
23016
23017
23018 \end_layout
23019
23020 \end_inset
23021
23022
23023 \end_layout
23024
23025 \begin_layout Subsection
23026 Filets à traits interrompus
23027 \begin_inset Index idx
23028 status collapsed
23029
23030 \begin_layout Plain Layout
23031 Personnalisation des tableaux ! Filets à traits interrompus
23032 \end_layout
23033
23034 \end_inset
23035
23036
23037 \end_layout
23038
23039 \begin_layout Standard
23040 \begin_inset ERT
23041 status collapsed
23042
23043 \begin_layout Plain Layout
23044
23045
23046 \backslash
23047 ifarydshln
23048 \end_layout
23049
23050 \end_inset
23051
23052
23053 \begin_inset Note Note
23054 status open
23055
23056 \begin_layout Plain Layout
23057 La section suivante ne s'affichera que si vous avez installé le paquetage
23058  LaTeX 
23059 \series bold
23060 arydshln
23061 \series default
23062 .
23063 \end_layout
23064
23065 \end_inset
23066
23067
23068 \end_layout
23069
23070 \begin_layout Standard
23071 \begin_inset Float table
23072 placement H
23073 wide false
23074 sideways false
23075 status open
23076
23077 \begin_layout Plain Layout
23078 \begin_inset Caption Standard
23079
23080 \begin_layout Plain Layout
23081 \begin_inset CommandInset label
23082 LatexCommand label
23083 name "tab:Tableau-filets-tirets"
23084
23085 \end_inset
23086
23087 Tableau avec des filets à traits interrompus
23088 \end_layout
23089
23090 \end_inset
23091
23092
23093 \end_layout
23094
23095 \begin_layout Plain Layout
23096 \align center
23097 \begin_inset Tabular
23098 <lyxtabular version="3" rows="5" columns="5">
23099 <features rotate="0" tabularvalignment="middle">
23100 <column alignment="center" valignment="top" width="0">
23101 <column alignment="center" valignment="top" width="0">
23102 <column alignment="center" valignment="top" width="0" special=":c">
23103 <column alignment="center" valignment="top" width="0">
23104 <column alignment="center" valignment="top" width="0">
23105 <row>
23106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23107 \begin_inset Text
23108
23109 \begin_layout Plain Layout
23110 a
23111 \end_layout
23112
23113 \end_inset
23114 </cell>
23115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23116 \begin_inset Text
23117
23118 \begin_layout Plain Layout
23119 b
23120 \end_layout
23121
23122 \end_inset
23123 </cell>
23124 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
23125 \begin_inset Text
23126
23127 \begin_layout Plain Layout
23128 c
23129 \end_layout
23130
23131 \end_inset
23132 </cell>
23133 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23134 \begin_inset Text
23135
23136 \begin_layout Plain Layout
23137 d
23138 \end_layout
23139
23140 \end_inset
23141 </cell>
23142 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23143 \begin_inset Text
23144
23145 \begin_layout Plain Layout
23146 e
23147 \end_layout
23148
23149 \end_inset
23150 </cell>
23151 </row>
23152 <row>
23153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23154 \begin_inset Text
23155
23156 \begin_layout Plain Layout
23157 f
23158 \end_layout
23159
23160 \end_inset
23161 </cell>
23162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23163 \begin_inset Text
23164
23165 \begin_layout Plain Layout
23166 g
23167 \end_layout
23168
23169 \end_inset
23170 </cell>
23171 <cell alignment="center" valignment="top" topline="true" usebox="none">
23172 \begin_inset Text
23173
23174 \begin_layout Plain Layout
23175 h
23176 \end_layout
23177
23178 \end_inset
23179 </cell>
23180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23181 \begin_inset Text
23182
23183 \begin_layout Plain Layout
23184 i
23185 \end_layout
23186
23187 \end_inset
23188 </cell>
23189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23190 \begin_inset Text
23191
23192 \begin_layout Plain Layout
23193 j
23194 \end_layout
23195
23196 \end_inset
23197 </cell>
23198 </row>
23199 <row>
23200 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23201 \begin_inset Text
23202
23203 \begin_layout Plain Layout
23204 \begin_inset ERT
23205 status collapsed
23206
23207 \begin_layout Plain Layout
23208
23209
23210 \backslash
23211 hdashline 
23212 \end_layout
23213
23214 \end_inset
23215
23216 k
23217 \end_layout
23218
23219 \end_inset
23220 </cell>
23221 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23222 \begin_inset Text
23223
23224 \begin_layout Plain Layout
23225 l
23226 \end_layout
23227
23228 \end_inset
23229 </cell>
23230 <cell alignment="center" valignment="top" usebox="none">
23231 \begin_inset Text
23232
23233 \begin_layout Plain Layout
23234 m
23235 \end_layout
23236
23237 \end_inset
23238 </cell>
23239 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23240 \begin_inset Text
23241
23242 \begin_layout Plain Layout
23243 n
23244 \end_layout
23245
23246 \end_inset
23247 </cell>
23248 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
23249 \begin_inset Text
23250
23251 \begin_layout Plain Layout
23252 o
23253 \end_layout
23254
23255 \end_inset
23256 </cell>
23257 </row>
23258 <row>
23259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23260 \begin_inset Text
23261
23262 \begin_layout Plain Layout
23263 \begin_inset ERT
23264 status collapsed
23265
23266 \begin_layout Plain Layout
23267
23268
23269 \backslash
23270 cdashline{4-5}
23271 \end_layout
23272
23273 \end_inset
23274
23275 p
23276 \end_layout
23277
23278 \end_inset
23279 </cell>
23280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23281 \begin_inset Text
23282
23283 \begin_layout Plain Layout
23284 q
23285 \end_layout
23286
23287 \end_inset
23288 </cell>
23289 <cell alignment="center" valignment="top" topline="true" usebox="none" special="c:">
23290 \begin_inset Text
23291
23292 \begin_layout Plain Layout
23293 r
23294 \end_layout
23295
23296 \end_inset
23297 </cell>
23298 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
23299 \begin_inset Text
23300
23301 \begin_layout Plain Layout
23302 s
23303 \end_layout
23304
23305 \end_inset
23306 </cell>
23307 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23308 \begin_inset Text
23309
23310 \begin_layout Plain Layout
23311
23312 \end_layout
23313
23314 \end_inset
23315 </cell>
23316 </row>
23317 <row>
23318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23319 \begin_inset Text
23320
23321 \begin_layout Plain Layout
23322 t
23323 \end_layout
23324
23325 \end_inset
23326 </cell>
23327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23328 \begin_inset Text
23329
23330 \begin_layout Plain Layout
23331 u
23332 \end_layout
23333
23334 \end_inset
23335 </cell>
23336 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
23337 \begin_inset Text
23338
23339 \begin_layout Plain Layout
23340 v
23341 \end_layout
23342
23343 \end_inset
23344 </cell>
23345 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23346 \begin_inset Text
23347
23348 \begin_layout Plain Layout
23349 w
23350 \end_layout
23351
23352 \end_inset
23353 </cell>
23354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23355 \begin_inset Text
23356
23357 \begin_layout Plain Layout
23358 x
23359 \end_layout
23360
23361 \end_inset
23362 </cell>
23363 </row>
23364 </lyxtabular>
23365
23366 \end_inset
23367
23368
23369 \end_layout
23370
23371 \end_inset
23372
23373
23374 \end_layout
23375
23376 \begin_layout Standard
23377 LyX ne gère pas de façon native les filets à lignes interrompues, vous devez
23378  donc employer du code TeX.
23379  Mais avant il faut charger le paquetage LaTeX 
23380 \series bold
23381 arydshln
23382 \series default
23383
23384 \begin_inset Index idx
23385 status collapsed
23386
23387 \begin_layout Plain Layout
23388 Paquetages LaTeX ! arydshln
23389 \end_layout
23390
23391 \end_inset
23392
23393  dans le préambule du document avec la commande 
23394 \end_layout
23395
23396 \begin_layout Standard
23397
23398 \series bold
23399
23400 \backslash
23401 usepackage{arydshln}
23402 \end_layout
23403
23404 \begin_layout Standard
23405 Pour faire un filet vertical avec un trait interrompu, mettez deux points
23406  
23407 \begin_inset Quotes eld
23408 \end_inset
23409
23410 :
23411 \begin_inset Quotes erd
23412 \end_inset
23413
23414  avec le caractère décrivant l'alignement horizontal comme paramètre LaTeX
23415  dans la fenêtre de dialogue de paramètre du tableau.
23416 \end_layout
23417
23418 \begin_layout Standard
23419 Pour un trait horizontal interrompu, ajoutez la commande
23420 \end_layout
23421
23422 \begin_layout Standard
23423
23424 \series bold
23425
23426 \backslash
23427 hdashline
23428 \end_layout
23429
23430 \begin_layout Standard
23431 en code TeX comme premier élément de la première cellule de la ligne de
23432  tableau.
23433 \end_layout
23434
23435 \begin_layout Standard
23436 Pour des filets interrompus avec des cellules multi-colonnes, utilisez la
23437  commande 
23438 \end_layout
23439
23440 \begin_layout Standard
23441
23442 \series bold
23443
23444 \backslash
23445 cdashline{
23446 \series default
23447 numéros de colonnes}
23448 \end_layout
23449
23450 \begin_layout Standard
23451 en code TeX comme premier élément de la première cellule de la ligne.
23452  Si par exemple, vous avez une cellule multi-colonne qui couvre les colonnes
23453  2 à 4 et que vous voulez un filet interrompu au dessus, ajoutez la commande
23454 \end_layout
23455
23456 \begin_layout Standard
23457
23458 \series bold
23459
23460 \backslash
23461 cdashline{2-4}
23462 \end_layout
23463
23464 \begin_layout Standard
23465 comme premier élément de la première cellule de la ligne contenant la multi-colo
23466 nne.
23467 \end_layout
23468
23469 \begin_layout Standard
23470 \begin_inset VSpace bigskip
23471 \end_inset
23472
23473
23474 \end_layout
23475
23476 \begin_layout Standard
23477 Le tableau
23478 \begin_inset space ~
23479 \end_inset
23480
23481
23482 \begin_inset CommandInset ref
23483 LatexCommand ref
23484 reference "tab:Tableau-filets-tirets"
23485
23486 \end_inset
23487
23488  a été créé en utilisant 
23489 \begin_inset Quotes eld
23490 \end_inset
23491
23492
23493 \series bold
23494 :c
23495 \series default
23496
23497 \begin_inset Quotes erd
23498 \end_inset
23499
23500  comme paramètre LaTeX pour la troisième colonne.
23501  La commande en code TeX 
23502 \series bold
23503
23504 \backslash
23505 hdashline
23506 \series default
23507  a été insérée dans la première cellule de la troisième ligne et la commande
23508  en code TeX 
23509 \series bold
23510
23511 \backslash
23512 cdashline{4-5}
23513 \series default
23514  a été insérée dans la première cellule de la quatrième ligne.
23515 \end_layout
23516
23517 \begin_layout Standard
23518 \begin_inset VSpace bigskip
23519 \end_inset
23520
23521
23522 \end_layout
23523
23524 \begin_layout Standard
23525
23526 \lang english
23527 Tables with dashed lines can also be colored as shown by
23528 \lang french
23529  tableau
23530 \begin_inset space ~
23531 \end_inset
23532
23533
23534 \begin_inset CommandInset ref
23535 LatexCommand ref
23536 reference "tab:Colored-table-with"
23537
23538 \end_inset
23539
23540 .
23541 \end_layout
23542
23543 \begin_layout Standard
23544 \begin_inset ERT
23545 status collapsed
23546
23547 \begin_layout Plain Layout
23548
23549
23550 \backslash
23551 setlength{
23552 \backslash
23553 arrayrulewidth}{1pt}
23554 \end_layout
23555
23556 \end_inset
23557
23558
23559 \lang english
23560
23561 \begin_inset Note Note
23562 status collapsed
23563
23564 \begin_layout Plain Layout
23565
23566 \lang english
23567 thicker lines for better visualization of the line color
23568 \end_layout
23569
23570 \end_inset
23571
23572
23573 \end_layout
23574
23575 \begin_layout Standard
23576 \begin_inset ERT
23577 status collapsed
23578
23579 \begin_layout Plain Layout
23580
23581
23582 \backslash
23583 dashgapcolor{green}
23584 \end_layout
23585
23586 \end_inset
23587
23588
23589 \lang english
23590
23591 \begin_inset Note Note
23592 status collapsed
23593
23594 \begin_layout Plain Layout
23595
23596 \lang english
23597 color gaps between dashes green
23598 \end_layout
23599
23600 \end_inset
23601
23602
23603 \end_layout
23604
23605 \begin_layout Standard
23606 \begin_inset ERT
23607 status collapsed
23608
23609 \begin_layout Plain Layout
23610
23611
23612 \backslash
23613 let
23614 \backslash
23615 myHdashline
23616 \backslash
23617 hdashline
23618 \end_layout
23619
23620 \begin_layout Plain Layout
23621
23622
23623 \backslash
23624 renewcommand{
23625 \backslash
23626 hdashline}
23627 \end_layout
23628
23629 \begin_layout Plain Layout
23630
23631  {
23632 \backslash
23633 arrayrulecolor{red}
23634 \backslash
23635 myHdashline
23636 \backslash
23637 arrayrulecolor{black}}
23638 \end_layout
23639
23640 \end_inset
23641
23642
23643 \lang english
23644
23645 \begin_inset Note Note
23646 status collapsed
23647
23648 \begin_layout Plain Layout
23649
23650 \lang english
23651 color horizontal, dashed lines red
23652 \end_layout
23653
23654 \end_inset
23655
23656
23657 \end_layout
23658
23659 \begin_layout Standard
23660 \begin_inset ERT
23661 status collapsed
23662
23663 \begin_layout Plain Layout
23664
23665
23666 \backslash
23667 let
23668 \backslash
23669 myCdashline
23670 \backslash
23671 cdashline
23672 \end_layout
23673
23674 \begin_layout Plain Layout
23675
23676
23677 \backslash
23678 renewcommand{
23679 \backslash
23680 cdashline}[1]
23681 \end_layout
23682
23683 \begin_layout Plain Layout
23684
23685  {
23686 \backslash
23687 arrayrulecolor{yellow}
23688 \backslash
23689 myCdashline{#1}
23690 \backslash
23691 arrayrulecolor{black}}
23692 \end_layout
23693
23694 \end_inset
23695
23696
23697 \lang english
23698
23699 \begin_inset Note Note
23700 status collapsed
23701
23702 \begin_layout Plain Layout
23703
23704 \lang english
23705 color partial horizontal, dashed lines yellow
23706 \end_layout
23707
23708 \end_inset
23709
23710
23711 \end_layout
23712
23713 \begin_layout Standard
23714 \begin_inset Float table
23715 placement h
23716 wide false
23717 sideways false
23718 status open
23719
23720 \begin_layout Plain Layout
23721 \begin_inset Caption Standard
23722
23723 \begin_layout Plain Layout
23724 \begin_inset CommandInset label
23725 LatexCommand label
23726 name "tab:Colored-table-with"
23727
23728 \end_inset
23729
23730
23731 \lang english
23732 Colored table with dashed lines
23733 \end_layout
23734
23735 \end_inset
23736
23737
23738 \end_layout
23739
23740 \begin_layout Plain Layout
23741 \align center
23742 \begin_inset Tabular
23743 <lyxtabular version="3" rows="5" columns="5">
23744 <features rotate="0" tabularvalignment="middle">
23745 <column alignment="center" valignment="top" width="0pt" special=">{\columncolor{darkgreen}\centering}c">
23746 <column alignment="center" valignment="top" width="0pt">
23747 <column alignment="center" valignment="top" width="0pt" special=":c">
23748 <column alignment="center" valignment="top" width="0">
23749 <column alignment="center" valignment="top" width="0">
23750 <row>
23751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23752 \begin_inset Text
23753
23754 \begin_layout Plain Layout
23755 a
23756 \end_layout
23757
23758 \end_inset
23759 </cell>
23760 <cell alignment="center" valignment="top" topline="true" usebox="none">
23761 \begin_inset Text
23762
23763 \begin_layout Plain Layout
23764 b
23765 \end_layout
23766
23767 \end_inset
23768 </cell>
23769 <cell alignment="center" valignment="top" topline="true" usebox="none">
23770 \begin_inset Text
23771
23772 \begin_layout Plain Layout
23773 c
23774 \end_layout
23775
23776 \end_inset
23777 </cell>
23778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23779 \begin_inset Text
23780
23781 \begin_layout Plain Layout
23782 d
23783 \end_layout
23784
23785 \end_inset
23786 </cell>
23787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23788 \begin_inset Text
23789
23790 \begin_layout Plain Layout
23791 e
23792 \end_layout
23793
23794 \end_inset
23795 </cell>
23796 </row>
23797 <row>
23798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23799 \begin_inset Text
23800
23801 \begin_layout Plain Layout
23802 f
23803 \end_layout
23804
23805 \end_inset
23806 </cell>
23807 <cell alignment="center" valignment="top" topline="true" usebox="none">
23808 \begin_inset Text
23809
23810 \begin_layout Plain Layout
23811 g
23812 \end_layout
23813
23814 \end_inset
23815 </cell>
23816 <cell alignment="center" valignment="top" topline="true" usebox="none">
23817 \begin_inset Text
23818
23819 \begin_layout Plain Layout
23820 h
23821 \end_layout
23822
23823 \end_inset
23824 </cell>
23825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23826 \begin_inset Text
23827
23828 \begin_layout Plain Layout
23829 i
23830 \end_layout
23831
23832 \end_inset
23833 </cell>
23834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23835 \begin_inset Text
23836
23837 \begin_layout Plain Layout
23838 j
23839 \end_layout
23840
23841 \end_inset
23842 </cell>
23843 </row>
23844 <row>
23845 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23846 \begin_inset Text
23847
23848 \begin_layout Plain Layout
23849 \begin_inset ERT
23850 status collapsed
23851
23852 \begin_layout Plain Layout
23853
23854
23855 \backslash
23856 hdashline 
23857 \end_layout
23858
23859 \end_inset
23860
23861
23862 \begin_inset ERT
23863 status collapsed
23864
23865 \begin_layout Plain Layout
23866
23867
23868 \backslash
23869 rowcolor{Gray}
23870 \end_layout
23871
23872 \end_inset
23873
23874 k
23875 \end_layout
23876
23877 \end_inset
23878 </cell>
23879 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23880 \begin_inset Text
23881
23882 \begin_layout Plain Layout
23883 l
23884 \end_layout
23885
23886 \end_inset
23887 </cell>
23888 <cell alignment="center" valignment="top" usebox="none">
23889 \begin_inset Text
23890
23891 \begin_layout Plain Layout
23892 m
23893 \end_layout
23894
23895 \end_inset
23896 </cell>
23897 <cell alignment="center" valignment="top" leftline="true" usebox="none">
23898 \begin_inset Text
23899
23900 \begin_layout Plain Layout
23901 n
23902 \end_layout
23903
23904 \end_inset
23905 </cell>
23906 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
23907 \begin_inset Text
23908
23909 \begin_layout Plain Layout
23910 o
23911 \end_layout
23912
23913 \end_inset
23914 </cell>
23915 </row>
23916 <row>
23917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23918 \begin_inset Text
23919
23920 \begin_layout Plain Layout
23921 \begin_inset ERT
23922 status collapsed
23923
23924 \begin_layout Plain Layout
23925
23926
23927 \backslash
23928 cdashline{4-5}
23929 \end_layout
23930
23931 \end_inset
23932
23933 p
23934 \end_layout
23935
23936 \end_inset
23937 </cell>
23938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23939 \begin_inset Text
23940
23941 \begin_layout Plain Layout
23942 q
23943 \end_layout
23944
23945 \end_inset
23946 </cell>
23947 <cell alignment="center" valignment="top" topline="true" usebox="none" special="c:">
23948 \begin_inset Text
23949
23950 \begin_layout Plain Layout
23951 r
23952 \end_layout
23953
23954 \end_inset
23955 </cell>
23956 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
23957 \begin_inset Text
23958
23959 \begin_layout Plain Layout
23960 s
23961 \end_layout
23962
23963 \end_inset
23964 </cell>
23965 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23966 \begin_inset Text
23967
23968 \begin_layout Plain Layout
23969
23970 \end_layout
23971
23972 \end_inset
23973 </cell>
23974 </row>
23975 <row>
23976 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23977 \begin_inset Text
23978
23979 \begin_layout Plain Layout
23980 t
23981 \end_layout
23982
23983 \end_inset
23984 </cell>
23985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23986 \begin_inset Text
23987
23988 \begin_layout Plain Layout
23989 u
23990 \end_layout
23991
23992 \end_inset
23993 </cell>
23994 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
23995 \begin_inset Text
23996
23997 \begin_layout Plain Layout
23998 v
23999 \end_layout
24000
24001 \end_inset
24002 </cell>
24003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24004 \begin_inset Text
24005
24006 \begin_layout Plain Layout
24007 w
24008 \end_layout
24009
24010 \end_inset
24011 </cell>
24012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24013 \begin_inset Text
24014
24015 \begin_layout Plain Layout
24016 \begin_inset ERT
24017 status collapsed
24018
24019 \begin_layout Plain Layout
24020
24021
24022 \backslash
24023 cellcolor{Maroon}
24024 \end_layout
24025
24026 \end_inset
24027
24028 i
24029 \end_layout
24030
24031 \end_inset
24032 </cell>
24033 </row>
24034 </lyxtabular>
24035
24036 \end_inset
24037
24038
24039 \end_layout
24040
24041 \end_inset
24042
24043
24044 \end_layout
24045
24046 \begin_layout Standard
24047 \begin_inset ERT
24048 status collapsed
24049
24050 \begin_layout Plain Layout
24051
24052
24053 \backslash
24054 renewcommand{
24055 \backslash
24056 hdashline}{
24057 \backslash
24058 myHdashline}
24059 \end_layout
24060
24061 \end_inset
24062
24063
24064 \lang english
24065
24066 \begin_inset Note Note
24067 status collapsed
24068
24069 \begin_layout Plain Layout
24070
24071 \lang english
24072 reset to default
24073 \end_layout
24074
24075 \end_inset
24076
24077
24078 \end_layout
24079
24080 \begin_layout Standard
24081 \begin_inset ERT
24082 status collapsed
24083
24084 \begin_layout Plain Layout
24085
24086
24087 \backslash
24088 renewcommand{
24089 \backslash
24090 cdashline}{
24091 \backslash
24092 myCdashline}
24093 \end_layout
24094
24095 \end_inset
24096
24097
24098 \lang english
24099
24100 \begin_inset Note Note
24101 status collapsed
24102
24103 \begin_layout Plain Layout
24104
24105 \lang english
24106 reset to default
24107 \end_layout
24108
24109 \end_inset
24110
24111
24112 \end_layout
24113
24114 \begin_layout Standard
24115 \begin_inset ERT
24116 status collapsed
24117
24118 \begin_layout Plain Layout
24119
24120
24121 \backslash
24122 nodashgapcolor
24123 \end_layout
24124
24125 \end_inset
24126
24127
24128 \lang english
24129
24130 \begin_inset Note Note
24131 status collapsed
24132
24133 \begin_layout Plain Layout
24134
24135 \lang english
24136 reset to default
24137 \end_layout
24138
24139 \end_inset
24140
24141
24142 \end_layout
24143
24144 \begin_layout Standard
24145 \begin_inset ERT
24146 status collapsed
24147
24148 \begin_layout Plain Layout
24149
24150
24151 \backslash
24152 setlength{
24153 \backslash
24154 arrayrulewidth}{0.4pt}
24155 \end_layout
24156
24157 \end_inset
24158
24159
24160 \lang english
24161
24162 \begin_inset Note Note
24163 status collapsed
24164
24165 \begin_layout Plain Layout
24166
24167 \lang english
24168 reset to default
24169 \end_layout
24170
24171 \end_inset
24172
24173
24174 \end_layout
24175
24176 \begin_layout Standard
24177
24178 \lang english
24179 The coloring of lines, columns and lines works as decribed in section
24180 \begin_inset space ~
24181 \end_inset
24182
24183
24184 \lang french
24185
24186 \begin_inset CommandInset ref
24187 LatexCommand ref
24188 reference "sec:Tableaux-Colorés"
24189
24190 \end_inset
24191
24192
24193 \lang english
24194 .
24195  Coloring horizontal lines works analogically as described there as well,
24196  one only needs to replace in the commands 
24197 \series bold
24198
24199 \backslash
24200 myHlineC
24201 \series default
24202  by 
24203 \series bold
24204
24205 \backslash
24206 myHdashline
24207 \series default
24208  and 
24209 \backslash
24210
24211 \series bold
24212 hline
24213 \series default
24214  by 
24215 \series bold
24216
24217 \backslash
24218 hdashline
24219 \series default
24220 ; so one uses the command
24221 \end_layout
24222
24223 \begin_layout Standard
24224
24225 \series bold
24226
24227 \backslash
24228 let
24229 \backslash
24230 myHdashline
24231 \backslash
24232 hdashline
24233 \begin_inset Newline newline
24234 \end_inset
24235
24236
24237 \backslash
24238 renewcommand{
24239 \backslash
24240 hdashline}
24241 \begin_inset Newline newline
24242 \end_inset
24243
24244
24245 \begin_inset Phantom HPhantom
24246 status open
24247
24248 \begin_layout Plain Layout
24249 \begin_inset space ~
24250 \end_inset
24251
24252
24253 \end_layout
24254
24255 \end_inset
24256
24257 {
24258 \backslash
24259 arrayrulecolor{red}
24260 \backslash
24261 myHdashline
24262 \backslash
24263 arrayrulecolor{black}}
24264 \end_layout
24265
24266 \begin_layout Standard
24267
24268 \lang english
24269 To color 
24270 \series bold
24271
24272 \backslash
24273 cdashline
24274 \series default
24275 , the command is
24276 \end_layout
24277
24278 \begin_layout Standard
24279
24280 \series bold
24281
24282 \backslash
24283 let
24284 \backslash
24285 myCdashline
24286 \backslash
24287 cdashline
24288 \begin_inset Newline newline
24289 \end_inset
24290
24291
24292 \backslash
24293 renewcommand{
24294 \backslash
24295 cdashline}[1]
24296 \begin_inset Newline newline
24297 \end_inset
24298
24299
24300 \begin_inset Phantom HPhantom
24301 status open
24302
24303 \begin_layout Plain Layout
24304 \begin_inset space ~
24305 \end_inset
24306
24307
24308 \end_layout
24309
24310 \end_inset
24311
24312 {
24313 \backslash
24314 arrayrulecolor{red}
24315 \backslash
24316 myCdashline{#1}
24317 \backslash
24318 arrayrulecolor{black}}
24319 \end_layout
24320
24321 \begin_layout Standard
24322
24323 \lang english
24324 To get back the black line color, one needs to insert the following commands
24325  as TeX-Code behind the table:
24326 \end_layout
24327
24328 \begin_layout Standard
24329
24330 \lang english
24331 For 
24332 \series bold
24333
24334 \backslash
24335 hdashline
24336 \end_layout
24337
24338 \begin_layout Standard
24339
24340 \series bold
24341
24342 \backslash
24343 renewcommand{
24344 \backslash
24345 hdashline}{
24346 \backslash
24347 myHdashline}
24348 \end_layout
24349
24350 \begin_layout Standard
24351
24352 \lang english
24353 and for 
24354 \series bold
24355
24356 \backslash
24357 cdashline
24358 \end_layout
24359
24360 \begin_layout Standard
24361
24362 \series bold
24363
24364 \backslash
24365 renewcommand{
24366 \backslash
24367 cdashline}{
24368 \backslash
24369 myCdashline}
24370 \end_layout
24371
24372 \begin_layout Standard
24373
24374 \lang english
24375 To color the gaps between the dashes the command
24376 \end_layout
24377
24378 \begin_layout Standard
24379
24380 \series bold
24381 \lang english
24382
24383 \backslash
24384 dashgapcolor{color}
24385 \end_layout
24386
24387 \begin_layout Standard
24388
24389 \lang english
24390 can be used in front of a table as TeX-Code.
24391  color is hereby the name of a defined color.
24392  The command
24393 \end_layout
24394
24395 \begin_layout Standard
24396
24397 \series bold
24398
24399 \backslash
24400 nodashgapcolor
24401 \end_layout
24402
24403 \begin_layout Standard
24404
24405 \lang english
24406 unsets the changes made by 
24407 \series bold
24408
24409 \backslash
24410 dashgapcolor
24411 \series default
24412 .
24413 \end_layout
24414
24415 \begin_layout Standard
24416
24417 \lang english
24418 \begin_inset Note Greyedout
24419 status open
24420
24421 \begin_layout Plain Layout
24422
24423 \series bold
24424 \color none
24425 \lang english
24426 Note
24427 \series default
24428 : If there are multiple commands in a cell, the command of 
24429 \series bold
24430 arydshln
24431 \series default
24432  needs to be the first one in the cell.
24433  Therefore in cell 
24434 \emph on
24435 k
24436 \emph default
24437  of Table
24438 \begin_inset space ~
24439 \end_inset
24440
24441
24442 \begin_inset CommandInset ref
24443 LatexCommand ref
24444 reference "tab:Colored-table-with"
24445
24446 \end_inset
24447
24448  the command 
24449 \series bold
24450
24451 \backslash
24452 hdashline
24453 \series default
24454  is before 
24455 \series bold
24456
24457 \backslash
24458 rowcolor
24459 \series default
24460 .
24461 \end_layout
24462
24463 \end_inset
24464
24465
24466 \end_layout
24467
24468 \begin_layout Standard
24469
24470 \lang english
24471 \begin_inset Note Greyedout
24472 status open
24473
24474 \begin_layout Plain Layout
24475
24476 \series bold
24477 \color none
24478 \lang english
24479 Note:
24480 \series default
24481  The LaTeX-package 
24482 \series bold
24483 arydshln
24484 \series default
24485  must be loaded in the document preamble before the LaTeX-package
24486 \lang french
24487  
24488 \series bold
24489 colortbl
24490 \series default
24491 \color inherit
24492
24493 \begin_inset Index idx
24494 status collapsed
24495
24496 \begin_layout Plain Layout
24497 Paquetages LaTeX ! colortbl
24498 \end_layout
24499
24500 \end_inset
24501
24502
24503 \color none
24504 .
24505 \end_layout
24506
24507 \end_inset
24508
24509
24510 \end_layout
24511
24512 \begin_layout Standard
24513 \begin_inset ERT
24514 status collapsed
24515
24516 \begin_layout Plain Layout
24517
24518
24519 \backslash
24520 else
24521 \end_layout
24522
24523 \end_inset
24524
24525
24526 \begin_inset Note Note
24527 status open
24528
24529 \begin_layout Plain Layout
24530 Ce qui suit sera affiché si le paquetage LaTeX 
24531 \series bold
24532 arydshln
24533 \series default
24534  n'est pas installé :
24535 \end_layout
24536
24537 \end_inset
24538
24539
24540 \end_layout
24541
24542 \begin_layout Standard
24543 Vous devez installer le paquetage LaTeX 
24544 \series bold
24545 arydshln
24546 \series default
24547  pour voir le contenu des cette section dans la sortie imprimée.
24548 \end_layout
24549
24550 \begin_layout Standard
24551 \begin_inset ERT
24552 status collapsed
24553
24554 \begin_layout Plain Layout
24555
24556
24557 \backslash
24558 fi
24559 \end_layout
24560
24561 \end_inset
24562
24563
24564 \end_layout
24565
24566 \begin_layout Standard
24567
24568 \lang english
24569 For more information about dashed lines see the documentation of
24570 \lang french
24571  
24572 \series bold
24573 arydshln
24574 \series default
24575
24576 \begin_inset CommandInset citation
24577 LatexCommand cite
24578 key "arydshln"
24579
24580 \end_inset
24581
24582 .
24583 \end_layout
24584
24585 \begin_layout Chapter
24586 Flottants
24587 \begin_inset CommandInset label
24588 LatexCommand label
24589 name "chap:Flottants"
24590
24591 \end_inset
24592
24593
24594 \begin_inset Index idx
24595 status collapsed
24596
24597 \begin_layout Plain Layout
24598 Flottants
24599 \end_layout
24600
24601 \end_inset
24602
24603
24604 \end_layout
24605
24606 \begin_layout Section
24607 Introduction
24608 \begin_inset CommandInset label
24609 LatexCommand label
24610 name "sec:Flottants-Introduction"
24611
24612 \end_inset
24613
24614
24615 \begin_inset Index idx
24616 status collapsed
24617
24618 \begin_layout Plain Layout
24619 Flottants ! Introduction
24620 \end_layout
24621
24622 \end_inset
24623
24624
24625 \end_layout
24626
24627 \begin_layout Standard
24628 Un flottant est une portion de document, qui peut être associé à une étiquette
24629  et dont la position n'est pas fixée.
24630  Il peut 
24631 \begin_inset Quotes eld
24632 \end_inset
24633
24634 flotter
24635 \begin_inset Quotes erd
24636 \end_inset
24637
24638  d'une page ou deux en avant ou en arrière, pour trouver l'emplacement le
24639  plus approprié.
24640  Les 
24641 \family sans
24642 Notes
24643 \begin_inset space ~
24644 \end_inset
24645
24646 en
24647 \begin_inset space ~
24648 \end_inset
24649
24650 Bas
24651 \begin_inset space ~
24652 \end_inset
24653
24654 de
24655 \begin_inset space ~
24656 \end_inset
24657
24658 Page
24659 \family default
24660  et le 
24661 \family sans
24662 Notes
24663 \begin_inset space ~
24664 \end_inset
24665
24666 en
24667 \begin_inset space ~
24668 \end_inset
24669
24670 Marge
24671 \family default
24672  sont par exemple aussi des flottants, puisqu'elles peuvent se retrouver
24673  sur la page suivante quand il y a trop de notes sur la page courante.
24674 \end_layout
24675
24676 \begin_layout Standard
24677 Grâce aux flottants, on peut obtenir automatiquement une mise en page de
24678  très grande qualité.
24679  Les images et les tableaux peuvent être répartis sur plusieurs pages pour
24680  éviter des lignes blanches ou des pages sans texte.
24681  Comme le fait d'utiliser un flottant supprime la liaison entre le texte
24682  et le tableau ou l'image, on va pouvoir faire référence au flottant dans
24683  le texte.
24684  Les flottants sont donc numérotés.
24685  Les références croisées sont décrites dans la section
24686 \begin_inset space ~
24687 \end_inset
24688
24689
24690 \begin_inset CommandInset ref
24691 LatexCommand ref
24692 reference "sec:Referencer-les-Flottants"
24693
24694 \end_inset
24695
24696 .
24697 \end_layout
24698
24699 \begin_layout Standard
24700 Pour insérer un flottant, on utilise un des sous menus du menu 
24701 \family sans
24702 Insertion\SpecialChar \menuseparator
24703 Flottant
24704 \family default
24705  (barre d'outils 
24706 \begin_inset Info
24707 type  "icon"
24708 arg   "float-insert figure"
24709 \end_inset
24710
24711  ou 
24712 \begin_inset Info
24713 type  "icon"
24714 arg   "float-insert table"
24715 \end_inset
24716
24717 ).
24718  Une boîte va être insérée dans votre document avec par exemple une étiquette
24719  du genre 
24720 \begin_inset Quotes eld
24721 \end_inset
24722
24723 Figure
24724 \begin_inset space ~
24725 \end_inset
24726
24727 #:
24728 \begin_inset Quotes erd
24729 \end_inset
24730
24731  (où # est un numéro).
24732  L'étiquette est automatiquement traduite dans la langue du document dans
24733  la sortie finale.
24734  Après l'étiquette vous pouvez insérer du texte comme légende.
24735  L'image ou le tableau est inséré avant ou après la légende dans un paragraphe
24736  séparé, à l'intérieur du flottant.
24737  Vous trouverez plus de détails sur le positionnement des légendes dans
24738  la section
24739 \begin_inset space ~
24740 \end_inset
24741
24742
24743 \begin_inset CommandInset ref
24744 LatexCommand ref
24745 reference "sec:Placement-légende"
24746
24747 \end_inset
24748
24749 .
24750  Pour améliorer la lisibilité de votre document dans LyX, vous pouvez fermer
24751  ou ouvrir la boîte de votre flottant en cliquant avec le bouton de gauche
24752  sur la boîte grise qui se trouve en haut à gauche de celui-ci.
24753  Une boîte de flottant fermée ressemble à ceci : 
24754 \begin_inset Graphics
24755         filename clipart/floatQt4.png
24756         scale 60
24757
24758 \end_inset
24759
24760  – une case grise avec un texte rouge.
24761 \end_layout
24762
24763 \begin_layout Standard
24764 Il est recommandé d'insérer les flottants comme des paragraphes séparés
24765  pour éviter des erreurs avec LaTeX, quand le texte qui entoure le flottant
24766  est formaté de façon particulière.
24767 \end_layout
24768
24769 \begin_layout Section
24770 Les types de flottants
24771 \end_layout
24772
24773 \begin_layout Standard
24774 En plus des flottants de figures et de tableau qui sont décrits respectivement
24775  dans les sections
24776 \begin_inset space ~
24777 \end_inset
24778
24779
24780 \begin_inset CommandInset ref
24781 LatexCommand ref
24782 reference "sec:Figure-Floats"
24783
24784 \end_inset
24785
24786  et 
24787 \begin_inset CommandInset ref
24788 LatexCommand ref
24789 reference "sec:Table-Floats"
24790
24791 \end_inset
24792
24793 , LyX offre aussi les types 
24794 \family sans
24795 Algorithme
24796 \family default
24797  et 
24798 \family sans
24799 Enrobage
24800 \family default
24801 .
24802  Ces derniers sont expliques dans la section
24803 \begin_inset space \thinspace{}
24804 \end_inset
24805
24806
24807 \begin_inset CommandInset ref
24808 LatexCommand ref
24809 reference "sec:Flottant-d'enrobage"
24810
24811 \end_inset
24812
24813 .
24814 \end_layout
24815
24816 \begin_layout Subsection
24817 Flottant d'algorithme
24818 \begin_inset Index idx
24819 status collapsed
24820
24821 \begin_layout Plain Layout
24822 Flottants ! Algorithmes
24823 \end_layout
24824
24825 \end_inset
24826
24827
24828 \begin_inset CommandInset label
24829 LatexCommand label
24830 name "sub:Flottant-d'Algorithme"
24831
24832 \end_inset
24833
24834
24835 \end_layout
24836
24837 \begin_layout Standard
24838 \begin_inset Float algorithm
24839 placement h
24840 wide false
24841 sideways false
24842 status open
24843
24844 \begin_layout Plain Layout
24845 \begin_inset Caption Standard
24846
24847 \begin_layout Plain Layout
24848 \begin_inset CommandInset label
24849 LatexCommand label
24850 name "alg:Exemple-Flottant-Algorithme"
24851
24852 \end_inset
24853
24854 Exemple de flottant d'algorithme
24855 \end_layout
24856
24857 \end_inset
24858
24859
24860 \end_layout
24861
24862 \begin_layout LyX-Code
24863 for I in 1..N loop
24864 \begin_inset Newline newline
24865 \end_inset
24866
24867  Sum:= Sum + A(I); /*comment*/
24868 \begin_inset Newline newline
24869 \end_inset
24870
24871 end loop
24872 \begin_inset VSpace -4mm
24873 \end_inset
24874
24875
24876 \end_layout
24877
24878 \end_inset
24879
24880
24881 \end_layout
24882
24883 \begin_layout Standard
24884 Ce type de flottant est inséré à l'aide du menu 
24885 \family sans
24886 Insertion\SpecialChar \menuseparator
24887 Flottant\SpecialChar \menuseparator
24888 Algorithme
24889 \family default
24890 .
24891  Il peut être utilisé pour des morceaux de code source ou des descriptions
24892  d'algorithmes et peut être utilisé comme une alternative au listing de
24893  code source qui est décrit au chapitre
24894 \begin_inset space ~
24895 \end_inset
24896
24897
24898 \begin_inset CommandInset ref
24899 LatexCommand ref
24900 reference "cha:Program-Code-Listings"
24901
24902 \end_inset
24903
24904 .
24905  Vous pouvez par exemple utiliser l'environnement Code
24906 \begin_inset space ~
24907 \end_inset
24908
24909 LyX qui est décrit dans le 
24910 \emph on
24911 Guide
24912 \emph default
24913
24914 \begin_inset space ~
24915 \end_inset
24916
24917
24918 \emph on
24919 de
24920 \begin_inset space ~
24921 \end_inset
24922
24923 l'Utilisateur
24924 \emph default
24925  de LyX.
24926  l'algorithme
24927 \begin_inset space ~
24928 \end_inset
24929
24930
24931 \begin_inset CommandInset ref
24932 LatexCommand ref
24933 reference "alg:Exemple-Flottant-Algorithme"
24934
24935 \end_inset
24936
24937  est un exemple de flottant d'algorithme où un espace vertical de -4
24938 \begin_inset space \thinspace{}
24939 \end_inset
24940
24941 mm a été ajouté à la fin du flottant pour que la ligne du bas du flottant
24942  soit placée exactement sous le texte de la dernière ligne.
24943 \end_layout
24944
24945 \begin_layout Standard
24946 L'étiquette de ce flottant n'est pas automatiquement traduite dans la langue
24947  du document.
24948  Si votre document n'est pas en anglais, vous devez le faire vous-même manuellem
24949 ent en ajoutant la ligne suivante dans le préambule de votre document :
24950 \end_layout
24951
24952 \begin_layout Standard
24953
24954 \series bold
24955
24956 \backslash
24957 floatname{algorithm}{votre
24958 \begin_inset space ~
24959 \end_inset
24960
24961 nom}
24962 \end_layout
24963
24964 \begin_layout Standard
24965
24966 \family sans
24967  votre
24968 \begin_inset space ~
24969 \end_inset
24970
24971 nom
24972 \family default
24973  est le mot 
24974 \begin_inset Quotes eld
24975 \end_inset
24976
24977
24978 \emph on
24979 algorithme
24980 \emph default
24981
24982 \begin_inset Quotes erd
24983 \end_inset
24984
24985  dans votre langue.
24986 \end_layout
24987
24988 \begin_layout Standard
24989 Pour insérer la liste des algorithmes, vous pouvez utiliser le menu 
24990 \family sans
24991 Insertion\SpecialChar \menuseparator
24992 Listes
24993 \begin_inset space ~
24994 \end_inset
24995
24996 &
24997 \begin_inset space ~
24998 \end_inset
24999
25000 TdM\SpecialChar \menuseparator
25001 Liste
25002 \begin_inset space ~
25003 \end_inset
25004
25005 des
25006 \begin_inset space ~
25007 \end_inset
25008
25009 algorithmes
25010 \family default
25011  si votre document est en la même langue que les menus de LyX.
25012  Pour les documents qui ne sont pas en anglais, utilisez la commande suivante
25013  en code TeX à la place:
25014 \end_layout
25015
25016 \begin_layout Standard
25017
25018 \series bold
25019
25020 \backslash
25021 listof{algorithm}{votre
25022 \begin_inset space ~
25023 \end_inset
25024
25025 nom}
25026 \end_layout
25027
25028 \begin_layout Standard
25029 où 
25030 \family sans
25031 votre
25032 \begin_inset space ~
25033 \end_inset
25034
25035 nom
25036 \family default
25037  est la traduction de 
25038 \begin_inset Quotes eld
25039 \end_inset
25040
25041
25042 \emph on
25043 List of Algorithm
25044 \emph default
25045 s
25046 \begin_inset Quotes erd
25047 \end_inset
25048
25049  dans votre langue.
25050 \end_layout
25051
25052 \begin_layout Standard
25053 Les flottants d'algorithme ne sont pas numérotés implicitement en suivant
25054  le schéma 
25055 \begin_inset Quotes eld
25056 \end_inset
25057
25058 chapitre.algorithme
25059 \begin_inset Quotes erd
25060 \end_inset
25061
25062  comme c'est le cas pour les tableaux dans plusieurs classes de documents.
25063  Pour numéroter les flottants d'algorithme dans ce schéma, ajoutez cette
25064  commande dans le préambule de votre document :
25065 \end_layout
25066
25067 \begin_layout Standard
25068
25069 \series bold
25070
25071 \backslash
25072 numberwithin{algorithm}{chapter}
25073 \end_layout
25074
25075 \begin_layout Standard
25076 Pour pouvoir utiliser la commande 
25077 \series bold
25078
25079 \backslash
25080 numberwithin
25081 \series default
25082 , activez l'option 
25083 \family sans
25084 Utiliser
25085 \begin_inset space ~
25086 \end_inset
25087
25088 le
25089 \begin_inset space ~
25090 \end_inset
25091
25092 paquetage
25093 \begin_inset space ~
25094 \end_inset
25095
25096 AMS
25097 \begin_inset space ~
25098 \end_inset
25099
25100 math
25101 \family default
25102  dans la rubrique 
25103 \family sans
25104 Options
25105 \begin_inset space ~
25106 \end_inset
25107
25108 des
25109 \begin_inset space ~
25110 \end_inset
25111
25112 Maths
25113 \family default
25114  de la fenêtre de dialogue 
25115 \family sans
25116 Paramètres
25117 \begin_inset space ~
25118 \end_inset
25119
25120 du
25121 \begin_inset space ~
25122 \end_inset
25123
25124 Document
25125 \family default
25126 .
25127 \end_layout
25128
25129 \begin_layout Section
25130 Numérotation des flottants
25131 \begin_inset Index idx
25132 status collapsed
25133
25134 \begin_layout Plain Layout
25135 Flottants ! Numérotation
25136 \end_layout
25137
25138 \end_inset
25139
25140
25141 \end_layout
25142
25143 \begin_layout Standard
25144 Les flottant sont soit numérotés indépendamment des sections dans lesquelles
25145  ils se trouvent, soit en utilisant un format du genre 
25146 \begin_inset Quotes eld
25147 \end_inset
25148
25149 chapitre.numéro
25150 \begin_inset Quotes erd
25151 \end_inset
25152
25153  ou 
25154 \begin_inset Quotes eld
25155 \end_inset
25156
25157 section.numéro
25158 \begin_inset Quotes erd
25159 \end_inset
25160
25161 .
25162  Cela dépend de la classe de document utilisée.
25163 \end_layout
25164
25165 \begin_layout Standard
25166 Pour changer le format de la numérotation qui ne dépend pas de la section
25167  dans laquelle on se trouve, on peut utiliser la commande suivante dans
25168  le préambule du document :
25169 \end_layout
25170
25171 \begin_layout Standard
25172
25173 \series bold
25174
25175 \backslash
25176 renewcommand{
25177 \backslash
25178 thetable}{
25179 \backslash
25180 roman{table}}
25181 \end_layout
25182
25183 \begin_layout Standard
25184
25185 \series bold
25186
25187 \backslash
25188 thetable
25189 \series default
25190  est la commande qui imprime le numéro du tableau, pour les figures, la
25191  commande serait 
25192 \series bold
25193
25194 \backslash
25195 thefigure
25196 \series default
25197 .
25198  La commande 
25199 \series bold
25200
25201 \backslash
25202 roman
25203 \series default
25204  utilisée dans la commande précédente, imprime le numéro du tableau sous
25205  forme de petits chiffres romains.
25206 \end_layout
25207
25208 \begin_layout Standard
25209 Pour changer le type de numérotation pour par exemple 
25210 \begin_inset Quotes eld
25211 \end_inset
25212
25213 sous-section.numéro
25214 \begin_inset Quotes erd
25215 \end_inset
25216
25217 , utilisez la commande suivante dans le préambule du document :
25218 \end_layout
25219
25220 \begin_layout Standard
25221
25222 \series bold
25223
25224 \backslash
25225 numberwithin{table}{subsection}
25226 \end_layout
25227
25228 \begin_layout Standard
25229 Pour pouvoir utiliser la commande 
25230 \series bold
25231
25232 \backslash
25233 numberwithin
25234 \series default
25235 , vous devez activer l'option 
25236 \family sans
25237 Utiliser
25238 \begin_inset space ~
25239 \end_inset
25240
25241 le
25242 \begin_inset space ~
25243 \end_inset
25244
25245 paquetage
25246 \begin_inset space ~
25247 \end_inset
25248
25249 maths
25250 \begin_inset space ~
25251 \end_inset
25252
25253 AMS
25254 \family default
25255  dans la rubrique 
25256 \family sans
25257 Options
25258 \begin_inset space ~
25259 \end_inset
25260
25261 des
25262 \begin_inset space ~
25263 \end_inset
25264
25265 Maths
25266 \family default
25267  de la fenêtre de dialogue 
25268 \family sans
25269 Paramètres
25270 \family default
25271  du document.
25272 \end_layout
25273
25274 \begin_layout Standard
25275 Veuillez aussi jeter un coup d'œil à la section
25276 \begin_inset space ~
25277 \end_inset
25278
25279
25280 \begin_inset CommandInset ref
25281 LatexCommand ref
25282 reference "sub:Numerotation-notes-bas-de-page"
25283
25284 \end_inset
25285
25286  pour plus de détails et des notes importantes sur les commandes de numérotation.
25287 \end_layout
25288
25289 \begin_layout Section
25290 Faire référence à des flottants
25291 \begin_inset CommandInset label
25292 LatexCommand label
25293 name "sec:Referencer-les-Flottants"
25294
25295 \end_inset
25296
25297
25298 \begin_inset Index idx
25299 status collapsed
25300
25301 \begin_layout Plain Layout
25302 Flottants ! Références
25303 \end_layout
25304
25305 \end_inset
25306
25307
25308 \begin_inset Index idx
25309 status collapsed
25310
25311 \begin_layout Plain Layout
25312 References@Références ! à des Flottants 
25313 \end_layout
25314
25315 \end_inset
25316
25317
25318 \end_layout
25319
25320 \begin_layout Standard
25321 Pour faire référence à un flottant, insérez une étiquette dans sa légende
25322  en utilisant le menu 
25323 \family sans
25324 Insertion\SpecialChar \menuseparator
25325 Étiquette
25326 \family default
25327  ou le bouton 
25328 \begin_inset Info
25329 type  "icon"
25330 arg   "label-insert"
25331 \end_inset
25332
25333  de la barre d'outils.
25334  Une boîte grise de ce genre : 
25335 \begin_inset Graphics
25336         filename clipart/labelQt4.png
25337         lyxscale 85
25338         scale 85
25339         scaleBeforeRotation
25340
25341 \end_inset
25342
25343  sera insérée et la fenêtre de l'étiquette s'ouvrira pour vous permettre
25344  de saisir le texte de l'étiquette.
25345  LyX propose comme texte pour l'étiquette les premiers mots de la légendes
25346  précédés d'un préfixe.
25347  Ce préfixe dépend du type de flottant, par exemple, pour une figure le
25348  préfixe sera "
25349 \family sans
25350 fig:
25351 \family default
25352 ".
25353 \end_layout
25354
25355 \begin_layout Standard
25356 L'étiquette sert à la fois de point d'ancrage et de nom pour la référence.
25357  Vous pouvez faire référence à cette étiquette en utilisant le menu 
25358 \family sans
25359 Insertion\SpecialChar \menuseparator
25360 Référence
25361 \begin_inset space ~
25362 \end_inset
25363
25364 Croisée
25365 \family default
25366  ou le bouton 
25367 \begin_inset Info
25368 type  "icon"
25369 arg   "dialog-show-new-inset ref"
25370 \end_inset
25371
25372  de la barre d'outils.
25373  La fenêtre de référence croisée va s'ouvrir et montrer toutes les étiquettes
25374  définies dans votre document.
25375  Si vous avez plusieurs documents LyX ouverts, vous pouvez choisir celui
25376  que vous voulez utiliser avec la liste déroulante qui se trouve en haut
25377  de la fenêtre de dialogue.
25378  Vous pouvez trier les étiquettes par ordre alphabétique et ensuite en choisir
25379  une.
25380  Une boîte grise de référence croisée comme celle-ci : 
25381 \begin_inset Graphics
25382         filename ../clipart/referenceQt4.png
25383         scale 85
25384         scaleBeforeRotation
25385
25386 \end_inset
25387
25388  va être insérée.
25389  Dans la sortie imprimée, le numéro du flottant apparaîtra à la position
25390  de la référence croisée.
25391 \end_layout
25392
25393 \begin_layout Standard
25394 Il est recommandé d'utiliser une espace insécable entre le nom d'une référence
25395  croisée et son numéro pour éviter un saut de ligne peu esthétique entre
25396  les deux.
25397  Si une référence croisées fait référence à une étiquette qui n'existe pas,
25398  vous verrez deux points d'interrogation dans la sortie imprimée à la place
25399  du numéro de la référence.
25400 \end_layout
25401
25402 \begin_layout Standard
25403 Vous pouvez modifier une étiquette à tout moment en cliquant sur sa boîte.
25404  Les références vers l'étiquette modifiée seront mise à jour automatiquement
25405  pour tenir compte du nouveau texte de l'étiquette, de sorte que vous n'avez
25406  pas à vous en préoccuper.
25407 \end_layout
25408
25409 \begin_layout Standard
25410 Le bouton 
25411 \family sans
25412 Aller
25413 \begin_inset space ~
25414 \end_inset
25415
25416 à
25417 \begin_inset space ~
25418 \end_inset
25419
25420 l'étiquette
25421 \family default
25422  dans la fenêtre de référence croisée va positionner le curseur juste devant
25423  l'étiquette à laquelle on fait référence.
25424  Le nom du bouton bouton 
25425 \family sans
25426 Revenir
25427 \family default
25428  et vous pouvez l'utiliser pour remettre le curseur sur la référence croisée.
25429 \end_layout
25430
25431 \begin_layout Subsection
25432 Formats de références croisées
25433 \begin_inset CommandInset label
25434 LatexCommand label
25435 name "sub:Formats-Références-Croisées"
25436
25437 \end_inset
25438
25439
25440 \begin_inset Index idx
25441 status collapsed
25442
25443 \begin_layout Plain Layout
25444 References@Références ! Formats
25445 \end_layout
25446
25447 \end_inset
25448
25449
25450 \end_layout
25451
25452 \begin_layout Standard
25453 Il y a six types de références croisées :
25454 \end_layout
25455
25456 \begin_layout Description
25457 <référence>
25458 \begin_inset space ~
25459 \end_inset
25460
25461 : affiche le numéro de l'élément, c'est le choix implicite : 
25462 \begin_inset CommandInset ref
25463 LatexCommand ref
25464 reference "fig:Deux-images-déformées"
25465
25466 \end_inset
25467
25468
25469 \end_layout
25470
25471 \begin_layout Description
25472 (<référence>)
25473 \begin_inset space ~
25474 \end_inset
25475
25476 : affiche le numéro de l'élément entre parenthèses, c'est le style utilisé
25477  normalement pour faire référence à des formules mathématiques, en particulier
25478  quand le mot 
25479 \begin_inset Quotes eld
25480 \end_inset
25481
25482 Équation
25483 \begin_inset Quotes erd
25484 \end_inset
25485
25486  est omis : 
25487 \begin_inset CommandInset ref
25488 LatexCommand eqref
25489 reference "eq:Wgn"
25490
25491 \end_inset
25492
25493
25494 \end_layout
25495
25496 \begin_layout Description
25497 <page>
25498 \begin_inset space ~
25499 \end_inset
25500
25501 : affiche le numéro de la page sur laquelle se trouve l'élément: Page
25502 \begin_inset space ~
25503 \end_inset
25504
25505
25506 \begin_inset CommandInset ref
25507 LatexCommand pageref
25508 reference "fig:Deux-images-déformées"
25509
25510 \end_inset
25511
25512
25513 \end_layout
25514
25515 \begin_layout Description
25516 Sur
25517 \begin_inset space ~
25518 \end_inset
25519
25520 la
25521 \begin_inset space ~
25522 \end_inset
25523
25524 page
25525 \begin_inset space ~
25526 \end_inset
25527
25528 <page>
25529 \begin_inset space ~
25530 \end_inset
25531
25532 : affiche le mot 
25533 \begin_inset Quotes eld
25534 \end_inset
25535
25536 page
25537 \begin_inset Quotes erd
25538 \end_inset
25539
25540  suivi du numéro de la page sur laquelle se trouve l'élément : 
25541 \begin_inset CommandInset ref
25542 LatexCommand vpageref
25543 reference "fig:Deux-images-déformées"
25544
25545 \end_inset
25546
25547
25548 \end_layout
25549
25550 \begin_layout Description
25551 <référence>
25552 \begin_inset space ~
25553 \end_inset
25554
25555 page
25556 \begin_inset space ~
25557 \end_inset
25558
25559 <page>
25560 \begin_inset space ~
25561 \end_inset
25562
25563 : affiche le numéro de l'élément, le mot 
25564 \begin_inset Quotes eld
25565 \end_inset
25566
25567 page
25568 \begin_inset Quotes erd
25569 \end_inset
25570
25571  et le numéro de la page : 
25572 \begin_inset CommandInset ref
25573 LatexCommand vref
25574 reference "fig:Deux-images-déformées"
25575
25576 \end_inset
25577
25578
25579 \end_layout
25580
25581 \begin_layout Description
25582 Référence
25583 \begin_inset space ~
25584 \end_inset
25585
25586 mise
25587 \begin_inset space ~
25588 \end_inset
25589
25590 en
25591 \begin_inset space ~
25592 \end_inset
25593
25594 forme
25595 \begin_inset space ~
25596 \end_inset
25597
25598 : affiche une référence croisée qui définit son propre format.
25599 \begin_inset Newline newline
25600 \end_inset
25601
25602
25603 \begin_inset Note Greyedout
25604 status open
25605
25606 \begin_layout Plain Layout
25607
25608 \series bold
25609 Note:
25610 \series default
25611  Ce type de référence croisée n'est disponible que si vous avez installé
25612  le paquetage LaTeX 
25613 \series bold
25614 prettyref
25615 \series default
25616  ou 
25617 \series bold
25618 refstyle
25619 \series default
25620
25621 \begin_inset Index idx
25622 status collapsed
25623
25624 \begin_layout Plain Layout
25625 Paquetages LaTeX ! prettyref
25626 \end_layout
25627
25628 \end_inset
25629
25630
25631 \begin_inset Index idx
25632 status collapsed
25633
25634 \begin_layout Plain Layout
25635 Paquetages LaTeX ! refstyle
25636 \end_layout
25637
25638 \end_inset
25639
25640 .
25641 \end_layout
25642
25643 \end_inset
25644
25645
25646 \begin_inset Newline newline
25647 \end_inset
25648
25649 Vous pouvez choisir le paquetage LaTeX qui doit être utilisé pour cette
25650  fonction en utilisant l'option 
25651 \family sans
25652 Utiliser refstyle (à la place de prettyref) pour les références croisées
25653 \family default
25654  dans le menu 
25655 \family sans
25656 Document\SpecialChar \menuseparator
25657 Paramètres\SpecialChar \menuseparator
25658 Classe de document
25659 \family default
25660 .
25661  Le format est précisé en ajoutant la commande 
25662 \series bold
25663
25664 \backslash
25665 newrefformat
25666 \series default
25667  (prettyref) ou 
25668 \series bold
25669
25670 \backslash
25671 newref
25672 \series default
25673  (refstyle) au préambule du document.
25674  Par exemple, pour redéfinir toutes les référence à des figures (qui ont
25675  l'étiquette abrégée 'fig') on peut utiliser la commande suivante
25676 \begin_inset space ~
25677 \end_inset
25678
25679 :
25680 \begin_inset Newline newline
25681 \end_inset
25682
25683
25684 \series bold
25685
25686 \backslash
25687 newref{fig}{refcmd={Image sur la page 
25688 \backslash
25689 pageref{#1}}}
25690 \series default
25691
25692 \begin_inset Newline newline
25693 \end_inset
25694
25695 Pour plus d'information sur le format, jetez un œil sur la documentation
25696  du paquetage, 
25697 \begin_inset CommandInset citation
25698 LatexCommand cite
25699 key "prettyref,refstyle"
25700
25701 \end_inset
25702
25703 .
25704 \end_layout
25705
25706 \begin_layout Description
25707 Référence
25708 \begin_inset space ~
25709 \end_inset
25710
25711 textuelle: affiche la légende de la référence
25712 \begin_inset space ~
25713 \end_inset
25714
25715
25716 \begin_inset CommandInset ref
25717 LatexCommand nameref
25718 reference "fig:Deux-images-déformées"
25719
25720 \end_inset
25721
25722
25723 \end_layout
25724
25725 \begin_layout Standard
25726
25727 \family sans
25728 <page>
25729 \family default
25730  n'imprimera pas le numéro de la page si l'étiquette se trouve sur la page
25731  précédente, la même page ou la page suivante.
25732  Vous verrez par exemple un texte du genre 
25733 \begin_inset Quotes eld
25734 \end_inset
25735
25736
25737 \family sans
25738 sur cette page
25739 \family default
25740
25741 \begin_inset Quotes erd
25742 \end_inset
25743
25744  à la place.
25745  Le style 
25746 \family sans
25747 <référence>
25748 \begin_inset space ~
25749 \end_inset
25750
25751 page
25752 \begin_inset space ~
25753 \end_inset
25754
25755 <page> 
25756 \family default
25757 n'affichera rien au sujet de la page si l'étiquette se trouve sur la même
25758  page.
25759 \end_layout
25760
25761 \begin_layout Standard
25762 Le numéro affecté à une étiquette et le numéro de la page sur laquelle elle
25763  se trouve sont calculés automatiquement par LaTeX.
25764  Vous choisissez une des six variétés de références dans le champ Format
25765  de la fenêtre de référence croisée qui s'ouvre quand vous cliquez sur la
25766  boîte de la référence croisée.
25767 \end_layout
25768
25769 \begin_layout Standard
25770 \begin_inset Note Greyedout
25771 status open
25772
25773 \begin_layout Plain Layout
25774
25775 \series bold
25776 Note:
25777 \series default
25778  L'utilisation du paquetage LaTeX 
25779 \series bold
25780 refstyle
25781 \series default
25782
25783 \begin_inset Index idx
25784 status collapsed
25785
25786 \begin_layout Plain Layout
25787 Paquetages LaTeX ! refstyle
25788 \end_layout
25789
25790 \end_inset
25791
25792  est recommandée parce que 
25793 \series bold
25794 prettyref
25795 \series default
25796
25797 \begin_inset Index idx
25798 status collapsed
25799
25800 \begin_layout Plain Layout
25801 Paquetages LaTeX ! prettyref
25802 \end_layout
25803
25804 \end_inset
25805
25806  ne connaît pas tous les raccourcis possibles pour les étiquettes
25807 \begin_inset Foot
25808 status collapsed
25809
25810 \begin_layout Plain Layout
25811 \begin_inset Quotes eld
25812 \end_inset
25813
25814 fig:
25815 \begin_inset Quotes erd
25816 \end_inset
25817
25818  est par exemple le raccourci LyX pour les étiquettes dans les légendes
25819  de figures,.
25820 \end_layout
25821
25822 \end_inset
25823
25824  et n'est pas internationalisé.
25825 \end_layout
25826
25827 \end_inset
25828
25829
25830 \end_layout
25831
25832 \begin_layout Standard
25833 \begin_inset Note Greyedout
25834 status open
25835
25836 \begin_layout Plain Layout
25837
25838 \series bold
25839 Note:
25840 \series default
25841  Du fait d'un bogue dans la paquetage LaTeX 
25842 \series bold
25843 varioref
25844 \series default
25845  (version 1.4w), certaines références croisées produiront des erreurs LaTeX
25846  si la langue du document est le français.
25847  Pour contourner ce bogue, voir
25848 \begin_inset Newline newline
25849 \end_inset
25850
25851
25852 \begin_inset CommandInset href
25853 LatexCommand href
25854 target "http://wiki.lyx.org/LaTeX/LatexBugs#toc5"
25855
25856 \end_inset
25857
25858 .
25859 \end_layout
25860
25861 \end_inset
25862
25863
25864 \end_layout
25865
25866 \begin_layout Subsection
25867 Nommage automatique des références croisées
25868 \begin_inset Index idx
25869 status collapsed
25870
25871 \begin_layout Plain Layout
25872 References@Références ! Nommage automatique
25873 \end_layout
25874
25875 \end_inset
25876
25877
25878 \end_layout
25879
25880 \begin_layout Standard
25881 Le paquetage LaTeX 
25882 \series bold
25883 hyperref
25884 \series default
25885
25886 \begin_inset Index idx
25887 status collapsed
25888
25889 \begin_layout Plain Layout
25890 Paquetages LaTeX ! hyperref
25891 \end_layout
25892
25893 \end_inset
25894
25895
25896 \series bold
25897
25898 \series default
25899 qui est activé dans la rubrique 
25900 \family sans
25901 Propriétés du PDF
25902 \family default
25903  de la fenêtre de dialogue 
25904 \family sans
25905 Paramètres du document
25906 \family default
25907  fournit une fonction très utile pour automatiser la création des références
25908  croisées, en incluant le nom du flottant référencé (ou d'une partie comme
25909  une section).
25910  Par exemple pour vous éviter de devoir écrire le mot 
25911 \begin_inset Quotes eld
25912 \end_inset
25913
25914 Figure
25915 \begin_inset Quotes erd
25916 \end_inset
25917
25918  devant chaque référence à une figure.
25919  Pour profiter de ce nommage automatique des références croisées, vous devez
25920  activer 
25921 \series bold
25922 hyperref
25923 \series default
25924  et insérer la ligne suivante dans le préambule du document :
25925 \end_layout
25926
25927 \begin_layout Standard
25928
25929 \series bold
25930
25931 \backslash
25932 AtBeginDocument{
25933 \backslash
25934 renewcommand{
25935 \backslash
25936 ref}[1]{
25937 \backslash
25938 mbox{
25939 \backslash
25940 autoref{#1}}}}
25941 \end_layout
25942
25943 \begin_layout Standard
25944 Si vous préférez d'autres noms de référence que ceux qui sont proposés par
25945  défaut, par exemple vous préférez le nom 
25946 \begin_inset Quotes eld
25947 \end_inset
25948
25949 sec.
25950 \begin_inset space \thinspace{}
25951 \end_inset
25952
25953
25954 \begin_inset Quotes eld
25955 \end_inset
25956
25957  plutôt que 
25958 \begin_inset Quotes eld
25959 \end_inset
25960
25961 section
25962 \begin_inset Quotes erd
25963 \end_inset
25964
25965 , vous pouvez redéfinir ce nom en insérant ceci dans le préambule:
25966 \end_layout
25967
25968 \begin_layout Standard
25969
25970 \series bold
25971
25972 \backslash
25973 addto
25974 \backslash
25975 extrasfrench{
25976 \backslash
25977 renewcommand{
25978 \backslash
25979 sectionautorefname}
25980 \begin_inset Newline newline
25981 \end_inset
25982
25983
25984 \begin_inset Phantom HPhantom
25985 status open
25986
25987 \begin_layout Plain Layout
25988
25989 \series bold
25990 \begin_inset space ~
25991 \end_inset
25992
25993
25994 \end_layout
25995
25996 \end_inset
25997
25998 {sec.
25999 \backslash
26000 negthinspace}}
26001 \end_layout
26002
26003 \begin_layout Standard
26004 Si vous utilisez une autre langue que le français, remplacez 
26005 \series bold
26006
26007 \backslash
26008 extrasfrench
26009 \series default
26010  par 
26011 \series bold
26012
26013 \backslash
26014 extras***
26015 \series default
26016 , où *** est le nom de la langue que vous utilisez.
26017
26018 \series bold
26019  
26020 \end_layout
26021
26022 \begin_layout Standard
26023 Pour avoir des noms automatiques, mais pas pour certains types de références,
26024  par exemple pas pour les équations, utilisez le code suivant dans le préambule:
26025 \end_layout
26026
26027 \begin_layout Standard
26028
26029 \series bold
26030
26031 \backslash
26032 addto
26033 \backslash
26034 extrasfrench{
26035 \backslash
26036 renewcommand*{
26037 \backslash
26038 equationautorefname}[1]{}}
26039 \end_layout
26040
26041 \begin_layout Standard
26042 Vous pouvez trouver plus d'information sur ce sujet dans la documentation
26043  de 
26044 \series bold
26045 hyperref
26046 \series default
26047  
26048 \begin_inset CommandInset citation
26049 LatexCommand cite
26050 key "hyperref"
26051
26052 \end_inset
26053
26054 .
26055 \end_layout
26056
26057 \begin_layout Standard
26058 \begin_inset Note Greyedout
26059 status open
26060
26061 \begin_layout Plain Layout
26062
26063 \series bold
26064 Note:
26065 \series default
26066  Le nommage automatique de références ne peut être utilisé si vous avez
26067  choisi le style de référence 
26068 \family sans
26069 Référence
26070 \begin_inset space ~
26071 \end_inset
26072
26073 mise
26074 \begin_inset space ~
26075 \end_inset
26076
26077 en
26078 \begin_inset space ~
26079 \end_inset
26080
26081 forme
26082 \family default
26083  décrit dans la section
26084 \begin_inset space ~
26085 \end_inset
26086
26087
26088 \begin_inset CommandInset ref
26089 LatexCommand ref
26090 reference "sub:Formats-Références-Croisées"
26091
26092 \end_inset
26093
26094 .
26095 \end_layout
26096
26097 \end_inset
26098
26099
26100 \end_layout
26101
26102 \begin_layout Standard
26103 Le manuel 
26104 \emph on
26105 Math
26106 \emph default
26107  est un exemple dans lequel on a utilisé le référencement automatique.
26108 \end_layout
26109
26110 \begin_layout Subsection
26111 Positionnement des références 
26112 \begin_inset CommandInset label
26113 LatexCommand label
26114 name "sub:Reference-Position"
26115
26116 \end_inset
26117
26118
26119 \begin_inset Index idx
26120 status collapsed
26121
26122 \begin_layout Plain Layout
26123 References@Références ! Positionnement
26124 \end_layout
26125
26126 \end_inset
26127
26128
26129 \end_layout
26130
26131 \begin_layout Standard
26132 Si vous utilisez le paquetage 
26133 \series bold
26134 hyperref, 
26135 \series default
26136 qui est activé dans la rubrique 
26137 \family sans
26138 Propriétés du PDF
26139 \family default
26140  de la fenêtre de dialogue 
26141 \family sans
26142 Paramètres du document,
26143 \family default
26144  pour lier vos références croisées dans la sortie finale, vous verrez que
26145  cliquer sur la référence à un flottant d'image saute vers l'étiquette de
26146  l'image.
26147  La légende sera dans la partie haute de l'écran, ce qui fait que vous ne
26148  pourrez voir l'image sans faire défiler le texte.
26149  Ce problème vient du fait que le point d'ancrage de la référence se situe
26150  à l'endroit de l'étiquette.
26151  En utilisant le paquetage LaTeX 
26152 \series bold
26153 hypcap
26154 \series default
26155
26156 \begin_inset Index idx
26157 status collapsed
26158
26159 \begin_layout Plain Layout
26160 Paquetages LaTeX ! hypcap
26161 \end_layout
26162
26163 \end_inset
26164
26165 , qui fait partie du paquetage LaTeX 
26166 \series bold
26167 oberdiek
26168 \series default
26169
26170 \begin_inset Index idx
26171 status collapsed
26172
26173 \begin_layout Plain Layout
26174 Paquetages LaTeX ! oberdiek
26175 \end_layout
26176
26177 \end_inset
26178
26179 , le point d'ancrage d'un lien est place en haut du flottant.
26180  Pour utiliser cette fonction avec les flottants de figure, chargez 
26181 \series bold
26182 hypcap
26183 \series default
26184  dans l'entête du document avec la ligne
26185 \end_layout
26186
26187 \begin_layout Standard
26188
26189 \series bold
26190
26191 \backslash
26192 usepackage[figure]{hypcap}
26193 \end_layout
26194
26195 \begin_layout Standard
26196 Vous pouvez aussi utiliser 
26197 \series bold
26198 hypcap
26199 \series default
26200  pour tous les types de flottants, mais ce n'est pas recommandé pour des
26201  raisons de stabilité.
26202  Pour plus d'information, jetez un coup d'œil au manuel d' 
26203 \series bold
26204 hypcap
26205 \series default
26206  
26207 \begin_inset CommandInset citation
26208 LatexCommand cite
26209 key "hypcap"
26210
26211 \end_inset
26212
26213 .
26214 \end_layout
26215
26216 \begin_layout Standard
26217 \begin_inset Note Greyedout
26218 status open
26219
26220 \begin_layout Plain Layout
26221
26222 \series bold
26223 Note:
26224 \series default
26225  
26226 \series bold
26227 hypcap
26228 \series default
26229  n'a aucun effet pour les références à des sous-figures.
26230 \end_layout
26231
26232 \end_inset
26233
26234
26235 \end_layout
26236
26237 \begin_layout Section
26238 Placement des flottants
26239 \begin_inset CommandInset label
26240 LatexCommand label
26241 name "sec:Placement-flottants"
26242
26243 \end_inset
26244
26245
26246 \begin_inset Index idx
26247 status collapsed
26248
26249 \begin_layout Plain Layout
26250 Flottants ! Placement
26251 \end_layout
26252
26253 \end_inset
26254
26255
26256 \end_layout
26257
26258 \begin_layout Standard
26259 En faisant un clic droit sur la boîte d'un flottant et 
26260 \lang english
26261 clicking on 
26262 \family sans
26263 Settings
26264 \family default
26265 \lang french
26266  on ouvre une fenêtre de dialogue dans laquelle vous pouvez modifier le
26267  paramètres de placement que LaTeX utilise pour déterminer où placer le
26268  flottant.
26269 \begin_inset Newline newline
26270 \end_inset
26271
26272 L'option 
26273 \family sans
26274 Plusieurs
26275 \begin_inset space ~
26276 \end_inset
26277
26278 colonnes
26279 \family default
26280  n'est utilisée que dans le cas d'un document à plusieurs colonnes: si vous
26281  l'activez, le flottant va couvrir l'ensemble des colonnes au lieu d'être
26282  confiné sur une seule colonne.
26283 \begin_inset Newline newline
26284 \end_inset
26285
26286 L'option 
26287 \family sans
26288 Rotation
26289 \begin_inset space ~
26290 \end_inset
26291
26292 90°
26293 \family default
26294  est utilisée pour faire tourner les flottants, voyez la section
26295 \begin_inset space ~
26296 \end_inset
26297
26298
26299 \begin_inset CommandInset ref
26300 LatexCommand ref
26301 reference "sec:Flottants-renversés"
26302
26303 \end_inset
26304
26305 .
26306 \end_layout
26307
26308 \begin_layout Standard
26309 En désactivant l'option 
26310 \family sans
26311 Utilise
26312 \begin_inset space ~
26313 \end_inset
26314
26315 le
26316 \begin_inset space ~
26317 \end_inset
26318
26319 placement
26320 \begin_inset space ~
26321 \end_inset
26322
26323 par
26324 \begin_inset space ~
26325 \end_inset
26326
26327 défaut
26328 \family default
26329  vous pouvez utiliser une ou plusieurs des options suivantes pour modifier
26330  le placement du flottant:
26331 \end_layout
26332
26333 \begin_layout Description
26334 Ici,
26335 \begin_inset space ~
26336 \end_inset
26337
26338 si
26339 \begin_inset space ~
26340 \end_inset
26341
26342 possible: essaie de placer le flottant à la position où il a été inséré
26343  dans LyX
26344 \end_layout
26345
26346 \begin_layout Description
26347 Haut
26348 \begin_inset space ~
26349 \end_inset
26350
26351 de
26352 \begin_inset space ~
26353 \end_inset
26354
26355 la
26356 \begin_inset space ~
26357 \end_inset
26358
26359 page: essaie de placer le flottant en haut de la page courante
26360 \end_layout
26361
26362 \begin_layout Description
26363 Bas
26364 \begin_inset space ~
26365 \end_inset
26366
26367 de
26368 \begin_inset space ~
26369 \end_inset
26370
26371 la
26372 \begin_inset space ~
26373 \end_inset
26374
26375 page: essaie de placer le flottant en bas de la page courante
26376 \end_layout
26377
26378 \begin_layout Description
26379 Page
26380 \begin_inset space ~
26381 \end_inset
26382
26383 de
26384 \begin_inset space ~
26385 \end_inset
26386
26387 flottants: essaie de placer le flottant sur une page à part, éventuellement
26388  avec d'autres flottants 
26389 \end_layout
26390
26391 \begin_layout Standard
26392 LaTeX utilise
26393 \emph on
26394  toujours 
26395 \emph default
26396 les options dans l'ordre donné ci-dessus.
26397  Ce qui veut dire que si vous utilisez le placement implicite, LaTeX va
26398  d'abord essayer 
26399 \family sans
26400 Ici
26401 \begin_inset space ~
26402 \end_inset
26403
26404 si
26405 \begin_inset space ~
26406 \end_inset
26407
26408 possible
26409 \family default
26410 , ensuite 
26411 \family sans
26412 Haut
26413 \begin_inset space ~
26414 \end_inset
26415
26416 de
26417 \begin_inset space ~
26418 \end_inset
26419
26420 la
26421 \begin_inset space ~
26422 \end_inset
26423
26424 page
26425 \family default
26426 , et ainsi de suite.
26427  Si vous n'utilisez pas le placement implicite, LaTeX va essayer les options
26428  que vous avez cochées, mais dans l'ordre donné ci-dessus.
26429  Si aucune des quatre options de placement n'est possible, la procédure
26430  est répétée avec la possibilité de mettre les flottant sur la page suivante.
26431 \end_layout
26432
26433 \begin_layout Standard
26434 Implicitement, chaque option a ses propres règles d'application:
26435 \end_layout
26436
26437 \begin_layout Standard
26438
26439 \family sans
26440 Haut
26441 \begin_inset space ~
26442 \end_inset
26443
26444 de
26445 \begin_inset space ~
26446 \end_inset
26447
26448 la
26449 \begin_inset space ~
26450 \end_inset
26451
26452 page
26453 \family default
26454  : seuls les flottants occupant moins de 70% de la page peuvent être placés
26455  en haut de page (
26456 \series bold
26457
26458 \backslash
26459 topfraction
26460 \series default
26461 ).
26462 \end_layout
26463
26464 \begin_layout Standard
26465
26466 \family sans
26467 Bas
26468 \begin_inset space ~
26469 \end_inset
26470
26471 de
26472 \begin_inset space ~
26473 \end_inset
26474
26475 la
26476 \begin_inset space ~
26477 \end_inset
26478
26479 page
26480 \family default
26481  : seuls les flottants occupant moins de 30% de la page peuvent être placés
26482  en bas de page (
26483 \series bold
26484
26485 \backslash
26486 bottomfraction
26487 \series default
26488 ).
26489 \end_layout
26490
26491 \begin_layout Standard
26492
26493 \family sans
26494 Page
26495 \begin_inset space ~
26496 \end_inset
26497
26498 de
26499 \begin_inset space ~
26500 \end_inset
26501
26502 flottants
26503 \family default
26504  : plusieurs flottants peuvent être placés ensembles sur une page seulement
26505  si ils occupent plus de 50% de celle-ci (
26506 \series bold
26507
26508 \backslash
26509 floatpagefraction
26510 \series default
26511 ).
26512 \end_layout
26513
26514 \begin_layout Standard
26515 Si vous n'aimez pas ces règles, vous pouvez les ignorer en utilisant l'option
26516  supplémentaire 
26517 \family sans
26518 Ignorer
26519 \begin_inset space ~
26520 \end_inset
26521
26522 les
26523 \begin_inset space ~
26524 \end_inset
26525
26526 règles
26527 \begin_inset space ~
26528 \end_inset
26529
26530 LaTeX
26531 \family default
26532 \lang english
26533 .
26534 \begin_inset Newline newline
26535 \end_inset
26536
26537
26538 \lang french
26539 Vous pouvez aussi redéfinir les règles avec les commandes LaTeX qui sont
26540  données entre parenthèses après les descriptions des règles données ci-dessus.
26541  Par exemple, pour augmenter à 50
26542 \begin_inset space \thinspace{}
26543 \end_inset
26544
26545 % la valeur de la règle de bas de page dont la valeur implicite est souvent
26546  trop petite, ajoutez cette ligne au préambule de votre document :
26547 \end_layout
26548
26549 \begin_layout Standard
26550
26551 \series bold
26552
26553 \backslash
26554 renewcommand{
26555 \backslash
26556 bottomfraction}{0.5}
26557 \end_layout
26558
26559 \begin_layout Standard
26560 Parfois, vous avez besoin que dans tous les cas, le flottant soit placé
26561  exactement à l'endroit où vous l'avez inséré.
26562  dans ce cas utilisez l'option 
26563 \family sans
26564 Ici
26565 \begin_inset space ~
26566 \end_inset
26567
26568 à
26569 \begin_inset space ~
26570 \end_inset
26571
26572 tout
26573 \begin_inset space ~
26574 \end_inset
26575
26576 Prix
26577 \family default
26578 .
26579  Utilisez cette option le moins souvent possible et seulement quand le document
26580  est presque prêt à être imprimé.
26581  En effet, le flottant n'est plus capable de 
26582 \begin_inset Quotes eld
26583 \end_inset
26584
26585 flotter
26586 \begin_inset Quotes erd
26587 \end_inset
26588
26589 , ce qui peut perturber toutes les mises en page.
26590 \end_layout
26591
26592 \begin_layout Standard
26593 Il n'y a pas d'option de placement pour les flottants d'enrobage, puisqu'ils
26594  sont toujours entourés par le texte d'un paragraphe donné.
26595 \begin_inset VSpace bigskip
26596 \end_inset
26597
26598
26599 \end_layout
26600
26601 \begin_layout Standard
26602 On peut parfois se trouver dans la situation où un flottant est placé en
26603  haut d'une page alors que la section concernée ne commence qu'au milieu
26604  de la page, ce qui fait que le lecteur peut penser qu'il fait partie de
26605  la section précédente.
26606  On peut utiliser la commande LaTeX 
26607 \series bold
26608
26609 \backslash
26610 suppressfloats
26611 \series default
26612  pour éviter ce cas.
26613  Elle empêche le placement d'un flottant donné dans la page dans laquelle
26614  il est inséré et donc elle peut être utilisée pour éviter qu'un flottant
26615  soit placé avant que la section commence.
26616  Pour obtenir ce comportement, ajoutez ces commandes dans le préambule de
26617  votre document :
26618 \end_layout
26619
26620 \begin_layout Standard
26621
26622 \series bold
26623
26624 \backslash
26625 let
26626 \backslash
26627 mySection
26628 \backslash
26629 section
26630 \begin_inset Newline newline
26631 \end_inset
26632
26633
26634 \backslash
26635 renewcommand{
26636 \backslash
26637 section}{
26638 \backslash
26639 suppressfloats[t]
26640 \backslash
26641 mySection}
26642 \end_layout
26643
26644 \begin_layout Standard
26645 Vous pouvez définir la même chose pour tous les types d'en-têtes de section,
26646  comme les chapitres et les sous-sections.
26647  Il n'est pas recommandé d'utiliser cette définition avec des portions de
26648  texte trop petites comme les sous-sous-sections parce que LaTeX pourrait
26649  ensuite avoir du mal à trouver un positionnement correct.
26650 \end_layout
26651
26652 \begin_layout Standard
26653 \begin_inset VSpace bigskip
26654 \end_inset
26655
26656 Dans certains cas il est demandé de placer toutes les figures et tous les
26657  tableaux à la fin du document.
26658  C'est pour de telles situations que le paquetage LaTeX 
26659 \series bold
26660 endfloat
26661 \series default
26662
26663 \begin_inset Index idx
26664 status collapsed
26665
26666 \begin_layout Plain Layout
26667 Paquetages LaTeX ! endfloat
26668 \end_layout
26669
26670 \end_inset
26671
26672  a été développé.
26673  Il met en effet tous les flottants de figures et de tableaux à la fin du
26674  document dans leurs propres sections.
26675  À la position d'origine du flottant, une indication textuelle du genre
26676  
26677 \begin_inset Quotes eld
26678 \end_inset
26679
26680
26681 \family sans
26682 [Figure
26683 \begin_inset space ~
26684 \end_inset
26685
26686 3.2 
26687 \lang english
26688 about here.
26689 \lang french
26690 ]
26691 \family default
26692
26693 \begin_inset Quotes erd
26694 \end_inset
26695
26696  est insérée.
26697  Le paquetage 
26698 \series bold
26699 endfloat
26700 \series default
26701  est chargé dans le préambule avec la ligne suivante 
26702 \end_layout
26703
26704 \begin_layout Standard
26705
26706 \series bold
26707
26708 \backslash
26709 usepackage[options]{endfloat}
26710 \end_layout
26711
26712 \begin_layout Standard
26713 Il y a aussi de nombreuses options de paquetage pour modifier le format
26714  des sections de figures ou de tableau qui sont créées.
26715  Pour plus d'information, nous vous renvoyons à la documentation du paquetage
26716  
26717 \series bold
26718 endfloa
26719 \series default
26720
26721 \begin_inset CommandInset citation
26722 LatexCommand cite
26723 key "endfloat"
26724
26725 \end_inset
26726
26727 .
26728 \begin_inset Newline newline
26729 \end_inset
26730
26731
26732 \begin_inset Note Greyedout
26733 status open
26734
26735 \begin_layout Plain Layout
26736
26737 \series bold
26738 Note: endfloat
26739 \series default
26740  ne fournit pas de traduction automatique de l'indication textuelle, vous
26741  devez donc le faire manuellement, voyez la section
26742 \begin_inset space ~
26743 \end_inset
26744
26745 4 de 
26746 \begin_inset CommandInset citation
26747 LatexCommand cite
26748 key "endfloat"
26749
26750 \end_inset
26751
26752 .
26753 \end_layout
26754
26755 \end_inset
26756
26757
26758 \begin_inset Newline newline
26759 \end_inset
26760
26761
26762 \begin_inset Note Greyedout
26763 status open
26764
26765 \begin_layout Plain Layout
26766
26767 \series bold
26768 Note:
26769 \series default
26770  Il y a actuellement un bug dans le paquetage 
26771 \series bold
26772 endfloat
26773 \series default
26774  quand la légende contient un 
26775 \begin_inset Quotes eld
26776 \end_inset
26777
26778 ß
26779 \begin_inset Quotes erd
26780 \end_inset
26781
26782  allemand.
26783  Utilisez dans ce cas la commande 
26784 \begin_inset Quotes eld
26785 \end_inset
26786
26787
26788 \series bold
26789
26790 \backslash
26791 ss
26792 \series default
26793
26794 \begin_inset Quotes erd
26795 \end_inset
26796
26797  en code TeX à la place du 
26798 \begin_inset Quotes eld
26799 \end_inset
26800
26801 ß
26802 \begin_inset Quotes erd
26803 \end_inset
26804
26805 .
26806 \end_layout
26807
26808 \end_inset
26809
26810
26811 \end_layout
26812
26813 \begin_layout Standard
26814 \begin_inset VSpace bigskip
26815 \end_inset
26816
26817 Pour plus d'information sur les manières de placer les flottants, jetez
26818  un coup d'œil aux livres sur LaTeX, 
26819 \begin_inset CommandInset citation
26820 LatexCommand cite
26821 key "latexcompanion,latexguide,latexbook"
26822
26823 \end_inset
26824
26825 .
26826 \end_layout
26827
26828 \begin_layout Section
26829 Flottants renversés
26830 \begin_inset CommandInset label
26831 LatexCommand label
26832 name "sec:Flottants-renversés"
26833
26834 \end_inset
26835
26836
26837 \begin_inset Index idx
26838 status collapsed
26839
26840 \begin_layout Plain Layout
26841 Flottants ! Renversés
26842 \end_layout
26843
26844 \end_inset
26845
26846
26847 \end_layout
26848
26849 \begin_layout Standard
26850 Vous pouvez vouloir faire pivoter vos flottants, surtout dans le cas de
26851  tableaux très larges.
26852  Pour faire pivoter l'ensemble d'un flottant, y compris sa légende, faites
26853  un clic droit sur la boîte du flottant et utilisez l'option 
26854 \family sans
26855 Rotation
26856 \begin_inset space ~
26857 \end_inset
26858
26859 90°
26860 \family default
26861 .
26862 \end_layout
26863
26864 \begin_layout Standard
26865 Les flottants renversés sont systématiquement placés sur leur propre page
26866  ( ou colonne, si vous avez un document sur deux colonnes ).
26867  Vous pouvez les laisser couvrir plusieurs colonnes en utilisant l'option
26868  
26869 \family sans
26870 Plusieurs
26871 \begin_inset space ~
26872 \end_inset
26873
26874 colonnes
26875 \family default
26876  dans les paramètres du flottant.
26877  Le flottants sont pivotés de sorte que vous puissiez les lire en vous plaçant
26878  du côté de la marge externe.
26879  Pour forcer un sens de rotation donné pour toutes les pages, vous pouvez
26880  ajouter soit l'option 
26881 \series bold
26882 figuresleft
26883 \series default
26884  soit l'option 
26885 \series bold
26886 figuresright
26887 \series default
26888  aux options de la classe de document.
26889 \end_layout
26890
26891 \begin_layout Standard
26892 Faire référence à un flottant renversé se fait de la même manière que pour
26893  un flottant normal, la mise en forme de la légende est aussi identique
26894  : Le tableau
26895 \begin_inset space ~
26896 \end_inset
26897
26898
26899 \begin_inset CommandInset ref
26900 LatexCommand ref
26901 reference "tab:Tableau-pivoté"
26902
26903 \end_inset
26904
26905  est un exemple de flottant de tableau renversé.
26906 \end_layout
26907
26908 \begin_layout Standard
26909 \begin_inset Note Greyedout
26910 status open
26911
26912 \begin_layout Plain Layout
26913
26914 \series bold
26915 Note:
26916 \series default
26917  Les flottants pivotés ne sont pas affichables par tous les visualiseurs
26918  DVI.
26919 \end_layout
26920
26921 \end_inset
26922
26923
26924 \end_layout
26925
26926 \begin_layout Standard
26927 \begin_inset Float table
26928 wide false
26929 sideways true
26930 status open
26931
26932 \begin_layout Plain Layout
26933 \begin_inset Caption Standard
26934
26935 \begin_layout Plain Layout
26936 \begin_inset CommandInset label
26937 LatexCommand label
26938 name "tab:Tableau-pivoté"
26939
26940 \end_inset
26941
26942  Tableau pivoté
26943 \end_layout
26944
26945 \end_inset
26946
26947
26948 \end_layout
26949
26950 \begin_layout Plain Layout
26951 \align center
26952 \begin_inset Tabular
26953 <lyxtabular version="3" rows="1" columns="5">
26954 <features rotate="0" tabularvalignment="middle">
26955 <column alignment="center" valignment="top" width="0">
26956 <column alignment="center" valignment="top" width="0">
26957 <column alignment="center" valignment="top" width="0">
26958 <column alignment="center" valignment="top" width="0">
26959 <column alignment="center" valignment="top" width="0">
26960 <row>
26961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26962 \begin_inset Text
26963
26964 \begin_layout Plain Layout
26965 test
26966 \end_layout
26967
26968 \end_inset
26969 </cell>
26970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26971 \begin_inset Text
26972
26973 \begin_layout Plain Layout
26974 b
26975 \end_layout
26976
26977 \end_inset
26978 </cell>
26979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26980 \begin_inset Text
26981
26982 \begin_layout Plain Layout
26983 c
26984 \end_layout
26985
26986 \end_inset
26987 </cell>
26988 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26989 \begin_inset Text
26990
26991 \begin_layout Plain Layout
26992 d
26993 \end_layout
26994
26995 \end_inset
26996 </cell>
26997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26998 \begin_inset Text
26999
27000 \begin_layout Plain Layout
27001 e
27002 \end_layout
27003
27004 \end_inset
27005 </cell>
27006 </row>
27007 </lyxtabular>
27008
27009 \end_inset
27010
27011
27012 \end_layout
27013
27014 \end_inset
27015
27016
27017 \end_layout
27018
27019 \begin_layout Section
27020 Sous-flottants
27021 \begin_inset Index idx
27022 status collapsed
27023
27024 \begin_layout Plain Layout
27025 Flottants ! Sous-flottants
27026 \end_layout
27027
27028 \end_inset
27029
27030
27031 \end_layout
27032
27033 \begin_layout Standard
27034 Un exemple de sous-flottant : une figure composée de plusieurs images.
27035  On les crée en insérant un flottant dans un flottant existant.
27036  Le positionnement des sous-flottants peut être contrôlé comme pour les
27037  paragraphes comme on le voit avec les tableaux
27038 \begin_inset space ~
27039 \end_inset
27040
27041
27042 \begin_inset CommandInset ref
27043 LatexCommand ref
27044 reference "tab:Deux-sous-tableaux-cote-a-cote"
27045
27046 \end_inset
27047
27048  et 
27049 \begin_inset CommandInset ref
27050 LatexCommand ref
27051 reference "tab:Deux-sous-tableaux-l-un-sur-l-autre"
27052
27053 \end_inset
27054
27055 .
27056 \end_layout
27057
27058 \begin_layout Standard
27059 On fait référence à des sous-flottants comme on le ferait avec des flottants
27060  normaux : Les tableaux
27061 \begin_inset space ~
27062 \end_inset
27063
27064
27065 \begin_inset CommandInset ref
27066 LatexCommand ref
27067 reference "tab:Le-sous-tableau-a"
27068
27069 \end_inset
27070
27071  et 
27072 \begin_inset CommandInset ref
27073 LatexCommand ref
27074 reference "tab:Le-sous-tableau-b"
27075
27076 \end_inset
27077
27078  sont des sous-tableaux du tableau
27079 \begin_inset space ~
27080 \end_inset
27081
27082
27083 \begin_inset CommandInset ref
27084 LatexCommand ref
27085 reference "tab:Deux-sous-tableaux-cote-a-cote"
27086
27087 \end_inset
27088
27089 .
27090 \end_layout
27091
27092 \begin_layout Standard
27093 \begin_inset Float table
27094 wide false
27095 sideways false
27096 status open
27097
27098 \begin_layout Plain Layout
27099 \begin_inset Caption Standard
27100
27101 \begin_layout Plain Layout
27102 \begin_inset CommandInset label
27103 LatexCommand label
27104 name "tab:Deux-sous-tableaux-cote-a-cote"
27105
27106 \end_inset
27107
27108 Deux sous-tableaux placés côte-à-côte.
27109 \end_layout
27110
27111 \end_inset
27112
27113
27114 \end_layout
27115
27116 \begin_layout Plain Layout
27117 \align center
27118 \begin_inset space \hfill{}
27119 \end_inset
27120
27121
27122 \begin_inset Float table
27123 wide false
27124 sideways false
27125 status collapsed
27126
27127 \begin_layout Plain Layout
27128 \begin_inset Caption Standard
27129
27130 \begin_layout Plain Layout
27131 \begin_inset CommandInset label
27132 LatexCommand label
27133 name "tab:Le-sous-tableau-a"
27134
27135 \end_inset
27136
27137 Le sous-tableau a
27138 \end_layout
27139
27140 \end_inset
27141
27142
27143 \end_layout
27144
27145 \begin_layout Plain Layout
27146 \align center
27147 \begin_inset Tabular
27148 <lyxtabular version="3" rows="1" columns="5">
27149 <features rotate="0" tabularvalignment="middle">
27150 <column alignment="center" valignment="top" width="0">
27151 <column alignment="center" valignment="top" width="0">
27152 <column alignment="center" valignment="top" width="0">
27153 <column alignment="center" valignment="top" width="0">
27154 <column alignment="center" valignment="top" width="0">
27155 <row>
27156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27157 \begin_inset Text
27158
27159 \begin_layout Plain Layout
27160 test
27161 \end_layout
27162
27163 \end_inset
27164 </cell>
27165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27166 \begin_inset Text
27167
27168 \begin_layout Plain Layout
27169 b
27170 \end_layout
27171
27172 \end_inset
27173 </cell>
27174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27175 \begin_inset Text
27176
27177 \begin_layout Plain Layout
27178 c
27179 \end_layout
27180
27181 \end_inset
27182 </cell>
27183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27184 \begin_inset Text
27185
27186 \begin_layout Plain Layout
27187 d
27188 \end_layout
27189
27190 \end_inset
27191 </cell>
27192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27193 \begin_inset Text
27194
27195 \begin_layout Plain Layout
27196 e
27197 \end_layout
27198
27199 \end_inset
27200 </cell>
27201 </row>
27202 </lyxtabular>
27203
27204 \end_inset
27205
27206
27207 \end_layout
27208
27209 \end_inset
27210
27211
27212 \begin_inset space \hfill{}
27213 \end_inset
27214
27215
27216 \begin_inset Float table
27217 wide false
27218 sideways false
27219 status collapsed
27220
27221 \begin_layout Plain Layout
27222 \begin_inset Caption Standard
27223
27224 \begin_layout Plain Layout
27225 \begin_inset CommandInset label
27226 LatexCommand label
27227 name "tab:Le-sous-tableau-b"
27228
27229 \end_inset
27230
27231 Le sous-tableau b.
27232 \end_layout
27233
27234 \end_inset
27235
27236
27237 \end_layout
27238
27239 \begin_layout Plain Layout
27240 \align center
27241 \begin_inset Tabular
27242 <lyxtabular version="3" rows="1" columns="5">
27243 <features rotate="0" tabularvalignment="middle">
27244 <column alignment="center" valignment="top" width="0">
27245 <column alignment="center" valignment="top" width="0">
27246 <column alignment="center" valignment="top" width="0">
27247 <column alignment="center" valignment="top" width="0">
27248 <column alignment="center" valignment="top" width="0">
27249 <row>
27250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27251 \begin_inset Text
27252
27253 \begin_layout Plain Layout
27254 e
27255 \end_layout
27256
27257 \end_inset
27258 </cell>
27259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27260 \begin_inset Text
27261
27262 \begin_layout Plain Layout
27263 d
27264 \end_layout
27265
27266 \end_inset
27267 </cell>
27268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27269 \begin_inset Text
27270
27271 \begin_layout Plain Layout
27272 c
27273 \end_layout
27274
27275 \end_inset
27276 </cell>
27277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27278 \begin_inset Text
27279
27280 \begin_layout Plain Layout
27281 b
27282 \end_layout
27283
27284 \end_inset
27285 </cell>
27286 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27287 \begin_inset Text
27288
27289 \begin_layout Plain Layout
27290 test
27291 \end_layout
27292
27293 \end_inset
27294 </cell>
27295 </row>
27296 </lyxtabular>
27297
27298 \end_inset
27299
27300
27301 \end_layout
27302
27303 \end_inset
27304
27305
27306 \begin_inset space \hfill{}
27307 \end_inset
27308
27309
27310 \end_layout
27311
27312 \end_inset
27313
27314
27315 \end_layout
27316
27317 \begin_layout Standard
27318 \begin_inset Float table
27319 wide false
27320 sideways false
27321 status open
27322
27323 \begin_layout Plain Layout
27324 \begin_inset Caption Standard
27325
27326 \begin_layout Plain Layout
27327 \begin_inset CommandInset label
27328 LatexCommand label
27329 name "tab:Deux-sous-tableaux-l-un-sur-l-autre"
27330
27331 \end_inset
27332
27333 Deux sous-tableaux placés l'un sur l'autre.
27334  (a) un tableau avec 4 cellules, (b) un tableau avec 5 cellules.
27335 \end_layout
27336
27337 \end_inset
27338
27339
27340 \end_layout
27341
27342 \begin_layout Plain Layout
27343 \align center
27344 \begin_inset Float table
27345 wide false
27346 sideways false
27347 status collapsed
27348
27349 \begin_layout Plain Layout
27350 \begin_inset Caption Standard
27351
27352 \begin_layout Plain Layout
27353
27354 \end_layout
27355
27356 \end_inset
27357
27358
27359 \end_layout
27360
27361 \begin_layout Plain Layout
27362 \align center
27363 \begin_inset Tabular
27364 <lyxtabular version="3" rows="1" columns="4">
27365 <features rotate="0" tabularvalignment="middle">
27366 <column alignment="center" valignment="top" width="0">
27367 <column alignment="center" valignment="top" width="0">
27368 <column alignment="center" valignment="top" width="0">
27369 <column alignment="center" valignment="top" width="0">
27370 <row>
27371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27372 \begin_inset Text
27373
27374 \begin_layout Plain Layout
27375 test
27376 \end_layout
27377
27378 \end_inset
27379 </cell>
27380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27381 \begin_inset Text
27382
27383 \begin_layout Plain Layout
27384 test
27385 \end_layout
27386
27387 \end_inset
27388 </cell>
27389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27390 \begin_inset Text
27391
27392 \begin_layout Plain Layout
27393 test
27394 \end_layout
27395
27396 \end_inset
27397 </cell>
27398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27399 \begin_inset Text
27400
27401 \begin_layout Plain Layout
27402 test
27403 \end_layout
27404
27405 \end_inset
27406 </cell>
27407 </row>
27408 </lyxtabular>
27409
27410 \end_inset
27411
27412
27413 \end_layout
27414
27415 \end_inset
27416
27417
27418 \end_layout
27419
27420 \begin_layout Plain Layout
27421 \align center
27422 \begin_inset Float table
27423 wide false
27424 sideways false
27425 status collapsed
27426
27427 \begin_layout Plain Layout
27428 \begin_inset Caption Standard
27429
27430 \begin_layout Plain Layout
27431
27432 \end_layout
27433
27434 \end_inset
27435
27436
27437 \end_layout
27438
27439 \begin_layout Plain Layout
27440 \align center
27441 \begin_inset Tabular
27442 <lyxtabular version="3" rows="1" columns="5">
27443 <features rotate="0" tabularvalignment="middle">
27444 <column alignment="center" valignment="top" width="0">
27445 <column alignment="center" valignment="top" width="0">
27446 <column alignment="center" valignment="top" width="0">
27447 <column alignment="center" valignment="top" width="0">
27448 <column alignment="center" valignment="top" width="0">
27449 <row>
27450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27451 \begin_inset Text
27452
27453 \begin_layout Plain Layout
27454 a
27455 \end_layout
27456
27457 \end_inset
27458 </cell>
27459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27460 \begin_inset Text
27461
27462 \begin_layout Plain Layout
27463 b
27464 \end_layout
27465
27466 \end_inset
27467 </cell>
27468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27469 \begin_inset Text
27470
27471 \begin_layout Plain Layout
27472 c
27473 \end_layout
27474
27475 \end_inset
27476 </cell>
27477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27478 \begin_inset Text
27479
27480 \begin_layout Plain Layout
27481 d
27482 \end_layout
27483
27484 \end_inset
27485 </cell>
27486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27487 \begin_inset Text
27488
27489 \begin_layout Plain Layout
27490 e
27491 \end_layout
27492
27493 \end_inset
27494 </cell>
27495 </row>
27496 </lyxtabular>
27497
27498 \end_inset
27499
27500
27501 \end_layout
27502
27503 \end_inset
27504
27505
27506 \end_layout
27507
27508 \end_inset
27509
27510
27511 \end_layout
27512
27513 \begin_layout Section
27514 Flottants côte-à-côte
27515 \begin_inset Index idx
27516 status collapsed
27517
27518 \begin_layout Plain Layout
27519 Flottants ! côte-à-côte
27520 \end_layout
27521
27522 \end_inset
27523
27524
27525 \end_layout
27526
27527 \begin_layout Standard
27528 Pour placer des flottants côte-à-côte, comme pour la figure
27529 \begin_inset space ~
27530 \end_inset
27531
27532
27533 \begin_inset CommandInset ref
27534 LatexCommand ref
27535 reference "fig:Flottant-gauche"
27536
27537 \end_inset
27538
27539  et 
27540 \begin_inset CommandInset ref
27541 LatexCommand ref
27542 reference "fig:Flottant-droit"
27543
27544 \end_inset
27545
27546 , on n'utilise 
27547 \emph on
27548 qu'un seul 
27549 \emph default
27550 flottant.
27551  On y insère deux boîtes de minipages.
27552 \begin_inset Foot
27553 status collapsed
27554
27555 \begin_layout Plain Layout
27556 Les minipages sont décrites dans la section
27557 \begin_inset space ~
27558 \end_inset
27559
27560
27561 \begin_inset CommandInset ref
27562 LatexCommand ref
27563 reference "sec:Minipages"
27564
27565 \end_inset
27566
27567 .
27568 \end_layout
27569
27570 \end_inset
27571
27572  La largeur est mise à 45
27573 \begin_inset space \thinspace{}
27574 \end_inset
27575
27576 -50
27577 \begin_inset space \thinspace{}
27578 \end_inset
27579
27580 column% et l'alignement de la boîte à 
27581 \family sans
27582 Bas
27583 \family default
27584  pour chaque minipage.
27585  Les boîtes minipages contiennent l'image et la légende exactement comme
27586  avec un flottant.
27587  La seule différence est que l'unité de longueur 
27588 \family sans
27589 Largeur
27590 \begin_inset space ~
27591 \end_inset
27592
27593 colonne
27594 \begin_inset space ~
27595 \end_inset
27596
27597 %
27598 \family default
27599  utilisée pour l'image est maintenant définie par rapport à la largeur des
27600  boîtes minipages.
27601 \end_layout
27602
27603 \begin_layout Standard
27604 \begin_inset Float figure
27605 wide false
27606 sideways false
27607 status open
27608
27609 \begin_layout Plain Layout
27610 \begin_inset Box Frameless
27611 position "b"
27612 hor_pos "c"
27613 has_inner_box 1
27614 inner_pos "t"
27615 use_parbox 0
27616 use_makebox 0
27617 width "45col%"
27618 special "none"
27619 height "1in"
27620 height_special "totalheight"
27621 status open
27622
27623 \begin_layout Plain Layout
27624 \align center
27625 \begin_inset Graphics
27626         filename ../clipart/mobius.eps
27627         lyxscale 50
27628         width 100col%
27629         scaleBeforeRotation
27630
27631 \end_inset
27632
27633
27634 \end_layout
27635
27636 \begin_layout Plain Layout
27637 \begin_inset Caption Standard
27638
27639 \begin_layout Plain Layout
27640 \begin_inset CommandInset label
27641 LatexCommand label
27642 name "fig:Flottant-gauche"
27643
27644 \end_inset
27645
27646 Flottant du côté gauche.
27647 \end_layout
27648
27649 \end_inset
27650
27651
27652 \end_layout
27653
27654 \end_inset
27655
27656
27657 \begin_inset space \hfill{}
27658 \end_inset
27659
27660
27661 \begin_inset Box Frameless
27662 position "b"
27663 hor_pos "c"
27664 has_inner_box 1
27665 inner_pos "t"
27666 use_parbox 0
27667 use_makebox 0
27668 width "45col%"
27669 special "none"
27670 height "1in"
27671 height_special "totalheight"
27672 status open
27673
27674 \begin_layout Plain Layout
27675 \align center
27676 \begin_inset Graphics
27677         filename ../clipart/platypus.eps
27678         lyxscale 50
27679         width 100col%
27680         scaleBeforeRotation
27681
27682 \end_inset
27683
27684
27685 \end_layout
27686
27687 \begin_layout Plain Layout
27688 \begin_inset Caption Standard
27689
27690 \begin_layout Plain Layout
27691 \begin_inset CommandInset label
27692 LatexCommand label
27693 name "fig:Flottant-droit"
27694
27695 \end_inset
27696
27697 Flottant du côté droit.
27698 \end_layout
27699
27700 \end_inset
27701
27702
27703 \end_layout
27704
27705 \end_inset
27706
27707
27708 \end_layout
27709
27710 \end_inset
27711
27712
27713 \end_layout
27714
27715 \begin_layout Section
27716 Mise en forme de la légende
27717 \begin_inset Index idx
27718 status collapsed
27719
27720 \begin_layout Plain Layout
27721 Légende ! Mise en forme
27722 \end_layout
27723
27724 \end_inset
27725
27726
27727 \begin_inset Index idx
27728 status collapsed
27729
27730 \begin_layout Plain Layout
27731 Flottants ! Mise en forme de la Légende
27732 \end_layout
27733
27734 \end_inset
27735
27736
27737 \begin_inset CommandInset label
27738 LatexCommand label
27739 name "sec:Formatage-légende"
27740
27741 \end_inset
27742
27743
27744 \end_layout
27745
27746 \begin_layout Standard
27747 L'environnement 
27748 \family sans
27749 Légende
27750 \family default
27751  est l'environnement de paragraphe implicite pour les 
27752 \family sans
27753 flottants
27754 \family default
27755 .
27756  Dans la fenêtre de LyX les légendes apparaissent comme une étiquette comme
27757  par exemple 
27758 \begin_inset Quotes eld
27759 \end_inset
27760
27761
27762 \family sans
27763 Figure #:
27764 \family default
27765
27766 \begin_inset Quotes erd
27767 \end_inset
27768
27769  suivi par le texte de la légende.
27770  Le 
27771 \begin_inset Quotes eld
27772 \end_inset
27773
27774 #
27775 \begin_inset Quotes erd
27776 \end_inset
27777
27778  étant remplacé par le numéro de référence réel.
27779  implicitement l'étiquette et le numéro sont dans la même police de caractères
27780  que le texte de la légende et deux points suivent le numéro pour séparer
27781  l'étiquette du texte.
27782  Ce format de légende n'est pas forcément adapté à tous les types de documents.
27783 \end_layout
27784
27785 \begin_layout Standard
27786 Pour modifier le format implicite des légendes, il faut charger le paquetage
27787  LaTeX 
27788 \series bold
27789 caption
27790 \series default
27791
27792 \begin_inset Index idx
27793 status collapsed
27794
27795 \begin_layout Plain Layout
27796 Paquetages LaTeX ! caption
27797 \end_layout
27798
27799 \end_inset
27800
27801  dans le préambule de votre document avec la ligne suivante :
27802 \end_layout
27803
27804 \begin_layout Standard
27805
27806 \series bold
27807
27808 \backslash
27809 usepackage[format definition]{caption}
27810 \end_layout
27811
27812 \begin_layout Standard
27813 Pour avoir par exemple l'étiquette et le numéro dans une police sans empattement
27814  grasse et les légendes de tableau toujours au dessus des tableaux, comme
27815  dans ce document, utilisez les commandes suivantes :
27816 \end_layout
27817
27818 \begin_layout Standard
27819
27820 \series bold
27821
27822 \backslash
27823 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
27824 \end_layout
27825
27826 \begin_layout Standard
27827 Vous pouvez aussi définir des formats de légendes différents pour les différents
27828  types de flottants.
27829  Dans ce cas chargez le paquetage 
27830 \series bold
27831 caption 
27832 \series default
27833 sans option de format spécifique et définissez les différents formats à
27834  l'aide de la commande 
27835 \end_layout
27836
27837 \begin_layout Standard
27838
27839 \series bold
27840
27841 \backslash
27842 captionsetup[type de flottant]{définition du format}
27843 \end_layout
27844
27845 \begin_layout Standard
27846 dans le préambule du document.
27847  Par exemple les formats de légende de la Figure
27848 \begin_inset space ~
27849 \end_inset
27850
27851
27852 \begin_inset CommandInset ref
27853 LatexCommand ref
27854 reference "fig:Legende-de-fig"
27855
27856 \end_inset
27857
27858  et du Tableau
27859 \begin_inset space ~
27860 \end_inset
27861
27862
27863 \begin_inset CommandInset ref
27864 LatexCommand ref
27865 reference "tab:Légende-de-tab"
27866
27867 \end_inset
27868
27869  peuvent être créés en utilisant les commandes suivantes dans le préambule
27870  :
27871 \end_layout
27872
27873 \begin_layout Standard
27874
27875 \series bold
27876
27877 \backslash
27878 usepackage[tableposition=top]{caption}
27879 \series default
27880
27881 \begin_inset Newline newline
27882 \end_inset
27883
27884
27885 \series bold
27886
27887 \backslash
27888 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm,%
27889 \begin_inset Newline newline
27890 \end_inset
27891
27892
27893 \begin_inset Phantom HPhantom
27894 status open
27895
27896 \begin_layout Plain Layout
27897
27898 \series bold
27899
27900 \backslash
27901 captionsetup[figure]{
27902 \end_layout
27903
27904 \end_inset
27905
27906 labelsep=period}
27907 \begin_inset Newline newline
27908 \end_inset
27909
27910
27911 \backslash
27912 captionsetup[table]{labelfont={bf,sf}}
27913 \end_layout
27914
27915 \begin_layout Standard
27916 \begin_inset Note Greyedout
27917 status open
27918
27919 \begin_layout Plain Layout
27920
27921 \series bold
27922 Note:
27923 \series default
27924  L'option 
27925 \series bold
27926 tableposition=top
27927 \series default
27928  n'a pas d'effet quand on utilise un document de classe 
27929 \series bold
27930 KOMA-Script
27931 \series default
27932
27933 \begin_inset Index idx
27934 status collapsed
27935
27936 \begin_layout Plain Layout
27937 Paquetages LaTeX ! KOMA-Script
27938 \end_layout
27939
27940 \end_inset
27941
27942 .
27943  Dans ce cas on doit utiliser l'option 
27944 \series bold
27945 captions=tableheading
27946 \series default
27947  de la classe de document.
27948 \end_layout
27949
27950 \end_inset
27951
27952
27953 \end_layout
27954
27955 \begin_layout Standard
27956 Pour plus d'information sur le paquetage 
27957 \series bold
27958 caption
27959 \series default
27960  nous vous renvoyons à sa documentation 
27961 \begin_inset CommandInset citation
27962 LatexCommand cite
27963 key "caption"
27964
27965 \end_inset
27966
27967 .
27968 \end_layout
27969
27970 \begin_layout Standard
27971 Pour changer le nom de l'étiquette, par exemple de 
27972 \begin_inset Quotes eld
27973 \end_inset
27974
27975 Figure
27976 \begin_inset Quotes erd
27977 \end_inset
27978
27979  à 
27980 \begin_inset Quotes eld
27981 \end_inset
27982
27983 Image
27984 \begin_inset Quotes erd
27985 \end_inset
27986
27987 , utilisez la commande suivante dans le préambule :
27988 \end_layout
27989
27990 \begin_layout Standard
27991
27992 \series bold
27993
27994 \backslash
27995 renewcommand{
27996 \backslash
27997 fnum@figure}{Image~
27998 \backslash
27999 thefigure}
28000 \end_layout
28001
28002 \begin_layout Standard
28003 où 
28004 \series bold
28005
28006 \backslash
28007 thefigure
28008 \series default
28009  insère le numéro de la figure et
28010 \series bold
28011  
28012 \begin_inset Quotes eld
28013 \end_inset
28014
28015 ~
28016 \series default
28017
28018 \begin_inset Quotes erd
28019 \end_inset
28020
28021  ajoute une espace insécable.
28022 \end_layout
28023
28024 \begin_layout Standard
28025 \begin_inset VSpace bigskip
28026 \end_inset
28027
28028 Si vous utilisez un document de classe 
28029 \series bold
28030 KOMA-Script
28031 \series default
28032
28033 \begin_inset Index idx
28034 status collapsed
28035
28036 \begin_layout Plain Layout
28037 Paquetages LaTeX ! KOMA-Script
28038 \end_layout
28039
28040 \end_inset
28041
28042  (
28043 \family sans
28044 article (KOMA-Script)
28045 \family default
28046
28047 \family sans
28048 book (KOMA-Script)
28049 \family default
28050
28051 \family sans
28052 letter (KOMA-Script)
28053 \family default
28054 , ou 
28055 \family sans
28056 report (KOMA-Script)
28057 \family default
28058
28059 \begin_inset space \thinspace{}
28060 \end_inset
28061
28062 ), Vous pouvez utiliser la commande incorporée 
28063 \series bold
28064
28065 \backslash
28066 setkomafont 
28067 \series default
28068 du paquetage
28069 \series bold
28070  KOMA-Script 
28071 \series default
28072 à la place du paquetage
28073 \series bold
28074  caption.
28075  
28076 \series default
28077 Par exemple, pour avoir une étiquette de légende en gras, ajoutez la commande
28078  suivante au préambule de votre document :
28079 \end_layout
28080
28081 \begin_layout Standard
28082
28083 \series bold
28084
28085 \backslash
28086 setkomafont{captionlabel}{
28087 \backslash
28088 bfseries}
28089 \end_layout
28090
28091 \begin_layout Standard
28092 Pour plus d'information au sujet de 
28093 \series bold
28094
28095 \backslash
28096 setkomafont
28097 \series default
28098  nous vous renvoyons à la documentation du paquetage 
28099 \series bold
28100 KOMA-Script
28101 \series default
28102  
28103 \begin_inset CommandInset citation
28104 LatexCommand cite
28105 key "KOMA-Script"
28106
28107 \end_inset
28108
28109 .
28110 \end_layout
28111
28112 \begin_layout Standard
28113 \begin_inset ERT
28114 status collapsed
28115
28116 \begin_layout Plain Layout
28117
28118
28119 \backslash
28120 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
28121 }
28122 \end_layout
28123
28124 \end_inset
28125
28126
28127 \begin_inset Note Note
28128 status open
28129
28130 \begin_layout Plain Layout
28131 Le format de la légende n'est modifié que pour cet exemple.
28132 \end_layout
28133
28134 \end_inset
28135
28136
28137 \end_layout
28138
28139 \begin_layout Standard
28140 \begin_inset Float figure
28141 placement !p
28142 wide false
28143 sideways false
28144 status open
28145
28146 \begin_layout Plain Layout
28147 \align center
28148 \begin_inset Graphics
28149         filename ../clipart/mobius.eps
28150         lyxscale 50
28151         scale 50
28152         scaleBeforeRotation
28153
28154 \end_inset
28155
28156
28157 \end_layout
28158
28159 \begin_layout Plain Layout
28160 \begin_inset Caption Standard
28161
28162 \begin_layout Plain Layout
28163 \begin_inset CommandInset label
28164 LatexCommand label
28165 name "fig:Legende-de-fig"
28166
28167 \end_inset
28168
28169 Ceci est un exemple de légende de figure qui est plus longue qu'une ligne
28170  pour montrer les différents types de formats de légendes.
28171  Ici on a utilisé un format de légende personnalisé.
28172 \end_layout
28173
28174 \end_inset
28175
28176
28177 \end_layout
28178
28179 \end_inset
28180
28181
28182 \end_layout
28183
28184 \begin_layout Standard
28185 \begin_inset ERT
28186 status collapsed
28187
28188 \begin_layout Plain Layout
28189
28190
28191 \backslash
28192 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
28193 on}
28194 \end_layout
28195
28196 \end_inset
28197
28198
28199 \end_layout
28200
28201 \begin_layout Standard
28202 \begin_inset Float table
28203 placement !p
28204 wide false
28205 sideways false
28206 status open
28207
28208 \begin_layout Plain Layout
28209 \begin_inset Caption Standard
28210
28211 \begin_layout Plain Layout
28212 \begin_inset CommandInset label
28213 LatexCommand label
28214 name "tab:Légende-de-tab"
28215
28216 \end_inset
28217
28218 Ceci est un exemple de légende de tableau qui est plus longue qu'une ligne
28219  pour montrer les différents types de formats de légendes.
28220  Ici on a utilisé le format de légende implicite.
28221 \end_layout
28222
28223 \end_inset
28224
28225
28226 \end_layout
28227
28228 \begin_layout Plain Layout
28229 \align center
28230 \begin_inset Tabular
28231 <lyxtabular version="3" rows="1" columns="5">
28232 <features rotate="0" tabularvalignment="middle">
28233 <column alignment="center" valignment="top" width="0">
28234 <column alignment="center" valignment="top" width="0">
28235 <column alignment="center" valignment="top" width="0">
28236 <column alignment="center" valignment="top" width="0">
28237 <column alignment="center" valignment="top" width="0">
28238 <row>
28239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28240 \begin_inset Text
28241
28242 \begin_layout Plain Layout
28243 a
28244 \end_layout
28245
28246 \end_inset
28247 </cell>
28248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28249 \begin_inset Text
28250
28251 \begin_layout Plain Layout
28252 b
28253 \end_layout
28254
28255 \end_inset
28256 </cell>
28257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28258 \begin_inset Text
28259
28260 \begin_layout Plain Layout
28261 c
28262 \end_layout
28263
28264 \end_inset
28265 </cell>
28266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28267 \begin_inset Text
28268
28269 \begin_layout Plain Layout
28270 d
28271 \end_layout
28272
28273 \end_inset
28274 </cell>
28275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
28276 \begin_inset Text
28277
28278 \begin_layout Plain Layout
28279 e
28280 \end_layout
28281
28282 \end_inset
28283 </cell>
28284 </row>
28285 </lyxtabular>
28286
28287 \end_inset
28288
28289
28290 \end_layout
28291
28292 \end_inset
28293
28294
28295 \end_layout
28296
28297 \begin_layout Section
28298 Positionnement de la Légende
28299 \begin_inset Index idx
28300 status collapsed
28301
28302 \begin_layout Plain Layout
28303 Légende ! Placement
28304 \end_layout
28305
28306 \end_inset
28307
28308
28309 \begin_inset Index idx
28310 status collapsed
28311
28312 \begin_layout Plain Layout
28313 Flottants ! Placement de la légende
28314 \end_layout
28315
28316 \end_inset
28317
28318
28319 \begin_inset CommandInset label
28320 LatexCommand label
28321 name "sec:Placement-légende"
28322
28323 \end_inset
28324
28325
28326 \end_layout
28327
28328 \begin_layout Standard
28329 La règle habituelle pour placer la légende est :
28330 \end_layout
28331
28332 \begin_layout Description
28333 Figure
28334 \begin_inset space ~
28335 \end_inset
28336
28337 : La légende est placée en dessous de la figure
28338 \end_layout
28339
28340 \begin_layout Description
28341 Tableau
28342 \begin_inset space ~
28343 \end_inset
28344
28345 : La légende est placée au dessus du tableau
28346 \end_layout
28347
28348 \begin_layout Standard
28349 Malheureusement les classes standard de LaTeX ne gèrent pas les légendes
28350  au dessus des tableaux.
28351  Ce qui fait que si vous utilisez une des classes de document 
28352 \family sans
28353 article
28354 \family default
28355
28356 \family sans
28357 book
28358 \family default
28359
28360 \family sans
28361 letter
28362 \family default
28363 , ou 
28364 \family sans
28365 report
28366 \family default
28367  il n'y aura pas d'espace libre entre la légende et le tableau.
28368  Pour insérer l'espace nécessaire, ajoutez l'option suivante à la commande
28369  de chargement du paquetage LaTeX 
28370 \series bold
28371 caption
28372 \series default
28373  dans le préambule de votre document
28374 \begin_inset Foot
28375 status open
28376
28377 \begin_layout Plain Layout
28378 Voir la section
28379 \begin_inset space ~
28380 \end_inset
28381
28382
28383 \begin_inset CommandInset ref
28384 LatexCommand ref
28385 reference "sec:Formatage-légende"
28386
28387 \end_inset
28388
28389  pour plus d'information sur le paquetage 
28390 \series bold
28391 caption
28392 \series default
28393 .
28394 \end_layout
28395
28396 \end_inset
28397
28398 :
28399 \end_layout
28400
28401 \begin_layout Standard
28402
28403 \series bold
28404 tableposition=top
28405 \end_layout
28406
28407 \begin_layout Standard
28408 Si vous utilisez une classe de document 
28409 \series bold
28410 KOMA-Script
28411 \series default
28412
28413 \begin_inset Index idx
28414 status collapsed
28415
28416 \begin_layout Plain Layout
28417 Paquetages LaTeX ! KOMA-Script
28418 \end_layout
28419
28420 \end_inset
28421
28422  (
28423 \family sans
28424 article (KOMA-Script)
28425 \family default
28426
28427 \family sans
28428 book (KOMA-Script)
28429 \family default
28430
28431 \family sans
28432 letter (KOMA-Script)
28433 \family default
28434 , ou 
28435 \family sans
28436 report (KOMA-Script)
28437 \family default
28438
28439 \begin_inset space \thinspace{}
28440 \end_inset
28441
28442 ), vous pouvez utiliser à la place du paquetage 
28443 \series bold
28444 caption
28445 \series default
28446  l'option 
28447 \series bold
28448 captions=tableheading
28449 \series default
28450  de la classe de document.
28451 \end_layout
28452
28453 \begin_layout Standard
28454 \begin_inset VSpace bigskip
28455 \end_inset
28456
28457 On peut aussi mettre la légende à côté d'une figure ou d'un tableau.
28458  Pour cela, vous devez charger le paquetage LaTeX 
28459 \series bold
28460 sidecap
28461 \series default
28462
28463 \begin_inset Index idx
28464 status collapsed
28465
28466 \begin_layout Plain Layout
28467 Paquetages LaTeX ! sidecap
28468 \end_layout
28469
28470 \end_inset
28471
28472  dans le préambule de votre document avec la ligne de commande suivante
28473 \end_layout
28474
28475 \begin_layout Standard
28476
28477 \series bold
28478
28479 \backslash
28480 usepackage[option]{sidecap}
28481 \end_layout
28482
28483 \begin_layout Standard
28484 Si vous ne mettez aucune option, la légende sera placée du côté de la marge
28485  extérieure – à droite sur les pages impaires et à gauche sur les pages
28486  paires.
28487  Vous pouvez mettre la légende dans la marge interne en utilisant l'option
28488  
28489 \series bold
28490 innercaption
28491 \series default
28492 .
28493  Pour forcer le placement toujours à droite ou à gauche, utilisez les options
28494  
28495 \series bold
28496 rightcaption
28497 \series default
28498  ou 
28499 \series bold
28500 leftcaption
28501 \series default
28502 .
28503 \end_layout
28504
28505 \begin_layout Standard
28506 \begin_inset ERT
28507 status collapsed
28508
28509 \begin_layout Plain Layout
28510
28511
28512 \backslash
28513 ifsidecap
28514 \end_layout
28515
28516 \end_inset
28517
28518
28519 \begin_inset Note Note
28520 status open
28521
28522 \begin_layout Plain Layout
28523 La section suivante ne sera affichée que si le paquetage LaTeX 
28524 \series bold
28525 sidecap
28526 \series default
28527  a été installé.
28528 \end_layout
28529
28530 \end_inset
28531
28532
28533 \end_layout
28534
28535 \begin_layout Standard
28536 Pour pouvoir placer la légende d'un flottant à côté de celui-ci, vous devez
28537  ajouter ces commandes dans le préambule de votre document :
28538 \end_layout
28539
28540 \begin_layout Standard
28541 \noindent
28542 \begin_inset CommandInset line
28543 LatexCommand rule
28544 offset "0.5ex"
28545 width "100line%"
28546 height "1pt"
28547
28548 \end_inset
28549
28550
28551 \end_layout
28552
28553 \begin_layout Standard
28554
28555 \series bold
28556
28557 \backslash
28558 newcommand{
28559 \backslash
28560 TabBesBeg}[1][1.0]{%
28561 \begin_inset Newline newline
28562 \end_inset
28563
28564
28565 \begin_inset Phantom HPhantom
28566 status open
28567
28568 \begin_layout Plain Layout
28569 \begin_inset space ~
28570 \end_inset
28571
28572
28573 \end_layout
28574
28575 \end_inset
28576
28577
28578 \backslash
28579 let
28580 \backslash
28581 MyTable
28582 \backslash
28583 table
28584 \begin_inset Newline newline
28585 \end_inset
28586
28587
28588 \begin_inset Phantom HPhantom
28589 status open
28590
28591 \begin_layout Plain Layout
28592
28593 \series medium
28594 \begin_inset space ~
28595 \end_inset
28596
28597
28598 \end_layout
28599
28600 \end_inset
28601
28602
28603 \backslash
28604 let
28605 \backslash
28606 MyEndtable
28607 \backslash
28608 endtable
28609 \begin_inset Newline newline
28610 \end_inset
28611
28612
28613 \begin_inset Phantom HPhantom
28614 status open
28615
28616 \begin_layout Plain Layout
28617
28618 \series medium
28619 \begin_inset space ~
28620 \end_inset
28621
28622
28623 \end_layout
28624
28625 \end_inset
28626
28627
28628 \backslash
28629 renewenvironment{table}[1]{
28630 \backslash
28631 begin{SCtable}[#1]##1}{
28632 \backslash
28633 end{SCtable}}}
28634 \end_layout
28635
28636 \begin_layout Standard
28637
28638 \series bold
28639
28640 \backslash
28641 newcommand{
28642 \backslash
28643 TabBesEnd}{%
28644 \begin_inset Newline newline
28645 \end_inset
28646
28647
28648 \begin_inset Phantom HPhantom
28649 status open
28650
28651 \begin_layout Plain Layout
28652 \begin_inset space ~
28653 \end_inset
28654
28655
28656 \end_layout
28657
28658 \end_inset
28659
28660
28661 \backslash
28662 let
28663 \backslash
28664 table
28665 \backslash
28666 MyTable
28667 \begin_inset Newline newline
28668 \end_inset
28669
28670
28671 \begin_inset Phantom HPhantom
28672 status open
28673
28674 \begin_layout Plain Layout
28675 \begin_inset space ~
28676 \end_inset
28677
28678
28679 \end_layout
28680
28681 \end_inset
28682
28683
28684 \backslash
28685 let
28686 \backslash
28687 endtable
28688 \backslash
28689 MyEndtable
28690 \end_layout
28691
28692 \begin_layout Standard
28693
28694 \series bold
28695
28696 \backslash
28697 newcommand{
28698 \backslash
28699 FigBesBeg}[1][1.0]{%
28700 \begin_inset Newline newline
28701 \end_inset
28702
28703
28704 \begin_inset Phantom HPhantom
28705 status open
28706
28707 \begin_layout Plain Layout
28708 \begin_inset space ~
28709 \end_inset
28710
28711
28712 \end_layout
28713
28714 \end_inset
28715
28716
28717 \backslash
28718 let
28719 \backslash
28720 MyFigure
28721 \backslash
28722 figure
28723 \begin_inset Newline newline
28724 \end_inset
28725
28726
28727 \begin_inset Phantom HPhantom
28728 status open
28729
28730 \begin_layout Plain Layout
28731 \begin_inset space ~
28732 \end_inset
28733
28734
28735 \end_layout
28736
28737 \end_inset
28738
28739
28740 \backslash
28741 let
28742 \backslash
28743 MyEndfigure
28744 \backslash
28745 endfigure
28746 \begin_inset Newline newline
28747 \end_inset
28748
28749
28750 \begin_inset Phantom HPhantom
28751 status open
28752
28753 \begin_layout Plain Layout
28754 \begin_inset space ~
28755 \end_inset
28756
28757
28758 \end_layout
28759
28760 \end_inset
28761
28762
28763 \backslash
28764 renewenvironment{figure}[1]{
28765 \backslash
28766 begin{SCfigure}[#1]##1}{
28767 \backslash
28768 end{SCfigure}}}
28769 \end_layout
28770
28771 \begin_layout Standard
28772
28773 \series bold
28774
28775 \backslash
28776 newcommand{
28777 \backslash
28778 FigBesEnd}{%
28779 \begin_inset Newline newline
28780 \end_inset
28781
28782
28783 \begin_inset Phantom HPhantom
28784 status open
28785
28786 \begin_layout Plain Layout
28787 \begin_inset space ~
28788 \end_inset
28789
28790
28791 \end_layout
28792
28793 \end_inset
28794
28795
28796 \backslash
28797 let
28798 \backslash
28799 figure
28800 \backslash
28801 MyFigure
28802 \begin_inset Newline newline
28803 \end_inset
28804
28805
28806 \begin_inset Phantom HPhantom
28807 status open
28808
28809 \begin_layout Plain Layout
28810 \begin_inset space ~
28811 \end_inset
28812
28813
28814 \end_layout
28815
28816 \end_inset
28817
28818
28819 \backslash
28820 let
28821 \backslash
28822 endfigure
28823 \backslash
28824 MyEndfigure}
28825 \end_layout
28826
28827 \begin_layout Standard
28828 \noindent
28829 \begin_inset CommandInset line
28830 LatexCommand rule
28831 offset "0.5ex"
28832 width "100line%"
28833 height "1pt"
28834
28835 \end_inset
28836
28837
28838 \end_layout
28839
28840 \begin_layout Standard
28841 Ces commandes vous permettent de redéfinir les flottants de façon à ce que
28842  la légende se place sur le côté.
28843  Pour les flottants de figure, utilisez la commande
28844 \end_layout
28845
28846 \begin_layout Standard
28847
28848 \series bold
28849
28850 \backslash
28851 FigBesBeg
28852 \end_layout
28853
28854 \begin_layout Standard
28855 en code TeX avant le flottant.
28856  Et insérez la commande
28857 \end_layout
28858
28859 \begin_layout Standard
28860
28861 \series bold
28862
28863 \backslash
28864 FigBesEnd
28865 \end_layout
28866
28867 \begin_layout Standard
28868 en code TeX à l'endroit où vous voulez revenir à la définition originale
28869  du flottant.
28870 \end_layout
28871
28872 \begin_layout Standard
28873 Pour les flottants de tableau, utilisez les commandes correspondantes
28874 \end_layout
28875
28876 \begin_layout Standard
28877
28878 \series bold
28879
28880 \backslash
28881 TabBesBeg
28882 \series default
28883  et 
28884 \series bold
28885
28886 \backslash
28887 TabBesEnd
28888 \end_layout
28889
28890 \begin_layout Standard
28891 La figure
28892 \begin_inset space ~
28893 \end_inset
28894
28895
28896 \begin_inset CommandInset ref
28897 LatexCommand ref
28898 reference "fig:legende-a-coté-fig"
28899
28900 \end_inset
28901
28902  et le tableau
28903 \begin_inset space ~
28904 \end_inset
28905
28906
28907 \begin_inset CommandInset ref
28908 LatexCommand ref
28909 reference "tab:legende-à-coté-tableau"
28910
28911 \end_inset
28912
28913  sont des exemples où la légende a été mises sur le coté.
28914 \end_layout
28915
28916 \begin_layout Standard
28917 Vous pouvez voir dans ces exemples que la légende est en haut du flottant
28918  pour les flottants de tableau et vers le bas pour les flottants de figure.
28919  Pour changer ce comportement, vous pouvez utiliser les commandes
28920 \end_layout
28921
28922 \begin_layout Standard
28923
28924 \series bold
28925
28926 \backslash
28927 sidecaptionvpos{type flottant}{placement}
28928 \end_layout
28929
28930 \begin_layout Standard
28931 dans le préambule du document ou en code TeX juste avant le flottant visé.
28932  Le type du flottant est soit 
28933 \family sans
28934 figure
28935 \family default
28936  soit 
28937 \family sans
28938 table
28939 \family default
28940 , le placement peut être 
28941 \begin_inset Quotes eld
28942 \end_inset
28943
28944
28945 \family sans
28946 t
28947 \family default
28948
28949 \begin_inset Quotes erd
28950 \end_inset
28951
28952  pour haut (top), 
28953 \begin_inset Quotes eld
28954 \end_inset
28955
28956
28957 \family sans
28958 c
28959 \family default
28960
28961 \begin_inset Quotes erd
28962 \end_inset
28963
28964  pour centre (center), ou 
28965 \begin_inset Quotes eld
28966 \end_inset
28967
28968
28969 \family sans
28970 b
28971 \family default
28972
28973 \begin_inset Quotes erd
28974 \end_inset
28975
28976  pour bas (bottom).
28977  Pour que, par exemple, les légendes des flottants de figure soient centrés
28978  verticalement, utilisez la commande
28979 \end_layout
28980
28981 \begin_layout Standard
28982
28983 \series bold
28984
28985 \backslash
28986 sidecaptionvpos{figure}{c}
28987 \end_layout
28988
28989 \begin_layout Standard
28990 C'est ce qui a été utilisé pour la figure
28991 \begin_inset space ~
28992 \end_inset
28993
28994
28995 \begin_inset CommandInset ref
28996 LatexCommand ref
28997 reference "fig:legende-à-coté-fig-2"
28998
28999 \end_inset
29000
29001 .
29002 \end_layout
29003
29004 \begin_layout Standard
29005 \begin_inset VSpace medskip
29006 \end_inset
29007
29008
29009 \end_layout
29010
29011 \begin_layout Standard
29012 La largeur de légende par défaut est celle de l'image ou du tableau.
29013  Pour des images ou des tableaux étroits, comme le tableau
29014 \begin_inset space ~
29015 \end_inset
29016
29017
29018 \begin_inset CommandInset ref
29019 LatexCommand ref
29020 reference "tab:legende-à-coté-tableau"
29021
29022 \end_inset
29023
29024 , cela donne des légendes trop étroites.
29025  Vous pouvez augmenter la largeur en précisant un facteur qui sera multiplié
29026  à la largeur de l'image ou du tableau pour obtenir la largeur de la légende.
29027  La largeur de la légende sera automatiquement recalculée dans le cas où
29028  cette dernière déborderait dans la marge de la page ou de la colonne à
29029  cause de la largeur indiquée.
29030  Le 
29031 \emph on
29032 facteur 
29033 \emph default
29034 peut soit être donné comme argument pour 
29035 \series bold
29036
29037 \backslash
29038 FigBesBeg
29039 \series default
29040 :
29041 \end_layout
29042
29043 \begin_layout Standard
29044
29045 \series bold
29046
29047 \backslash
29048 FigBesBeg[facteur]
29049 \end_layout
29050
29051 \begin_layout Standard
29052 ou dans la définition de 
29053 \series bold
29054
29055 \backslash
29056 FigBesBeg 
29057 \series default
29058 en remplaçant le
29059 \series bold
29060  1.0 
29061 \series default
29062 par une autre valeur.
29063  Si vous utilisez cette dernière méthode, votre facteur sera utilisé de
29064  façon implicite quand  
29065 \series bold
29066
29067 \backslash
29068 FigBesBeg
29069 \series default
29070  est utilisé sans argument.
29071  Pour le tableau
29072 \begin_inset space ~
29073 \end_inset
29074
29075
29076 \begin_inset CommandInset ref
29077 LatexCommand ref
29078 reference "tab:cap-beside-tab-wider"
29079
29080 \end_inset
29081
29082  on a utilisé 5 comme facteur.
29083 \end_layout
29084
29085 \begin_layout Standard
29086
29087 \lang english
29088 \begin_inset Note Greyedout
29089 status open
29090
29091 \begin_layout Plain Layout
29092
29093 \series bold
29094 Note:
29095 \series default
29096  Pour les flottants qui ont leur légende sur le côté, vous ne pouvez pas
29097  utiliser l'option de placement, 
29098 \family sans
29099 Ici
29100 \begin_inset space ~
29101 \end_inset
29102
29103 à
29104 \begin_inset space ~
29105 \end_inset
29106
29107 tout
29108 \begin_inset space ~
29109 \end_inset
29110
29111 prix
29112 \family default
29113  parce qu'elle n'est pas gérée par 
29114 \series bold
29115 sidecap
29116 \series default
29117 .
29118 \end_layout
29119
29120 \end_inset
29121
29122
29123 \end_layout
29124
29125 \begin_layout Standard
29126 \begin_inset VSpace medskip
29127 \end_inset
29128
29129 Pour plus d'information sur le paquetage 
29130 \series bold
29131 sidecap
29132 \series default
29133  nous vous renvoyons à sa documentation 
29134 \begin_inset CommandInset citation
29135 LatexCommand cite
29136 key "sidecap"
29137
29138 \end_inset
29139
29140 .
29141 \end_layout
29142
29143 \begin_layout Standard
29144 \begin_inset Note Greyedout
29145 status open
29146
29147 \begin_layout Plain Layout
29148
29149 \series bold
29150 Note:
29151 \series default
29152  Le paquetage LaTeX 
29153 \series bold
29154 hypcap
29155 \series default
29156
29157 \begin_inset Index idx
29158 status collapsed
29159
29160 \begin_layout Plain Layout
29161 Paquetages LaTeX ! hypcap
29162 \end_layout
29163
29164 \end_inset
29165
29166 , qui est décrit dans la section
29167 \begin_inset space ~
29168 \end_inset
29169
29170
29171 \begin_inset CommandInset ref
29172 LatexCommand ref
29173 reference "sub:Reference-Position"
29174
29175 \end_inset
29176
29177 , n'a pas d'effet sur les flottants avec une légende placée à côté.
29178 \end_layout
29179
29180 \end_inset
29181
29182
29183 \end_layout
29184
29185 \begin_layout Standard
29186 \begin_inset ERT
29187 status collapsed
29188
29189 \begin_layout Plain Layout
29190
29191
29192 \backslash
29193 FigBesBeg 
29194 \end_layout
29195
29196 \end_inset
29197
29198
29199 \end_layout
29200
29201 \begin_layout Standard
29202 \begin_inset Float figure
29203 wide false
29204 sideways false
29205 status open
29206
29207 \begin_layout Plain Layout
29208 \begin_inset Graphics
29209         filename ../clipart/escher-lsd.eps
29210         scale 75
29211         scaleBeforeRotation
29212
29213 \end_inset
29214
29215
29216 \end_layout
29217
29218 \begin_layout Plain Layout
29219 \begin_inset Caption Standard
29220
29221 \begin_layout Plain Layout
29222 \begin_inset CommandInset label
29223 LatexCommand label
29224 name "fig:legende-a-coté-fig"
29225
29226 \end_inset
29227
29228 Une légende à côté d'une figure.
29229 \end_layout
29230
29231 \end_inset
29232
29233
29234 \end_layout
29235
29236 \end_inset
29237
29238
29239 \end_layout
29240
29241 \begin_layout Standard
29242 \begin_inset ERT
29243 status collapsed
29244
29245 \begin_layout Plain Layout
29246
29247
29248 \backslash
29249 FigBesEnd
29250 \end_layout
29251
29252 \end_inset
29253
29254
29255 \end_layout
29256
29257 \begin_layout Standard
29258 \begin_inset ERT
29259 status collapsed
29260
29261 \begin_layout Plain Layout
29262
29263
29264 \backslash
29265 TabBesBeg 
29266 \end_layout
29267
29268 \end_inset
29269
29270
29271 \end_layout
29272
29273 \begin_layout Standard
29274 \begin_inset Float table
29275 wide false
29276 sideways false
29277 status open
29278
29279 \begin_layout Plain Layout
29280 \begin_inset Caption Standard
29281
29282 \begin_layout Plain Layout
29283 \begin_inset CommandInset label
29284 LatexCommand label
29285 name "tab:legende-à-coté-tableau"
29286
29287 \end_inset
29288
29289 Une légende à côté d'un tableau.
29290 \end_layout
29291
29292 \end_inset
29293
29294
29295 \end_layout
29296
29297 \begin_layout Plain Layout
29298 \begin_inset Tabular
29299 <lyxtabular version="3" rows="4" columns="5">
29300 <features rotate="0" tabularvalignment="middle">
29301 <column alignment="center" valignment="top" width="0">
29302 <column alignment="center" valignment="top" width="0">
29303 <column alignment="center" valignment="top" width="0">
29304 <column alignment="center" valignment="top" width="0">
29305 <column alignment="center" valignment="top" width="0">
29306 <row>
29307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29308 \begin_inset Text
29309
29310 \begin_layout Plain Layout
29311 a
29312 \end_layout
29313
29314 \end_inset
29315 </cell>
29316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29317 \begin_inset Text
29318
29319 \begin_layout Plain Layout
29320
29321 \end_layout
29322
29323 \end_inset
29324 </cell>
29325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29326 \begin_inset Text
29327
29328 \begin_layout Plain Layout
29329 b
29330 \end_layout
29331
29332 \end_inset
29333 </cell>
29334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29335 \begin_inset Text
29336
29337 \begin_layout Plain Layout
29338
29339 \end_layout
29340
29341 \end_inset
29342 </cell>
29343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29344 \begin_inset Text
29345
29346 \begin_layout Plain Layout
29347 c
29348 \end_layout
29349
29350 \end_inset
29351 </cell>
29352 </row>
29353 <row>
29354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29355 \begin_inset Text
29356
29357 \begin_layout Plain Layout
29358
29359 \end_layout
29360
29361 \end_inset
29362 </cell>
29363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29364 \begin_inset Text
29365
29366 \begin_layout Plain Layout
29367 d
29368 \end_layout
29369
29370 \end_inset
29371 </cell>
29372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29373 \begin_inset Text
29374
29375 \begin_layout Plain Layout
29376
29377 \end_layout
29378
29379 \end_inset
29380 </cell>
29381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29382 \begin_inset Text
29383
29384 \begin_layout Plain Layout
29385 e
29386 \end_layout
29387
29388 \end_inset
29389 </cell>
29390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29391 \begin_inset Text
29392
29393 \begin_layout Plain Layout
29394
29395 \end_layout
29396
29397 \end_inset
29398 </cell>
29399 </row>
29400 <row>
29401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29402 \begin_inset Text
29403
29404 \begin_layout Plain Layout
29405 f
29406 \end_layout
29407
29408 \end_inset
29409 </cell>
29410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29411 \begin_inset Text
29412
29413 \begin_layout Plain Layout
29414
29415 \end_layout
29416
29417 \end_inset
29418 </cell>
29419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29420 \begin_inset Text
29421
29422 \begin_layout Plain Layout
29423 g
29424 \end_layout
29425
29426 \end_inset
29427 </cell>
29428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29429 \begin_inset Text
29430
29431 \begin_layout Plain Layout
29432
29433 \end_layout
29434
29435 \end_inset
29436 </cell>
29437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29438 \begin_inset Text
29439
29440 \begin_layout Plain Layout
29441 h
29442 \end_layout
29443
29444 \end_inset
29445 </cell>
29446 </row>
29447 <row>
29448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29449 \begin_inset Text
29450
29451 \begin_layout Plain Layout
29452
29453 \end_layout
29454
29455 \end_inset
29456 </cell>
29457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29458 \begin_inset Text
29459
29460 \begin_layout Plain Layout
29461 i
29462 \end_layout
29463
29464 \end_inset
29465 </cell>
29466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29467 \begin_inset Text
29468
29469 \begin_layout Plain Layout
29470
29471 \end_layout
29472
29473 \end_inset
29474 </cell>
29475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29476 \begin_inset Text
29477
29478 \begin_layout Plain Layout
29479 j
29480 \end_layout
29481
29482 \end_inset
29483 </cell>
29484 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
29485 \begin_inset Text
29486
29487 \begin_layout Plain Layout
29488
29489 \end_layout
29490
29491 \end_inset
29492 </cell>
29493 </row>
29494 </lyxtabular>
29495
29496 \end_inset
29497
29498
29499 \end_layout
29500
29501 \end_inset
29502
29503
29504 \end_layout
29505
29506 \begin_layout Standard
29507 \begin_inset ERT
29508 status collapsed
29509
29510 \begin_layout Plain Layout
29511
29512
29513 \backslash
29514 TabBesEnd
29515 \end_layout
29516
29517 \end_inset
29518
29519
29520 \end_layout
29521
29522 \begin_layout Standard
29523 \begin_inset ERT
29524 status collapsed
29525
29526 \begin_layout Plain Layout
29527
29528
29529 \backslash
29530 sidecaptionvpos{figure}{c}
29531 \end_layout
29532
29533 \end_inset
29534
29535
29536 \begin_inset Float figure
29537 wide false
29538 sideways false
29539 status open
29540
29541 \begin_layout Plain Layout
29542 \begin_inset Graphics
29543         filename ../clipart/escher-lsd.eps
29544         scale 75
29545         scaleBeforeRotation
29546
29547 \end_inset
29548
29549
29550 \end_layout
29551
29552 \begin_layout Plain Layout
29553 \begin_inset Caption Standard
29554
29555 \begin_layout Plain Layout
29556 \begin_inset CommandInset label
29557 LatexCommand label
29558 name "fig:legende-à-coté-fig-2"
29559
29560 \end_inset
29561
29562 Une légende centrée verticalement à côté d'une figure.
29563 \end_layout
29564
29565 \end_inset
29566
29567
29568 \end_layout
29569
29570 \end_inset
29571
29572
29573 \end_layout
29574
29575 \begin_layout Standard
29576 \begin_inset ERT
29577 status collapsed
29578
29579 \begin_layout Plain Layout
29580
29581
29582 \backslash
29583 FigBesEnd
29584 \end_layout
29585
29586 \end_inset
29587
29588
29589 \end_layout
29590
29591 \begin_layout Standard
29592 \begin_inset ERT
29593 status collapsed
29594
29595 \begin_layout Plain Layout
29596
29597
29598 \backslash
29599 TabBesBeg[5]
29600 \end_layout
29601
29602 \end_inset
29603
29604
29605 \end_layout
29606
29607 \begin_layout Standard
29608 \begin_inset Float table
29609 wide false
29610 sideways false
29611 status open
29612
29613 \begin_layout Plain Layout
29614 \begin_inset Caption Standard
29615
29616 \begin_layout Plain Layout
29617
29618 \lang english
29619 \begin_inset CommandInset label
29620 LatexCommand label
29621 name "tab:cap-beside-tab-wider"
29622
29623 \end_inset
29624
29625 This is a caption is wider than the one in
29626 \lang french
29627  tableau
29628 \begin_inset space ~
29629 \end_inset
29630
29631
29632 \begin_inset CommandInset ref
29633 LatexCommand ref
29634 reference "tab:legende-à-coté-tableau"
29635
29636 \end_inset
29637
29638 .
29639 \end_layout
29640
29641 \end_inset
29642
29643
29644 \end_layout
29645
29646 \begin_layout Plain Layout
29647 \begin_inset Tabular
29648 <lyxtabular version="3" rows="4" columns="5">
29649 <features rotate="0" tabularvalignment="middle">
29650 <column alignment="center" valignment="top" width="0">
29651 <column alignment="center" valignment="top" width="0">
29652 <column alignment="center" valignment="top" width="0">
29653 <column alignment="center" valignment="top" width="0">
29654 <column alignment="center" valignment="top" width="0">
29655 <row>
29656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29657 \begin_inset Text
29658
29659 \begin_layout Plain Layout
29660 a
29661 \end_layout
29662
29663 \end_inset
29664 </cell>
29665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29666 \begin_inset Text
29667
29668 \begin_layout Plain Layout
29669
29670 \end_layout
29671
29672 \end_inset
29673 </cell>
29674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29675 \begin_inset Text
29676
29677 \begin_layout Plain Layout
29678 b
29679 \end_layout
29680
29681 \end_inset
29682 </cell>
29683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29684 \begin_inset Text
29685
29686 \begin_layout Plain Layout
29687
29688 \end_layout
29689
29690 \end_inset
29691 </cell>
29692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29693 \begin_inset Text
29694
29695 \begin_layout Plain Layout
29696 c
29697 \end_layout
29698
29699 \end_inset
29700 </cell>
29701 </row>
29702 <row>
29703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29704 \begin_inset Text
29705
29706 \begin_layout Plain Layout
29707
29708 \end_layout
29709
29710 \end_inset
29711 </cell>
29712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29713 \begin_inset Text
29714
29715 \begin_layout Plain Layout
29716 d
29717 \end_layout
29718
29719 \end_inset
29720 </cell>
29721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29722 \begin_inset Text
29723
29724 \begin_layout Plain Layout
29725
29726 \end_layout
29727
29728 \end_inset
29729 </cell>
29730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29731 \begin_inset Text
29732
29733 \begin_layout Plain Layout
29734 e
29735 \end_layout
29736
29737 \end_inset
29738 </cell>
29739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29740 \begin_inset Text
29741
29742 \begin_layout Plain Layout
29743
29744 \end_layout
29745
29746 \end_inset
29747 </cell>
29748 </row>
29749 <row>
29750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29751 \begin_inset Text
29752
29753 \begin_layout Plain Layout
29754 f
29755 \end_layout
29756
29757 \end_inset
29758 </cell>
29759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29760 \begin_inset Text
29761
29762 \begin_layout Plain Layout
29763
29764 \end_layout
29765
29766 \end_inset
29767 </cell>
29768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29769 \begin_inset Text
29770
29771 \begin_layout Plain Layout
29772 g
29773 \end_layout
29774
29775 \end_inset
29776 </cell>
29777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
29778 \begin_inset Text
29779
29780 \begin_layout Plain Layout
29781
29782 \end_layout
29783
29784 \end_inset
29785 </cell>
29786 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
29787 \begin_inset Text
29788
29789 \begin_layout Plain Layout
29790 h
29791 \end_layout
29792
29793 \end_inset
29794 </cell>
29795 </row>
29796 <row>
29797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29798 \begin_inset Text
29799
29800 \begin_layout Plain Layout
29801
29802 \end_layout
29803
29804 \end_inset
29805 </cell>
29806 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29807 \begin_inset Text
29808
29809 \begin_layout Plain Layout
29810 i
29811 \end_layout
29812
29813 \end_inset
29814 </cell>
29815 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29816 \begin_inset Text
29817
29818 \begin_layout Plain Layout
29819
29820 \end_layout
29821
29822 \end_inset
29823 </cell>
29824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
29825 \begin_inset Text
29826
29827 \begin_layout Plain Layout
29828 j
29829 \end_layout
29830
29831 \end_inset
29832 </cell>
29833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
29834 \begin_inset Text
29835
29836 \begin_layout Plain Layout
29837
29838 \end_layout
29839
29840 \end_inset
29841 </cell>
29842 </row>
29843 </lyxtabular>
29844
29845 \end_inset
29846
29847
29848 \end_layout
29849
29850 \end_inset
29851
29852
29853 \end_layout
29854
29855 \begin_layout Standard
29856 \begin_inset ERT
29857 status collapsed
29858
29859 \begin_layout Plain Layout
29860
29861
29862 \backslash
29863 TabBesEnd
29864 \end_layout
29865
29866 \end_inset
29867
29868
29869 \end_layout
29870
29871 \begin_layout Standard
29872 \begin_inset ERT
29873 status collapsed
29874
29875 \begin_layout Plain Layout
29876
29877
29878 \backslash
29879 else
29880 \end_layout
29881
29882 \end_inset
29883
29884
29885 \begin_inset Note Note
29886 status open
29887
29888 \begin_layout Plain Layout
29889 Ce qui suit sera affiché si le paquetage LaTeX 
29890 \series bold
29891 sidecap
29892 \series default
29893  n'est pas installé :
29894 \end_layout
29895
29896 \end_inset
29897
29898
29899 \end_layout
29900
29901 \begin_layout Standard
29902 Vous devez installer le paquetage LaTeX 
29903 \series bold
29904 sidecap
29905 \series default
29906  pour voir la suite de cette section dans la sortie imprimée.
29907 \end_layout
29908
29909 \begin_layout Standard
29910 \begin_inset ERT
29911 status collapsed
29912
29913 \begin_layout Plain Layout
29914
29915
29916 \backslash
29917 fi
29918 \end_layout
29919
29920 \end_inset
29921
29922
29923 \end_layout
29924
29925 \begin_layout Section
29926 Les listes de flottants
29927 \begin_inset Index idx
29928 status collapsed
29929
29930 \begin_layout Plain Layout
29931 Flottants ! Listes de Flottants
29932 \end_layout
29933
29934 \end_inset
29935
29936
29937 \end_layout
29938
29939 \begin_layout Standard
29940 De la même façon que la table des matières fait la liste des sections du
29941  document, il y a des listes pour tous les types de flottants, comme par
29942  exemple pour les figures du document.
29943  Vous pouvez les insérer en utilisant le menu 
29944 \family sans
29945 Insertion\SpecialChar \menuseparator
29946 Listes
29947 \begin_inset space ~
29948 \end_inset
29949
29950 &
29951 \begin_inset space ~
29952 \end_inset
29953
29954 TdM
29955 \family default
29956 .
29957 \end_layout
29958
29959 \begin_layout Standard
29960 Les entrées de la liste sont la légende du flottant ou éventuellement le
29961  titre court, le numéro du flottant, et le numéro de la page où le flottant
29962  apparaît dans le document.
29963 \end_layout
29964
29965 \begin_layout Standard
29966 Vous trouverez à la fin de ce document une liste des figures et une liste
29967  des tableaux.
29968 \end_layout
29969
29970 \begin_layout Chapter
29971 Notes
29972 \end_layout
29973
29974 \begin_layout Section
29975 Les notes de LyX
29976 \begin_inset Index idx
29977 status collapsed
29978
29979 \begin_layout Plain Layout
29980 Notes ! Notes LyX 
29981 \end_layout
29982
29983 \end_inset
29984
29985
29986 \end_layout
29987
29988 \begin_layout Standard
29989 On peut insérer une note en utilisant le bouton 
29990 \begin_inset Info
29991 type  "icon"
29992 arg   "note-insert"
29993 \end_inset
29994
29995  de la barre d'outils ou avec le menu 
29996 \family sans
29997 Insertion\SpecialChar \menuseparator
29998 Note
29999 \family default
30000 .
30001  Il y a trois types de notes :
30002 \end_layout
30003
30004 \begin_layout Description
30005 Note
30006 \begin_inset space ~
30007 \end_inset
30008
30009 LyX Ce type de note est à usage interne et n'apparaîtra pas sur la sortie
30010  finale.
30011  La boîte de cette note ressemble à ceci :
30012 \begin_inset Newline newline
30013 \end_inset
30014
30015
30016 \begin_inset Newline newline
30017 \end_inset
30018
30019
30020 \begin_inset Graphics
30021         filename clipart/LyXNoteImageQt4.png
30022         display false
30023         scale 65
30024         scaleBeforeRotation
30025
30026 \end_inset
30027
30028  
30029 \begin_inset Note Note
30030 status open
30031
30032 \begin_layout Plain Layout
30033 Le texte de cette note n'apparaîtra pas à l'impression.
30034 \end_layout
30035
30036 \end_inset
30037
30038
30039 \end_layout
30040
30041 \begin_layout Description
30042 Commentaire Ce type de note n'apparaît pas non plus à l'impression, mais
30043  il est inséré comme un commentaire LaTeX quand vous exportez votre document
30044  vers un fichier au format LaTeX avec le menu 
30045 \family sans
30046 Fichier\SpecialChar \menuseparator
30047 Exporter\SpecialChar \menuseparator
30048 LaTeX (pdflatex) / (plain)
30049 \family default
30050 .
30051  La boîte de cette note ressemble à ceci :
30052 \begin_inset Newline newline
30053 \end_inset
30054
30055
30056 \begin_inset Newline newline
30057 \end_inset
30058
30059
30060 \begin_inset Graphics
30061         filename clipart/CommentNoteImageQt4.png
30062         display false
30063         scale 55
30064         scaleBeforeRotation
30065
30066 \end_inset
30067
30068  
30069 \begin_inset Note Comment
30070 status open
30071
30072 \begin_layout Plain Layout
30073 Le texte de cette note n'apparaîtra que comme commentaire dans un fichier
30074  LaTeX.
30075 \end_layout
30076
30077 \end_inset
30078
30079
30080 \end_layout
30081
30082 \begin_layout Description
30083 Grisée Ce type de note apparaît à l'impression sous forme de texte grisé.
30084  La boîte de cette note ressemble à ceci :
30085 \begin_inset Newline newline
30086 \end_inset
30087
30088
30089 \begin_inset Newline newline
30090 \end_inset
30091
30092
30093 \begin_inset Graphics
30094         filename clipart/GreyedOutNoteImageQt4.png
30095         lyxscale 80
30096         display false
30097         scale 55
30098         scaleBeforeRotation
30099
30100 \end_inset
30101
30102
30103 \begin_inset Newline newline
30104 \end_inset
30105
30106
30107 \begin_inset ERT
30108 status collapsed
30109
30110 \begin_layout Plain Layout
30111
30112
30113 \backslash
30114 renewenvironment{lyxgreyedout}
30115 \end_layout
30116
30117 \begin_layout Plain Layout
30118
30119 {
30120 \backslash
30121 textcolor[gray]{0.8}
30122 \backslash
30123 bgroup}{
30124 \backslash
30125 egroup}
30126 \end_layout
30127
30128 \end_inset
30129
30130
30131 \begin_inset Note Greyedout
30132 status open
30133
30134 \begin_layout Plain Layout
30135 Le texte
30136 \begin_inset Foot
30137 status collapsed
30138
30139 \begin_layout Plain Layout
30140 Ceci est un exemple de note de bas de page à l'intérieur d'une note en texte
30141  grisé.
30142  
30143 \end_layout
30144
30145 \end_inset
30146
30147  de ce commentaire apparaîtra à l'impression sous forme de texte grisé.
30148 \end_layout
30149
30150 \end_inset
30151
30152
30153 \begin_inset ERT
30154 status collapsed
30155
30156 \begin_layout Plain Layout
30157
30158
30159 \backslash
30160 renewenvironment{lyxgreyedout}
30161 \end_layout
30162
30163 \begin_layout Plain Layout
30164
30165 {
30166 \backslash
30167 textcolor{blue}
30168 \backslash
30169 bgroup}{
30170 \backslash
30171 egroup}
30172 \end_layout
30173
30174 \end_inset
30175
30176
30177 \begin_inset Note Note
30178 status collapsed
30179
30180 \begin_layout Plain Layout
30181 Ici, on a redéfini la note grisée pour qu'elle apparaisse avec la définition
30182  originale qu'elle a dans LyX.
30183  En effet, dans ce document les notes grisées sont redéfinies dans le préambule,
30184  comme c'est décrit plus loin, pour apparaître avec le texte en bleu.
30185 \end_layout
30186
30187 \end_inset
30188
30189
30190 \begin_inset Newline newline
30191 \end_inset
30192
30193
30194 \begin_inset Newline newline
30195 \end_inset
30196
30197 Comme vous pouvez le voir dans l'exemple, la première ligne des notes grisées
30198  est un peu décalée et ce type de notes peut avoir des notes de bas de page.
30199 \end_layout
30200
30201 \begin_layout Standard
30202 \begin_inset VSpace bigskip
30203 \end_inset
30204
30205 Quand vous utilisez le bouton 
30206 \begin_inset Info
30207 type  "icon"
30208 arg   "note-insert"
30209 \end_inset
30210
30211  de la barre d'outils, vous insérez une 
30212 \family sans
30213 Note
30214 \begin_inset space ~
30215 \end_inset
30216
30217 LyX
30218 \family default
30219 .
30220  
30221 \lang english
30222 You can switch between the three note types by right-clicking on the note-box.
30223
30224 \lang french
30225  Si vous voulez transformer une portion de texte existant en note, sélectionnez-
30226 la et cliquez sur le bouton d'insertion de note.
30227  Pour retransformer une note en texte, appuyez sur la touche 
30228 \family sans
30229 backspace
30230 \family default
30231  quand le curseur est au tout début de la note ou appuyez sur la touche
30232  
30233 \family sans
30234 Suppr.
30235
30236 \family default
30237  quand le curseur se trouve à la fin de la note.
30238 \end_layout
30239
30240 \begin_layout Standard
30241 \begin_inset VSpace bigskip
30242 \end_inset
30243
30244
30245 \end_layout
30246
30247 \begin_layout Standard
30248 Vous pouvez changer la couleur des notes grisées dans le menu 
30249 \family sans
30250 Document\SpecialChar \menuseparator
30251 Paramètres\SpecialChar \menuseparator
30252 Couleurs
30253 \family default
30254 .
30255 \end_layout
30256
30257 \begin_layout Section
30258 Notes en bas de page
30259 \begin_inset CommandInset label
30260 LatexCommand label
30261 name "sec:Notes-bas-de-page"
30262
30263 \end_inset
30264
30265
30266 \begin_inset Index idx
30267 status collapsed
30268
30269 \begin_layout Plain Layout
30270 Notes ! Notes de bas de page
30271 \end_layout
30272
30273 \end_inset
30274
30275
30276 \begin_inset Index idx
30277 status collapsed
30278
30279 \begin_layout Plain Layout
30280 Notes de bas de page
30281 \end_layout
30282
30283 \end_inset
30284
30285
30286 \end_layout
30287
30288 \begin_layout Standard
30289 Les notes en bas de page peuvent être insérées soit en utilisant le bouton
30290  
30291 \begin_inset Info
30292 type  "icon"
30293 arg   "footnote-insert"
30294 \end_inset
30295
30296  de la barre d'outils, soit en utilisant le menu 
30297 \family sans
30298 Insertion\SpecialChar \menuseparator
30299 Note
30300 \begin_inset space ~
30301 \end_inset
30302
30303 en
30304 \begin_inset space ~
30305 \end_inset
30306
30307 Bas
30308 \begin_inset space ~
30309 \end_inset
30310
30311 de
30312 \begin_inset space ~
30313 \end_inset
30314
30315 Page
30316 \family default
30317 .
30318  Vous voyez alors apparaître dans votre texte une boîte grise avec une étiquette
30319  rouge 
30320 \begin_inset Quotes fld
30321 \end_inset
30322
30323 bas
30324 \begin_inset Quotes frd
30325 \end_inset
30326
30327  qui ressemble à ceci : 
30328 \begin_inset Graphics
30329         filename clipart/footnoteQt4.png
30330         scale 80
30331         scaleBeforeRotation
30332
30333 \end_inset
30334
30335  Vous pouvez y entrer votre texte.
30336  Si vous voulez transformer du texte déjà existant en note en bas de page,
30337  sélectionnez-le et cliquez sur le bouton 
30338 \family sans
30339 Note
30340 \begin_inset space ~
30341 \end_inset
30342
30343 en
30344 \begin_inset space ~
30345 \end_inset
30346
30347 Bas
30348 \begin_inset space ~
30349 \end_inset
30350
30351 de
30352 \begin_inset space ~
30353 \end_inset
30354
30355 Page
30356 \family default
30357  de la barre d'outils.
30358  Pour retransformer une note de bas de page en texte, appuyez sur la touche
30359  
30360 \family sans
30361 Backspace
30362 \family default
30363  quand le curseur est au tout début de la note ou appuyez sur la touche
30364  
30365 \family sans
30366 Suppr.
30367
30368 \family default
30369  quand le curseur se trouve à la fin de la note.
30370 \end_layout
30371
30372 \begin_layout Standard
30373 Voici un exemple de note en bas de page:
30374 \begin_inset Foot
30375 status open
30376
30377 \begin_layout Plain Layout
30378 \begin_inset CommandInset label
30379 LatexCommand label
30380 name "fn:Note-en-bas"
30381
30382 \end_inset
30383
30384 Ceci est un exemple de note en bas de page.
30385 \end_layout
30386
30387 \end_inset
30388
30389
30390 \begin_inset ERT
30391 status collapsed
30392
30393 \begin_layout Plain Layout
30394
30395
30396 \backslash
30397 newcounter{MyRepeatFoot}
30398 \end_layout
30399
30400 \begin_layout Plain Layout
30401
30402
30403 \backslash
30404 setcounter{MyRepeatFoot}{
30405 \backslash
30406 thefootnote}
30407 \end_layout
30408
30409 \end_inset
30410
30411
30412 \end_layout
30413
30414 \begin_layout Standard
30415 La note de bas de page apparaîtra dans la sortie imprimée sous la forme
30416  d'un numéro en exposant à la position qu'occupe dans le texte la boîte
30417  de note.
30418  Le texte de la note est placé en bas de la page courante.
30419  Le numéro de note est calculé par LaTeX, et les numéros se suivent.
30420  Selon votre classe de document les numéros de notes pourront être réinitialisés
30421  à chaque nouveau chapitre.
30422 \end_layout
30423
30424 \begin_layout Standard
30425 On peut faire référence à une note en bas de page comme on le fait avec
30426  les flottants : Insérez une étiquette dans la note et faites une référence
30427  croisée vers cette étiquette comme c'est décrit dans la
30428 \begin_inset space ~
30429 \end_inset
30430
30431
30432 \begin_inset CommandInset ref
30433 LatexCommand ref
30434 reference "sec:Referencer-les-Flottants"
30435
30436 \end_inset
30437
30438 .
30439 \begin_inset Newline newline
30440 \end_inset
30441
30442 Voici une référence à une note de bas de page :
30443 \begin_inset space ~
30444 \end_inset
30445
30446
30447 \begin_inset CommandInset ref
30448 LatexCommand ref
30449 reference "fn:Note-en-bas"
30450
30451 \end_inset
30452
30453 .
30454 \end_layout
30455
30456 \begin_layout Standard
30457 \begin_inset VSpace defskip
30458 \end_inset
30459
30460
30461 \end_layout
30462
30463 \begin_layout Standard
30464 Le notes de bas de page se trouvant dans des tableaux ne sont pas imprimées
30465  par LaTeX pour des raisons techniques.
30466  Il existe pourtant une autre méthode pour les imprimer : on insère la commande
30467  
30468 \series bold
30469
30470 \backslash
30471 footnotemark{}
30472 \series default
30473  en code TeX à la place de la note de bas de page.
30474  Le texte de la note est mis en argument de la commande TeX 
30475 \series bold
30476
30477 \backslash
30478 footnotetext
30479 \series default
30480  après le tableau.
30481 \begin_inset Newline newline
30482 \end_inset
30483
30484 C'est ce qui a été fait pour le tableau qui suit avec la commande
30485 \end_layout
30486
30487 \begin_layout Standard
30488
30489 \series bold
30490
30491 \backslash
30492 footnotetext{
30493 \series default
30494 Note de bas de page de tableau imprimée.
30495 \series bold
30496 }
30497 \end_layout
30498
30499 \begin_layout Standard
30500
30501 \lang english
30502 \begin_inset Tabular
30503 <lyxtabular version="3" rows="2" columns="1">
30504 <features rotate="0" tabularvalignment="middle">
30505 <column alignment="center" valignment="top" width="0">
30506 <row>
30507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30508 \begin_inset Text
30509
30510 \begin_layout Plain Layout
30511 Un exemple de texte
30512 \begin_inset Foot
30513 status open
30514
30515 \begin_layout Plain Layout
30516 Cette note ne sera pas imprimée
30517 \begin_inset space ~
30518 \end_inset
30519
30520 !
30521 \end_layout
30522
30523 \end_inset
30524
30525
30526 \end_layout
30527
30528 \end_inset
30529 </cell>
30530 </row>
30531 <row>
30532 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
30533 \begin_inset Text
30534
30535 \begin_layout Plain Layout
30536 Un autre exemple de texte
30537 \begin_inset ERT
30538 status collapsed
30539
30540 \begin_layout Plain Layout
30541
30542
30543 \backslash
30544 footnotemark{}
30545 \end_layout
30546
30547 \end_inset
30548
30549
30550 \end_layout
30551
30552 \end_inset
30553 </cell>
30554 </row>
30555 </lyxtabular>
30556
30557 \end_inset
30558
30559
30560 \begin_inset ERT
30561 status collapsed
30562
30563 \begin_layout Plain Layout
30564
30565
30566 \backslash
30567 footnotetext{
30568 \end_layout
30569
30570 \end_inset
30571
30572
30573 \lang french
30574 Note de bas de page de tableau imprimée.
30575 \lang english
30576
30577 \begin_inset ERT
30578 status collapsed
30579
30580 \begin_layout Plain Layout
30581
30582 }
30583 \end_layout
30584
30585 \end_inset
30586
30587
30588 \end_layout
30589
30590 \begin_layout Standard
30591 Les notes de bas de page dans des tableaux longs sont décrites dans la section
30592 \begin_inset space ~
30593 \end_inset
30594
30595
30596 \begin_inset CommandInset ref
30597 LatexCommand ref
30598 reference "sub:Notes-dans-tableau-long"
30599
30600 \end_inset
30601
30602 .
30603 \end_layout
30604
30605 \begin_layout Standard
30606 Les notes de bas de page qui se trouvent à l'intérieur d'une minipage sont
30607  imprimées, mais à l'intérieur de la minipage et avec une numérotation différent
30608 e, vu que la minipage est considérée comme une page se trouvant dans une
30609  autre page.
30610  Pour plus d'information sur les minipages, voyez la section
30611 \begin_inset space ~
30612 \end_inset
30613
30614
30615 \begin_inset CommandInset ref
30616 LatexCommand ref
30617 reference "sec:Minipages"
30618
30619 \end_inset
30620
30621 .
30622  Pour avoir une note de bas de page à l'intérieur d'une minipage et qui
30623  s'imprime en bas de page comme une note normale, on doit aussi utiliser
30624  la méthode utilisant les commandes 
30625 \series bold
30626
30627 \backslash
30628 footnotemark{}
30629 \series default
30630  et 
30631 \series bold
30632
30633 \backslash
30634 footnotetext
30635 \series default
30636 .
30637 \end_layout
30638
30639 \begin_layout Standard
30640 \begin_inset Box Frameless
30641 position "t"
30642 hor_pos "c"
30643 has_inner_box 1
30644 inner_pos "t"
30645 use_parbox 0
30646 use_makebox 0
30647 width "100col%"
30648 special "none"
30649 height "1in"
30650 height_special "totalheight"
30651 status open
30652
30653 \begin_layout Plain Layout
30654 Un exemple de texte dans une minipage.
30655 \begin_inset Foot
30656 status open
30657
30658 \begin_layout Plain Layout
30659 Note de bas de page dans la minipage.
30660 \end_layout
30661
30662 \end_inset
30663
30664
30665 \end_layout
30666
30667 \begin_layout Plain Layout
30668 Un autre exemple de texte dans une minipage.
30669 \begin_inset ERT
30670 status collapsed
30671
30672 \begin_layout Plain Layout
30673
30674
30675 \backslash
30676 footnotemark{}
30677 \end_layout
30678
30679 \end_inset
30680
30681
30682 \end_layout
30683
30684 \end_inset
30685
30686
30687 \end_layout
30688
30689 \begin_layout Standard
30690 \begin_inset ERT
30691 status collapsed
30692
30693 \begin_layout Plain Layout
30694
30695
30696 \backslash
30697 footnotetext{
30698 \end_layout
30699
30700 \end_inset
30701
30702 Note de bas de page en dehors de la minipage.
30703 \begin_inset ERT
30704 status collapsed
30705
30706 \begin_layout Plain Layout
30707
30708 }
30709 \end_layout
30710
30711 \end_inset
30712
30713
30714 \end_layout
30715
30716 \begin_layout Standard
30717 \begin_inset VSpace defskip
30718 \end_inset
30719
30720
30721 \end_layout
30722
30723 \begin_layout Standard
30724 Pour faire référence plusieurs fois à la même note sans avoir à la dupliquer,
30725  utilisez la commande 
30726 \series bold
30727
30728 \backslash
30729 footnotemark[number]
30730 \series default
30731  en code TeX.
30732 \begin_inset Newline newline
30733 \end_inset
30734
30735 Comme vous ne connaissez pas le numéro de la note au moment où vous écrivez
30736  votre texte, vous devez enregistrer son numéro.
30737  Dans l'exemple de marque de note de bas de page suivant, ces commandes
30738  ont été insérées en code TeX après la note
30739 \begin_inset space ~
30740 \end_inset
30741
30742
30743 \begin_inset CommandInset ref
30744 LatexCommand ref
30745 reference "fn:Note-en-bas"
30746
30747 \end_inset
30748
30749  pour enregistrer son numéro
30750 \begin_inset space ~
30751 \end_inset
30752
30753 :
30754 \end_layout
30755
30756 \begin_layout Standard
30757
30758 \series bold
30759
30760 \backslash
30761 newcounter{MaNoteDupliquee}
30762 \begin_inset Newline newline
30763 \end_inset
30764
30765
30766 \backslash
30767 setcounter{MaNoteDupliquee}{
30768 \backslash
30769 thefootnote}
30770 \end_layout
30771
30772 \begin_layout Standard
30773 La note de bas de page a été créée avec la commande
30774 \begin_inset space ~
30775 \end_inset
30776
30777 :
30778 \end_layout
30779
30780 \begin_layout Standard
30781
30782 \series bold
30783
30784 \backslash
30785 footnotemark[
30786 \backslash
30787 MaNoteDupliquee]
30788 \end_layout
30789
30790 \begin_layout Standard
30791 Voici une note de bas de page dupliquée
30792 \begin_inset space ~
30793 \end_inset
30794
30795 :
30796 \begin_inset ERT
30797 status collapsed
30798
30799 \begin_layout Plain Layout
30800
30801
30802 \backslash
30803 footnotemark[
30804 \backslash
30805 theMyRepeatFoot]
30806 \end_layout
30807
30808 \end_inset
30809
30810
30811 \end_layout
30812
30813 \begin_layout Standard
30814 Si vous voulez dupliquer la note précédente, vous pouvez omettre l'enregistremen
30815 t du numéro de note et juste utiliser la commande suivante
30816 \end_layout
30817
30818 \begin_layout Standard
30819
30820 \series bold
30821
30822 \backslash
30823 footnotemark[
30824 \backslash
30825 thefootnote]
30826 \end_layout
30827
30828 \begin_layout Standard
30829 Voici une autre note de bas de page dupliquée
30830 \begin_inset space ~
30831 \end_inset
30832
30833 :
30834 \begin_inset ERT
30835 status collapsed
30836
30837 \begin_layout Plain Layout
30838
30839
30840 \backslash
30841 footnotemark[
30842 \backslash
30843 thefootnote]
30844 \end_layout
30845
30846 \end_inset
30847
30848
30849 \end_layout
30850
30851 \begin_layout Subsection
30852 Numérotation de notes de bas de page
30853 \begin_inset CommandInset label
30854 LatexCommand label
30855 name "sub:Numerotation-notes-bas-de-page"
30856
30857 \end_inset
30858
30859
30860 \begin_inset Index idx
30861 status collapsed
30862
30863 \begin_layout Plain Layout
30864 Notes de bas de page ! Numérotation
30865 \end_layout
30866
30867 \end_inset
30868
30869
30870 \end_layout
30871
30872 \begin_layout Standard
30873 Pour remettre les numéros de notes de bas de page à zéro après chaque section,
30874  ajoutez cette commande dans le préambule de votre document :
30875 \end_layout
30876
30877 \begin_layout Standard
30878
30879 \series bold
30880
30881 \backslash
30882 @addtoreset{footnote}{section}
30883 \end_layout
30884
30885 \begin_layout Standard
30886 \begin_inset VSpace bigskip
30887 \end_inset
30888
30889 La commande de préambule suivante change le style de numérotation des notes
30890  en petits chiffres romains :
30891 \end_layout
30892
30893 \begin_layout Standard
30894
30895 \series bold
30896
30897 \backslash
30898 renewcommand{
30899 \backslash
30900 thefootnote}{
30901 \backslash
30902 roman{footnote}}
30903 \end_layout
30904
30905 \begin_layout Standard
30906 \begin_inset ERT
30907 status collapsed
30908
30909 \begin_layout Plain Layout
30910
30911
30912 \backslash
30913 renewcommand{
30914 \backslash
30915 thefootnote}{
30916 \backslash
30917 roman{footnote}}
30918 \end_layout
30919
30920 \end_inset
30921
30922  Cette note de bas de page utilise une numérotation en chiffres romains
30923  :
30924 \begin_inset Foot
30925 status open
30926
30927 \begin_layout Plain Layout
30928 Ceci est un exemple de note de bas de page numérotée avec de petits chiffres
30929  romains.
30930 \end_layout
30931
30932 \end_inset
30933
30934
30935 \end_layout
30936
30937 \begin_layout Standard
30938 Pour mettre la numérotation en chiffres romains majuscules, remplacez dans
30939  la commande précédente 
30940 \series bold
30941
30942 \backslash
30943 roman
30944 \series default
30945  par 
30946 \series bold
30947
30948 \backslash
30949 Roman
30950 \series default
30951 .
30952  Pour numéroter les notes avec des lettres latines minuscules ou majuscules,
30953  utilisez respectivement soit 
30954 \series bold
30955
30956 \backslash
30957 Alph
30958 \series default
30959  soit 
30960 \series bold
30961
30962 \backslash
30963 alph
30964 \series default
30965 .
30966  Pour les 
30967 \begin_inset Quotes eld
30968 \end_inset
30969
30970 numéroter
30971 \begin_inset Quotes erd
30972 \end_inset
30973
30974  avec des symboles, utilisez 
30975 \series bold
30976
30977 \backslash
30978 fnsymbol
30979 \series default
30980 .
30981 \end_layout
30982
30983 \begin_layout Standard
30984 \begin_inset Note Greyedout
30985 status open
30986
30987 \begin_layout Plain Layout
30988
30989 \series bold
30990 Note:
30991 \series default
30992  Vous ne pouvez numéroter que 26 notes de bas de page avec des lettres latines,
30993  puisque cette numérotation est limitée à des lettres seules.
30994 \end_layout
30995
30996 \end_inset
30997
30998
30999 \begin_inset Newline newline
31000 \end_inset
31001
31002
31003 \begin_inset Note Greyedout
31004 status open
31005
31006 \begin_layout Plain Layout
31007
31008 \series bold
31009 Note:
31010 \series default
31011  Vous ne pouvez numéroter que 9 notes de bas de page avec des symboles.
31012 \end_layout
31013
31014 \end_inset
31015
31016
31017 \end_layout
31018
31019 \begin_layout Standard
31020 Pour revenir au style de numérotation implicite quand vous en avez changé,
31021  utilisez 
31022 \series bold
31023
31024 \backslash
31025 arabic
31026 \series default
31027  à la place de 
31028 \series bold
31029
31030 \backslash
31031 roman
31032 \series default
31033  dans la commande précédente.
31034 \begin_inset ERT
31035 status collapsed
31036
31037 \begin_layout Plain Layout
31038
31039
31040 \backslash
31041 renewcommand{
31042 \backslash
31043 thefootnote}{
31044 \backslash
31045 arabic{footnote}}
31046 \end_layout
31047
31048 \end_inset
31049
31050
31051 \end_layout
31052
31053 \begin_layout Standard
31054 \begin_inset VSpace bigskip
31055 \end_inset
31056
31057
31058 \end_layout
31059
31060 \begin_layout Standard
31061 Si vous voulez que vos notes de bas de pages soient numérotées en suivant
31062  le schéma 
31063 \begin_inset Quotes eld
31064 \end_inset
31065
31066 chapitre.note
31067 \begin_inset Quotes erd
31068 \end_inset
31069
31070 , ajoutez la commande suivante au préambule de votre document :
31071 \end_layout
31072
31073 \begin_layout Standard
31074
31075 \series bold
31076
31077 \backslash
31078 numberwithin{footnote}{chapter}
31079 \end_layout
31080
31081 \begin_layout Standard
31082 Pour pouvoir utiliser la commande 
31083 \series bold
31084
31085 \backslash
31086 numberwithin
31087 \series default
31088 , activez dans la rubrique 
31089 \family sans
31090 Options
31091 \begin_inset space ~
31092 \end_inset
31093
31094 des
31095 \begin_inset space ~
31096 \end_inset
31097
31098 Maths
31099 \family default
31100  dans les paramètres du document, l'option 
31101 \family sans
31102 Utiliser
31103 \begin_inset space ~
31104 \end_inset
31105
31106 le
31107 \begin_inset space ~
31108 \end_inset
31109
31110 paquetage
31111 \begin_inset space ~
31112 \end_inset
31113
31114 maths
31115 \begin_inset space ~
31116 \end_inset
31117
31118 AMS
31119 \family default
31120 .
31121 \end_layout
31122
31123 \begin_layout Standard
31124 \begin_inset ERT
31125 status collapsed
31126
31127 \begin_layout Plain Layout
31128
31129
31130 \backslash
31131 numberwithin{footnote}{chapter}
31132 \end_layout
31133
31134 \end_inset
31135
31136 Ceci est un autre exemple de note de bas de page:
31137 \series bold
31138
31139 \begin_inset Foot
31140 status open
31141
31142 \begin_layout Plain Layout
31143 Cette note est numérotée en suivant le schéma 
31144 \begin_inset Quotes fld
31145 \end_inset
31146
31147 chapitre.note
31148 \begin_inset Quotes frd
31149 \end_inset
31150
31151 .
31152 \end_layout
31153
31154 \end_inset
31155
31156
31157 \series default
31158
31159 \begin_inset ERT
31160 status collapsed
31161
31162 \begin_layout Plain Layout
31163
31164
31165 \backslash
31166 renewcommand{
31167 \backslash
31168 thefootnote}{
31169 \backslash
31170 arabic{footnote}}
31171 \end_layout
31172
31173 \end_inset
31174
31175
31176 \end_layout
31177
31178 \begin_layout Standard
31179 \begin_inset Note Greyedout
31180 status open
31181
31182 \begin_layout Plain Layout
31183
31184 \series bold
31185 Note:
31186 \series default
31187  
31188 \series bold
31189
31190 \backslash
31191 numberwithin
31192 \series default
31193  imprime toujours les numéros de notes en nombres arabes ; les redéfinitions
31194  précédentes ayant pour but d'avoir des numéros non arabes ne sont plus
31195  prises en compte.
31196  
31197 \end_layout
31198
31199 \end_inset
31200
31201
31202 \end_layout
31203
31204 \begin_layout Standard
31205 Donc pour avoir par exemple le schéma 
31206 \begin_inset Quotes eld
31207 \end_inset
31208
31209 chapitre.
31210 \backslash
31211 Roman{note}
31212 \begin_inset Quotes erd
31213 \end_inset
31214
31215 , utilisez la commande suivante plutôt que 
31216 \series bold
31217
31218 \backslash
31219 numberwithin
31220 \series default
31221  :
31222 \end_layout
31223
31224 \begin_layout Standard
31225
31226 \series bold
31227
31228 \backslash
31229 renewcommand{
31230 \backslash
31231 thefootnote}{
31232 \backslash
31233 thechapter.
31234 \backslash
31235 Roman{footnote}}
31236 \end_layout
31237
31238 \begin_layout Subsection
31239 Positionnement de notes de bas de page
31240 \begin_inset Index idx
31241 status collapsed
31242
31243 \begin_layout Plain Layout
31244 Notes de bas de page ! Positionnement
31245 \end_layout
31246
31247 \end_inset
31248
31249
31250 \end_layout
31251
31252 \begin_layout Standard
31253 Si vous avez plusieurs notes sur une même page, elle apparaissent sans espace
31254  vertical entre elles en bas de la page.
31255  Pour les rendre plus lisibles vous pouvez par exemple ajouter un espace
31256  de 1.5
31257 \begin_inset space \thinspace{}
31258 \end_inset
31259
31260 mm avec la commande suivante dans le préambule :
31261 \end_layout
31262
31263 \begin_layout Standard
31264
31265 \series bold
31266
31267 \backslash
31268 let
31269 \backslash
31270 myFoot
31271 \backslash
31272 footnote
31273 \begin_inset Newline newline
31274 \end_inset
31275
31276
31277 \backslash
31278 renewcommand{
31279 \backslash
31280 footnote}[1]{
31281 \backslash
31282 myFoot{#1
31283 \backslash
31284 vspace{1.5mm}}}
31285 \end_layout
31286
31287 \begin_layout Standard
31288 \begin_inset VSpace bigskip
31289 \end_inset
31290
31291 Dans un document à deux colonnes les notes de bas de page apparaissent en
31292  bas de chaque colonne, comme sur la Figure
31293 \begin_inset space ~
31294 \end_inset
31295
31296
31297 \begin_inset CommandInset ref
31298 LatexCommand ref
31299 reference "fig:Position-standard-note-bas-de-page"
31300
31301 \end_inset
31302
31303 .
31304  Si les notes ne doivent apparaître qu'en bas de la colonne de droite, comme
31305  sur la Figure
31306 \begin_inset space ~
31307 \end_inset
31308
31309
31310 \begin_inset CommandInset ref
31311 LatexCommand ref
31312 reference "fig:Position-note-avec-ftnright"
31313
31314 \end_inset
31315
31316 , utilisez le paquetage LaTeX 
31317 \series bold
31318 ftnright
31319 \series default
31320
31321 \begin_inset Index idx
31322 status collapsed
31323
31324 \begin_layout Plain Layout
31325 Paquetages LaTeX ! ftnright
31326 \end_layout
31327
31328 \end_inset
31329
31330  avec cette commande dans le préambule du document:
31331 \end_layout
31332
31333 \begin_layout Standard
31334
31335 \series bold
31336
31337 \backslash
31338 usepackage{ftnright}
31339 \end_layout
31340
31341 \begin_layout Standard
31342 \begin_inset Float figure
31343 placement !h
31344 wide false
31345 sideways false
31346 status open
31347
31348 \begin_layout Plain Layout
31349 \begin_inset ERT
31350 status collapsed
31351
31352 \begin_layout Plain Layout
31353
31354
31355 \backslash
31356 framebox{
31357 \end_layout
31358
31359 \end_inset
31360
31361
31362 \begin_inset Graphics
31363         filename ../clipart/without_fntright.pdf
31364         width 100col%
31365         scaleBeforeRotation
31366
31367 \end_inset
31368
31369
31370 \begin_inset ERT
31371 status collapsed
31372
31373 \begin_layout Plain Layout
31374
31375 }
31376 \end_layout
31377
31378 \end_inset
31379
31380
31381 \end_layout
31382
31383 \begin_layout Plain Layout
31384 \begin_inset Caption Standard
31385
31386 \begin_layout Plain Layout
31387 \begin_inset CommandInset label
31388 LatexCommand label
31389 name "fig:Position-standard-note-bas-de-page"
31390
31391 \end_inset
31392
31393 Positionnement standard des notes de bas de page dans un document à deux
31394  colonnes.
31395 \end_layout
31396
31397 \end_inset
31398
31399
31400 \end_layout
31401
31402 \end_inset
31403
31404
31405 \end_layout
31406
31407 \begin_layout Standard
31408 \begin_inset Float figure
31409 placement !h
31410 wide false
31411 sideways false
31412 status open
31413
31414 \begin_layout Plain Layout
31415 \begin_inset ERT
31416 status collapsed
31417
31418 \begin_layout Plain Layout
31419
31420
31421 \backslash
31422 framebox{
31423 \end_layout
31424
31425 \end_inset
31426
31427
31428 \begin_inset Graphics
31429         filename ../clipart/with_fntright.pdf
31430         width 100col%
31431         scaleBeforeRotation
31432
31433 \end_inset
31434
31435
31436 \begin_inset ERT
31437 status collapsed
31438
31439 \begin_layout Plain Layout
31440
31441 }
31442 \end_layout
31443
31444 \end_inset
31445
31446
31447 \end_layout
31448
31449 \begin_layout Plain Layout
31450 \begin_inset Caption Standard
31451
31452 \begin_layout Plain Layout
31453 \begin_inset CommandInset label
31454 LatexCommand label
31455 name "fig:Position-note-avec-ftnright"
31456
31457 \end_inset
31458
31459 Positionnement de notes de bas de page dans un document à deux colonnes
31460  en utilisant le paquetage LaTeX 
31461 \series bold
31462 ftnright
31463 \series default
31464 .
31465 \end_layout
31466
31467 \end_inset
31468
31469
31470 \end_layout
31471
31472 \end_inset
31473
31474
31475 \end_layout
31476
31477 \begin_layout Standard
31478 \begin_inset VSpace bigskip
31479 \end_inset
31480
31481 Dans certaines publications scientifiques, il est courant de rassembler
31482  les notes de bas de page et de les imprimer dans un paragraphe particulier
31483  à la fin de la section, comme sur la Figure
31484 \begin_inset space ~
31485 \end_inset
31486
31487
31488 \begin_inset CommandInset ref
31489 LatexCommand ref
31490 reference "fig:Notes-de-fin"
31491
31492 \end_inset
31493
31494 .
31495  On les appelle 
31496 \begin_inset Quotes eld
31497 \end_inset
31498
31499 notes de fin
31500 \begin_inset Quotes erd
31501 \end_inset
31502
31503 .
31504 \begin_inset Index idx
31505 status collapsed
31506
31507 \begin_layout Plain Layout
31508 Notes de fin
31509 \end_layout
31510
31511 \end_inset
31512
31513  Pour utiliser des notes de fin à la place des notes de bas de page dans
31514  votre document, charger le module 
31515 \family sans
31516 Note de bas de page en fin de document
31517 \family default
31518  à partir de 
31519 \family sans
31520 Document\SpecialChar \menuseparator
31521 Paramètres\SpecialChar \menuseparator
31522 Modules
31523 \family default
31524 .
31525  Pour insérer les notes qui ont ainsi été rassemblées, mettez la commande
31526 \end_layout
31527
31528 \begin_layout Standard
31529
31530 \series bold
31531
31532 \backslash
31533 theendnotes
31534 \end_layout
31535
31536 \begin_layout Standard
31537 en code TeX à la fin d'une section ou d'un chapitre.
31538 \end_layout
31539
31540 \begin_layout Standard
31541 \begin_inset Float figure
31542 wide false
31543 sideways false
31544 status open
31545
31546 \begin_layout Plain Layout
31547 \align center
31548 \begin_inset ERT
31549 status collapsed
31550
31551 \begin_layout Plain Layout
31552
31553
31554 \backslash
31555 framebox{
31556 \end_layout
31557
31558 \end_inset
31559
31560
31561 \begin_inset Graphics
31562         filename ../clipart/endnotes.pdf
31563         scaleBeforeRotation
31564
31565 \end_inset
31566
31567
31568 \begin_inset ERT
31569 status collapsed
31570
31571 \begin_layout Plain Layout
31572
31573 }
31574 \end_layout
31575
31576 \end_inset
31577
31578
31579 \end_layout
31580
31581 \begin_layout Plain Layout
31582 \begin_inset Caption Standard
31583
31584 \begin_layout Plain Layout
31585 \begin_inset CommandInset label
31586 LatexCommand label
31587 name "fig:Notes-de-fin"
31588
31589 \end_inset
31590
31591 Les notes de fin – notes de bas de page sont imprimées dans un paragraphe
31592  séparé à la fin des sections ou des chapitres.
31593 \end_layout
31594
31595 \end_inset
31596
31597
31598 \end_layout
31599
31600 \end_inset
31601
31602
31603 \end_layout
31604
31605 \begin_layout Standard
31606 \begin_inset VSpace medskip
31607 \end_inset
31608
31609 L'entête de paragraphe pour les notes de fin n'est pas traduit automatiquement
31610  dans la langue du document, cela doit être fait manuellement.
31611  Les lignes de préambule suivantes traduisent implicitement le nom en anglais
31612  
31613 \begin_inset Quotes eld
31614 \end_inset
31615
31616 Notes
31617 \begin_inset Quotes erd
31618 \end_inset
31619
31620  en sa traduction Allemande
31621 \begin_inset Foot
31622 status collapsed
31623
31624 \begin_layout Plain Layout
31625 En français, 
31626 \begin_inset Quotes eld
31627 \end_inset
31628
31629 Notes
31630 \begin_inset Quotes erd
31631 \end_inset
31632
31633  peut être conservé.
31634 \end_layout
31635
31636 \end_inset
31637
31638  
31639 \begin_inset Quotes eld
31640 \end_inset
31641
31642 Anmerkungen
31643 \begin_inset Quotes erd
31644 \end_inset
31645
31646  :
31647 \end_layout
31648
31649 \begin_layout Standard
31650
31651 \series bold
31652
31653 \backslash
31654 renewcommand{
31655 \backslash
31656 notesname}{Anmerkungen}
31657 \end_layout
31658
31659 \begin_layout Standard
31660 \begin_inset VSpace medskip
31661 \end_inset
31662
31663 La numérotation des notes de fin peut être modifiée comme celle des notes
31664  de bas de page comme c'est décrit dans la section
31665 \begin_inset space ~
31666 \end_inset
31667
31668
31669 \begin_inset CommandInset ref
31670 LatexCommand ref
31671 reference "sub:Numerotation-notes-bas-de-page"
31672
31673 \end_inset
31674
31675  ; remplacez juste la commande 
31676 \series bold
31677
31678 \backslash
31679 thefootnote
31680 \series default
31681  par 
31682 \series bold
31683
31684 \backslash
31685 theendnote
31686 \series default
31687 .
31688  Pour réinitialiser le numéro de note de fin, utilisez la commande 
31689 \series bold
31690
31691 \backslash
31692 @addtoreset
31693 \series default
31694  comme c'est décrit dans la section
31695 \begin_inset space ~
31696 \end_inset
31697
31698
31699 \begin_inset CommandInset ref
31700 LatexCommand ref
31701 reference "sub:Numerotation-notes-bas-de-page"
31702
31703 \end_inset
31704
31705  et remplacez le paramètre de commande 
31706 \series bold
31707 footnote
31708 \series default
31709  par 
31710 \series bold
31711 endnote
31712 \series default
31713 .
31714 \end_layout
31715
31716 \begin_layout Standard
31717 Pour les notes de fin, il y a la commande 
31718 \series bold
31719
31720 \backslash
31721 endnotemark[numéro]
31722 \series default
31723  qui est semblable à 
31724 \series bold
31725
31726 \backslash
31727 footnotemark
31728 \series default
31729 , décrite dans la section
31730 \begin_inset space ~
31731 \end_inset
31732
31733
31734 \begin_inset CommandInset ref
31735 LatexCommand ref
31736 reference "sec:Notes-bas-de-page"
31737
31738 \end_inset
31739
31740 .
31741 \end_layout
31742
31743 \begin_layout Standard
31744 \begin_inset VSpace bigskip
31745 \end_inset
31746
31747  Les notes de bas de page peuvent être mise dans la marge de la page et
31748  l'alignement du texte des notes peut être modifié, voyez le paquetage LaTeX
31749  
31750 \series bold
31751 footmisc
31752 \series default
31753
31754 \begin_inset Index idx
31755 status collapsed
31756
31757 \begin_layout Plain Layout
31758 Paquetages LaTeX ! footmisc
31759 \end_layout
31760
31761 \end_inset
31762
31763
31764 \begin_inset CommandInset citation
31765 LatexCommand cite
31766 key "footmisc"
31767
31768 \end_inset
31769
31770  pour plus d'information à ce sujet.
31771 \end_layout
31772
31773 \begin_layout Standard
31774 Pour plein d'autres problèmes de mises en formes des notes de bas de page,
31775  voyez les livres sur LaTeX, 
31776 \begin_inset CommandInset citation
31777 LatexCommand cite
31778 key "latexcompanion,latexguide,latexbook"
31779
31780 \end_inset
31781
31782 .
31783  Si vous utilisez une classe de document  
31784 \series bold
31785 KOMA-Script
31786 \series default
31787
31788 \begin_inset Index idx
31789 status collapsed
31790
31791 \begin_layout Plain Layout
31792 Paquetages LaTeX ! KOMA-Script
31793 \end_layout
31794
31795 \end_inset
31796
31797 , vous pouvez modifier tous les paramètres des notes de bas de page en utilisant
31798  des commandes spécifiques à la classe de document utilisée, voyez 
31799 \begin_inset CommandInset citation
31800 LatexCommand cite
31801 key "KOMA-Script"
31802
31803 \end_inset
31804
31805 .
31806 \end_layout
31807
31808 \begin_layout Section
31809 Notes en marge
31810 \begin_inset Index idx
31811 status collapsed
31812
31813 \begin_layout Plain Layout
31814 Notes ! Notes en Marge
31815 \end_layout
31816
31817 \end_inset
31818
31819
31820 \end_layout
31821
31822 \begin_layout Standard
31823 Les notes en marge dans LyX ressemblent aux notes en bas de page et se comporten
31824 t de la même façon.
31825  Quand vous insérez une note en marge avec 
31826 \family sans
31827 Insertion\SpecialChar \menuseparator
31828 Note
31829 \begin_inset space ~
31830 \end_inset
31831
31832 en
31833 \begin_inset space ~
31834 \end_inset
31835
31836 Marge
31837 \family default
31838  ou avec le bouton 
31839 \begin_inset Info
31840 type  "icon"
31841 arg   "marginalnote-insert"
31842 \end_inset
31843
31844  de la barre d'outils, vous voyez apparaître dans votre texte une boîte
31845  grise avec une étiquette rouge 
31846 \begin_inset Quotes fld
31847 \end_inset
31848
31849 marge
31850 \begin_inset Quotes frd
31851 \end_inset
31852
31853 .
31854  
31855 \begin_inset Marginal
31856 status collapsed
31857
31858 \begin_layout Plain Layout
31859 C'est une note en marge.
31860 \end_layout
31861
31862 \end_inset
31863
31864  Cette boîte est la représentation de votre note dans LyX.
31865  Vous pouvez y entrer votre texte.
31866 \end_layout
31867
31868 \begin_layout Standard
31869 Les notes en marge apparaissent dans la marge de droite dans les documents
31870  imprimées sur une seule face.
31871  Dans les documents imprimés recto-verso, elles apparaissent dans la marge
31872  
31873 \begin_inset Quotes eld
31874 \end_inset
31875
31876 extérieure
31877 \begin_inset Quotes erd
31878 \end_inset
31879
31880  – la gauche sur les pages paires et la droite sur les pages impaires.
31881  Le texte de la note en marge est aligné à l'opposé de la marge externe
31882  – aligné à droite quand la note apparaît dans la marge de gauche.
31883  La première ligne de la note apparaît à la hauteur de la ligne de texte
31884  où la note a été insérée dans le document.
31885 \end_layout
31886
31887 \begin_layout Standard
31888 \begin_inset VSpace bigskip
31889 \end_inset
31890
31891 Pour placer une note dans la marge interne, ajoutez la commande suivante
31892  :
31893 \end_layout
31894
31895 \begin_layout Standard
31896
31897 \series bold
31898
31899 \backslash
31900 reversemarginpar
31901 \end_layout
31902
31903 \begin_layout Standard
31904 sous forme de code TeX avant votre note de marge.
31905  Le nouveau positionnement est pris en compte pour toutes les notes en marge
31906  qui suivent 
31907 \begin_inset ERT
31908 status collapsed
31909
31910 \begin_layout Plain Layout
31911
31912
31913 \backslash
31914 reversemarginpar 
31915 \end_layout
31916
31917 \end_inset
31918
31919
31920 \begin_inset Marginal
31921 status open
31922
31923 \begin_layout Plain Layout
31924 Cette note en marge est dans la marge interne.
31925 \end_layout
31926
31927 \end_inset
31928
31929
31930 \series bold
31931
31932 \begin_inset Newline newline
31933 \end_inset
31934
31935
31936 \series default
31937
31938 \begin_inset Note Greyedout
31939 status open
31940
31941 \begin_layout Plain Layout
31942
31943 \series bold
31944 Note:
31945 \series default
31946  Il y a souvent pas assez d'espace dans la marge interne, ce qui fait que
31947  les notes sont souvent mal mises en formes dans la sortie imprimée.
31948 \end_layout
31949
31950 \end_inset
31951
31952
31953 \end_layout
31954
31955 \begin_layout Standard
31956 Pour revenir au positionnement implicite, ajoutez la commande :
31957 \end_layout
31958
31959 \begin_layout Standard
31960
31961 \series bold
31962
31963 \backslash
31964 normalmarginpar
31965 \end_layout
31966
31967 \begin_layout Standard
31968 sous forme de code TeX.
31969 \begin_inset ERT
31970 status collapsed
31971
31972 \begin_layout Plain Layout
31973
31974
31975 \backslash
31976 normalmarginpar 
31977 \end_layout
31978
31979 \end_inset
31980
31981
31982 \begin_inset Newline newline
31983 \end_inset
31984
31985  
31986 \begin_inset Note Greyedout
31987 status open
31988
31989 \begin_layout Plain Layout
31990
31991 \series bold
31992 Note:
31993 \series default
31994  Cette commande est ignorée quand elle est dans un paragraphe ou la commande
31995  
31996 \series bold
31997
31998 \backslash
31999 reversemarginpar
32000 \series default
32001  est aussi utilisée.
32002 \end_layout
32003
32004 \end_inset
32005
32006
32007 \end_layout
32008
32009 \begin_layout Standard
32010 \begin_inset VSpace bigskip
32011 \end_inset
32012
32013
32014 \begin_inset Marginal
32015 status open
32016
32017 \begin_layout Plain Layout
32018 UnTrèsLongMotEnMarge sans césure.
32019 \end_layout
32020
32021 \end_inset
32022
32023  Comme dans le cas décrit dans la section
32024 \begin_inset space ~
32025 \end_inset
32026
32027
32028 \begin_inset CommandInset ref
32029 LatexCommand ref
32030 reference "sub:Lignes-multiple-dans-cellule"
32031
32032 \end_inset
32033
32034 , les mots trop longs ne peuvent pas subir de césure s'ils sont le premier
32035  mot d'une note en marge.
32036  Pour éviter ce problème, insérez un espacement horizontal de 0
32037 \begin_inset space \thinspace{}
32038 \end_inset
32039
32040 pt avant le mot en question: 
32041 \begin_inset Marginal
32042 status open
32043
32044 \begin_layout Plain Layout
32045 \begin_inset space \hspace{}
32046 \length 0pt
32047 \end_inset
32048
32049 UnMotTrèsLongEnMarge avec une césure.
32050 \end_layout
32051
32052 \end_inset
32053
32054
32055 \end_layout
32056
32057 \begin_layout Standard
32058 \begin_inset VSpace bigskip
32059 \end_inset
32060
32061
32062 \end_layout
32063
32064 \begin_layout Standard
32065 \begin_inset Note Greyedout
32066 status open
32067
32068 \begin_layout Plain Layout
32069
32070 \series bold
32071 Note:
32072 \series default
32073  Normalement, les notes en marge ne peuvent pas être utilisées dans des
32074  tableaux, des flottants et des notes de bas de page.
32075 \end_layout
32076
32077 \end_inset
32078
32079
32080 \end_layout
32081
32082 \begin_layout Standard
32083 \begin_inset VSpace bigskip
32084 \end_inset
32085
32086
32087 \end_layout
32088
32089 \begin_layout Standard
32090 \begin_inset ERT
32091 status collapsed
32092
32093 \begin_layout Plain Layout
32094
32095
32096 \backslash
32097 ifmarginnote
32098 \end_layout
32099
32100 \end_inset
32101
32102
32103 \begin_inset Note Note
32104 status open
32105
32106 \begin_layout Plain Layout
32107 La section suivante ne sera affichée que si le paquetage LaTeX 
32108 \series bold
32109 marginnote
32110 \series default
32111  a été installé.
32112 \end_layout
32113
32114 \end_inset
32115
32116
32117 \end_layout
32118
32119 \begin_layout Standard
32120 Cette restriction peut être évitée en utilisant le paquetage LaTeX 
32121 \series bold
32122 marginnote
32123 \series default
32124
32125 \begin_inset Index idx
32126 status collapsed
32127
32128 \begin_layout Plain Layout
32129 Paquetages LaTeX ! marginnote
32130 \end_layout
32131
32132 \end_inset
32133
32134 .
32135  En ajoutant les deux lignes suivantes au préambule de votre document, la
32136  commande que LyX utilise pour les notes de marge est redéfinie pour utiliser
32137  la commande fournie par le paquetage 
32138 \series bold
32139 marginnote
32140 \series default
32141  :
32142 \end_layout
32143
32144 \begin_layout Standard
32145
32146 \series bold
32147
32148 \backslash
32149 usepackage{marginnote}
32150 \begin_inset Newline newline
32151 \end_inset
32152
32153
32154 \backslash
32155 let
32156 \backslash
32157 marginpar
32158 \backslash
32159 marginnote
32160 \end_layout
32161
32162 \begin_layout Standard
32163 Ce paquetage est aussi utilisé dans ce document parce que 
32164 \series bold
32165 marginnote
32166 \series default
32167  a une autre fonction très utile : Vous pouvez définir un décalage (offset)
32168  vertical pour une note.
32169  C'est souvent nécessaire quand vous avez trop de notes en marge et qu'elles
32170  sont trop proches les unes des autres ou que vous voulez améliorer la mise
32171  en page.
32172  Le décalage est inséré dans LyX sous forme de code TeX directement après
32173  la note sous la forme
32174 \end_layout
32175
32176 \begin_layout Standard
32177
32178 \series bold
32179 [offset]
32180 \end_layout
32181
32182 \begin_layout Standard
32183 où l'offset utilise l'une des unités listées dans le tableau
32184 \begin_inset space ~
32185 \end_inset
32186
32187
32188 \begin_inset CommandInset ref
32189 LatexCommand ref
32190 reference "cha:Unités-de-longueur"
32191
32192 \end_inset
32193
32194 .
32195  Une valeur négative déplace la note vers le haut, une valeur positive la
32196  déplace vers le bas.
32197  Par exemple la note qui se trouve à côté de cette ligne de texte est décalée
32198  vers le haut de 1.5
32199 \begin_inset space \thinspace{}
32200 \end_inset
32201
32202 cm avec la commande en code TeX 
32203 \begin_inset Quotes eld
32204 \end_inset
32205
32206
32207 \series bold
32208 [-1.5cm]
32209 \series default
32210
32211 \begin_inset Quotes erd
32212 \end_inset
32213
32214
32215 \begin_inset Marginal
32216 status collapsed
32217
32218 \begin_layout Plain Layout
32219 Cette note en marge est décalée vers le haut de 1.5
32220 \begin_inset space \thinspace{}
32221 \end_inset
32222
32223 cm par rapport à sa position d'origine.
32224 \end_layout
32225
32226 \end_inset
32227
32228
32229 \begin_inset ERT
32230 status collapsed
32231
32232 \begin_layout Plain Layout
32233
32234 [-1.5cm]
32235 \end_layout
32236
32237 \end_inset
32238
32239
32240 \end_layout
32241
32242 \begin_layout Standard
32243 \begin_inset VSpace medskip
32244 \end_inset
32245
32246 Avec le paquetage 
32247 \series bold
32248 marginnote
32249 \series default
32250  vous pouvez aussi modifier l'alignement du texte dans la note de marge.
32251  Par exemple les commandes 
32252 \end_layout
32253
32254 \begin_layout Standard
32255
32256 \series bold
32257
32258 \backslash
32259 renewcommand*{
32260 \backslash
32261 raggedleftmarginnote}{
32262 \backslash
32263 centering}
32264 \begin_inset Newline newline
32265 \end_inset
32266
32267
32268 \backslash
32269 renewcommand*{
32270 \backslash
32271 raggedrightmarginnote}{
32272 \backslash
32273 centering}
32274 \end_layout
32275
32276 \begin_layout Standard
32277 donnent un alignement centré.
32278  
32279 \series bold
32280
32281 \backslash
32282 raggedleftmarginnote
32283 \series default
32284  indique une note qui apparaît dans la marge de gauche.
32285 \begin_inset ERT
32286 status collapsed
32287
32288 \begin_layout Plain Layout
32289
32290
32291 \backslash
32292 renewcommand*{
32293 \backslash
32294 raggedleftmarginnote}{
32295 \backslash
32296 centering}
32297 \end_layout
32298
32299 \begin_layout Plain Layout
32300
32301
32302 \backslash
32303 renewcommand*{
32304 \backslash
32305 raggedrightmarginnote}{
32306 \backslash
32307 centering}
32308 \end_layout
32309
32310 \end_inset
32311
32312
32313 \begin_inset Marginal
32314 status collapsed
32315
32316 \begin_layout Plain Layout
32317 Le texte de cette note en marge est centré.
32318 \end_layout
32319
32320 \end_inset
32321
32322 .
32323  Le comportement implicite est donné par
32324 \end_layout
32325
32326 \begin_layout Standard
32327
32328 \series bold
32329
32330 \backslash
32331 renewcommand*{
32332 \backslash
32333 raggedleftmarginnote}{
32334 \backslash
32335 raggedleft}
32336 \begin_inset Newline newline
32337 \end_inset
32338
32339
32340 \backslash
32341 renewcommand*{
32342 \backslash
32343 raggedrightmarginnote}{
32344 \backslash
32345 raggedright}
32346 \series default
32347
32348 \begin_inset ERT
32349 status collapsed
32350
32351 \begin_layout Plain Layout
32352
32353
32354 \backslash
32355 renewcommand*{
32356 \backslash
32357 raggedleftmarginnote}{
32358 \backslash
32359 raggedleft}
32360 \end_layout
32361
32362 \begin_layout Plain Layout
32363
32364
32365 \backslash
32366 renewcommand*{
32367 \backslash
32368 raggedrightmarginnote}{
32369 \backslash
32370 raggedright}
32371 \end_layout
32372
32373 \end_inset
32374
32375
32376 \end_layout
32377
32378 \begin_layout Standard
32379 \begin_inset VSpace medskip
32380 \end_inset
32381
32382 Pour les autre fonctions du paquetage 
32383 \series bold
32384 marginnote
32385 \series default
32386  nous vous renvoyons à sa documentation 
32387 \begin_inset CommandInset citation
32388 LatexCommand cite
32389 key "marginnote"
32390
32391 \end_inset
32392
32393 .
32394 \end_layout
32395
32396 \begin_layout Standard
32397 \begin_inset VSpace bigskip
32398 \end_inset
32399
32400 Vous pouvez changer la mise en forme d'une note en marge en changeant sa
32401  définition.
32402  Pour créer par exemple une entête pour toutes les notes en marge avec le
32403  texte 
32404 \begin_inset Quotes eld
32405 \end_inset
32406
32407
32408 \family sans
32409 \series bold
32410 \bar under
32411 Attention!
32412 \family default
32413 \series default
32414 \bar default
32415
32416 \begin_inset Quotes erd
32417 \end_inset
32418
32419  écrit en souligné, sans-sérif et en gras, ajoutez ce qui suit dans le préambule
32420  de votre document :
32421 \end_layout
32422
32423 \begin_layout Standard
32424
32425 \series bold
32426
32427 \backslash
32428 let
32429 \backslash
32430 myMarginpar
32431 \backslash
32432 marginpar
32433 \begin_inset Newline newline
32434 \end_inset
32435
32436
32437 \backslash
32438 renewcommand{
32439 \backslash
32440 marginpar}[1]{
32441 \backslash
32442 myMarginpar{%
32443 \begin_inset Newline newline
32444 \end_inset
32445
32446
32447 \begin_inset Phantom HPhantom
32448 status open
32449
32450 \begin_layout Plain Layout
32451
32452 \series bold
32453 \begin_inset space ~
32454 \end_inset
32455
32456
32457 \end_layout
32458
32459 \end_inset
32460
32461
32462 \backslash
32463 hspace{0pt}
32464 \backslash
32465 textsf{
32466 \backslash
32467 textbf{
32468 \backslash
32469 underbar{Attention!}}}%
32470 \begin_inset Newline newline
32471 \end_inset
32472
32473
32474 \begin_inset Phantom HPhantom
32475 status open
32476
32477 \begin_layout Plain Layout
32478
32479 \series bold
32480 \begin_inset space ~
32481 \end_inset
32482
32483
32484 \end_layout
32485
32486 \end_inset
32487
32488
32489 \backslash
32490 vspace{1.5mm}
32491 \backslash
32492
32493 \backslash
32494 #1}}
32495 \end_layout
32496
32497 \begin_layout Standard
32498 \begin_inset ERT
32499 status collapsed
32500
32501 \begin_layout Plain Layout
32502
32503
32504 \backslash
32505 let
32506 \backslash
32507 myMarginpar
32508 \backslash
32509 marginpar
32510 \end_layout
32511
32512 \begin_layout Plain Layout
32513
32514
32515 \backslash
32516 renewcommand{
32517 \backslash
32518 marginpar}[1]{
32519 \backslash
32520 myMarginpar{%
32521 \end_layout
32522
32523 \begin_layout Plain Layout
32524
32525    
32526 \backslash
32527 textsf{
32528 \backslash
32529 textbf{
32530 \backslash
32531 underbar{Attention!}}}%
32532 \end_layout
32533
32534 \begin_layout Plain Layout
32535
32536    
32537 \backslash
32538 vspace{1.5mm}
32539 \backslash
32540
32541 \backslash
32542 #1}}
32543 \end_layout
32544
32545 \end_inset
32546
32547
32548 \begin_inset Marginal
32549 status open
32550
32551 \begin_layout Plain Layout
32552 Ceci est une note en marge avec une en-tête prédéfinie.
32553 \end_layout
32554
32555 \end_inset
32556
32557
32558 \begin_inset ERT
32559 status collapsed
32560
32561 \begin_layout Plain Layout
32562
32563 [-1.5cm]
32564 \end_layout
32565
32566 \end_inset
32567
32568
32569 \begin_inset ERT
32570 status collapsed
32571
32572 \begin_layout Plain Layout
32573
32574
32575 \backslash
32576 renewcommand{
32577 \backslash
32578 marginpar}[1]{
32579 \backslash
32580 myMarginpar{#1}}
32581 \end_layout
32582
32583 \end_inset
32584
32585
32586 \begin_inset Note Note
32587 status collapsed
32588
32589 \begin_layout Plain Layout
32590
32591 \lang english
32592 The margin note format is changed only for this example.
32593 \end_layout
32594
32595 \end_inset
32596
32597
32598 \end_layout
32599
32600 \begin_layout Standard
32601 \begin_inset ERT
32602 status collapsed
32603
32604 \begin_layout Plain Layout
32605
32606
32607 \backslash
32608 else
32609 \end_layout
32610
32611 \end_inset
32612
32613
32614 \begin_inset Note Note
32615 status open
32616
32617 \begin_layout Plain Layout
32618 Ce qui suit sera affiché si le paquetage LaTeX 
32619 \series bold
32620 marginnote
32621 \series default
32622  n'est pas installé :
32623 \end_layout
32624
32625 \end_inset
32626
32627
32628 \end_layout
32629
32630 \begin_layout Standard
32631 Vous devez installer le paquetage LaTeX 
32632 \series bold
32633 marginnote
32634 \series default
32635  pour voir la suite de cette section dans la sortie imprimée.
32636 \end_layout
32637
32638 \begin_layout Standard
32639 \begin_inset ERT
32640 status collapsed
32641
32642 \begin_layout Plain Layout
32643
32644
32645 \backslash
32646 fi
32647 \end_layout
32648
32649 \end_inset
32650
32651
32652 \end_layout
32653
32654 \begin_layout Chapter
32655 Les boîtes
32656 \end_layout
32657
32658 \begin_layout Section
32659 Introduction
32660 \begin_inset Index idx
32661 status collapsed
32662
32663 \begin_layout Plain Layout
32664 Boîtes ! Introduction
32665 \end_layout
32666
32667 \end_inset
32668
32669
32670 \end_layout
32671
32672 \begin_layout Standard
32673 Les boîtes sont utilisées pour mettre en forme un bloc de texte.
32674  Elles peuvent être utilisées pour écrire un document en plusieurs langues,
32675  voir la section
32676 \begin_inset space ~
32677 \end_inset
32678
32679
32680 \begin_inset CommandInset ref
32681 LatexCommand ref
32682 reference "sec:Minipages"
32683
32684 \end_inset
32685
32686 , pour encadrer des portions de texte, voir la section
32687 \begin_inset space ~
32688 \end_inset
32689
32690
32691 \begin_inset CommandInset ref
32692 LatexCommand ref
32693 reference "sec:Décorations"
32694
32695 \end_inset
32696
32697 , pour empêcher que des mots subissent une césure, voir la section
32698 \begin_inset space ~
32699 \end_inset
32700
32701
32702 \begin_inset CommandInset ref
32703 LatexCommand ref
32704 reference "sec:Empêcher-césure"
32705
32706 \end_inset
32707
32708 , pour aligner du texte, voir la section
32709 \begin_inset space ~
32710 \end_inset
32711
32712
32713 \begin_inset CommandInset ref
32714 LatexCommand ref
32715 reference "sub:Alignement-Vertical"
32716
32717 \end_inset
32718
32719 , ou pour modifier la couleur de fond d'une portion de texte, voir la section
32720 \begin_inset space ~
32721 \end_inset
32722
32723
32724 \begin_inset CommandInset ref
32725 LatexCommand ref
32726 reference "sec:Boîtes-colorées"
32727
32728 \end_inset
32729
32730 .
32731 \end_layout
32732
32733 \begin_layout Standard
32734 On peut insérer une boîte en utilisant le menu 
32735 \family sans
32736 Insertion\SpecialChar \menuseparator
32737 Boîte
32738 \family default
32739  ou avec le bouton 
32740 \begin_inset Info
32741 type  "icon"
32742 arg   "box-insert Frameless"
32743 \end_inset
32744
32745  de la barre d'outils.
32746  Une boîte grise avec une étiquette 
32747 \family sans
32748 Boîte
32749 \begin_inset space ~
32750 \end_inset
32751
32752 (Minipage)
32753 \family default
32754
32755 \begin_inset Graphics
32756         filename clipart/BoxInsetDefaultQt4.png
32757         scale 65
32758         scaleBeforeRotation
32759
32760 \end_inset
32761
32762  est alors insérée.
32763  Le type de la boîte peut être précisé en faisant un clic droit sur la boîte
32764  et en choisissant 
32765 \family sans
32766 Paramètres
32767 \family default
32768  .
32769  La fenêtre de dialogue qui apparaît donne accès aux types de
32770 \family sans
32771  Boîte
32772 \begin_inset space ~
32773 \end_inset
32774
32775 Intérieure
32776 \family default
32777  
32778 \family sans
32779 Makebox, Parbox
32780 \family default
32781  et 
32782 \family sans
32783 Minipage
32784 \family default
32785 .
32786  Le type 
32787 \family sans
32788 Minipage
32789 \family default
32790  est le type implicite pour les boîtes nouvellement créées et il est décrit
32791  dans la section
32792 \begin_inset space ~
32793 \end_inset
32794
32795
32796 \begin_inset CommandInset ref
32797 LatexCommand ref
32798 reference "sec:Minipages"
32799
32800 \end_inset
32801
32802 ; le type 
32803 \family sans
32804 Parbox
32805 \family default
32806  est décrit dans la section
32807 \begin_inset space ~
32808 \end_inset
32809
32810
32811 \begin_inset CommandInset ref
32812 LatexCommand ref
32813 reference "sec:Parboxes"
32814
32815 \end_inset
32816
32817  et le type 
32818 \family sans
32819 Makebox
32820 \family default
32821  est décrit dans la section
32822 \begin_inset space ~
32823 \end_inset
32824
32825
32826 \begin_inset CommandInset ref
32827 LatexCommand ref
32828 reference "sec:Empêcher-césure"
32829
32830 \end_inset
32831
32832 .
32833 \end_layout
32834
32835 \begin_layout Standard
32836 Les boîtes ne sont pas numérotées et donc ne peuvent pas être référencées
32837  comme les flottants ou les notes de bas de page.
32838 \end_layout
32839
32840 \begin_layout Standard
32841 \begin_inset Note Greyedout
32842 status open
32843
32844 \begin_layout Plain Layout
32845
32846 \series bold
32847 Note:
32848 \series default
32849  Vous ne pouvez pas employer une boîte comme élément dans un environnement
32850  de type 
32851 \family sans
32852 Liste
32853 \family default
32854  ou 
32855 \family sans
32856 Description
32857 \family default
32858 .
32859 \end_layout
32860
32861 \end_inset
32862
32863
32864 \end_layout
32865
32866 \begin_layout Standard
32867 \begin_inset Note Greyedout
32868 status open
32869
32870 \begin_layout Plain Layout
32871
32872 \series bold
32873 Note:
32874 \series default
32875  Pour une raison inconnue, vous ne pouvez mettre le type de la 
32876 \family sans
32877 Boîte
32878 \begin_inset space ~
32879 \end_inset
32880
32881 Intérieure
32882 \family default
32883  à 
32884 \family sans
32885 Aucune
32886 \family default
32887  que quand vous utilisez une boîte encadrée.
32888  Les boîtes sans 
32889 \family sans
32890 Boîte
32891 \begin_inset space ~
32892 \end_inset
32893
32894 Intérieure
32895 \family default
32896  et sans cadre sont expliquées dans la section
32897 \begin_inset space ~
32898 \end_inset
32899
32900
32901 \begin_inset CommandInset ref
32902 LatexCommand ref
32903 reference "sec:Empêcher-césure"
32904
32905 \end_inset
32906
32907 .
32908 \end_layout
32909
32910 \end_inset
32911
32912
32913 \end_layout
32914
32915 \begin_layout Section
32916 La fenêtre de dialogue Boîte
32917 \begin_inset CommandInset label
32918 LatexCommand label
32919 name "sec:Boîte-Dialogue"
32920
32921 \end_inset
32922
32923
32924 \begin_inset Index idx
32925 status collapsed
32926
32927 \begin_layout Plain Layout
32928 Boîtes ! Fenêtre de dialogue Boîte
32929 \end_layout
32930
32931 \end_inset
32932
32933
32934 \end_layout
32935
32936 \begin_layout Subsection
32937 Taille
32938 \begin_inset Index idx
32939 status collapsed
32940
32941 \begin_layout Plain Layout
32942 Boîtes ! Taille
32943 \end_layout
32944
32945 \end_inset
32946
32947
32948 \end_layout
32949
32950 \begin_layout Standard
32951 Dans la fenêtre de dialogue 
32952 \family sans
32953 Paramètres
32954 \begin_inset space ~
32955 \end_inset
32956
32957 de
32958 \begin_inset space ~
32959 \end_inset
32960
32961 Boîte
32962 \family default
32963  vous pouvez modifier la géométrie de la boîte avec les champs 
32964 \family sans
32965 Largeur
32966 \family default
32967  et 
32968 \family sans
32969 Hauteur
32970 \family default
32971 .
32972  Les unités de longueur qui sont utilisables dans ces champs sont décrites
32973  dans le tableau
32974 \begin_inset space ~
32975 \end_inset
32976
32977
32978 \begin_inset CommandInset ref
32979 LatexCommand ref
32980 reference "tab:Unités"
32981
32982 \end_inset
32983
32984 .
32985  Le champ 
32986 \family sans
32987 Hauteur
32988 \family default
32989  offre en plus les spécifications de taille suivantes :
32990 \end_layout
32991
32992 \begin_layout Description
32993 Profondeur C'est simplement la 
32994 \begin_inset Quotes eld
32995 \end_inset
32996
32997 hauteur
32998 \begin_inset Quotes erd
32999 \end_inset
33000
33001  du texte.
33002  On ne tient pas compte de hauteur réelle du texte quand il y a plusieurs
33003  lignes de texte dans la boîte.
33004 \begin_inset Newline newline
33005 \end_inset
33006
33007
33008 \begin_inset Newline newline
33009 \end_inset
33010
33011
33012 \begin_inset Newline newline
33013 \end_inset
33014
33015
33016 \begin_inset Box Boxed
33017 position "c"
33018 hor_pos "c"
33019 has_inner_box 1
33020 inner_pos "c"
33021 use_parbox 0
33022 use_makebox 0
33023 width "12col%"
33024 special "none"
33025 height "1in"
33026 height_special "depth"
33027 status open
33028
33029 \begin_layout Plain Layout
33030 \align center
33031 Boîte dont la hauteur est égale à 1
33032 \begin_inset space \thinspace{}
33033 \end_inset
33034
33035 Profondeur
33036 \end_layout
33037
33038 \end_inset
33039
33040
33041 \begin_inset Newline newline
33042 \end_inset
33043
33044
33045 \begin_inset Newline newline
33046 \end_inset
33047
33048
33049 \end_layout
33050
33051 \begin_layout Description
33052 Hauteur C'est la hauteur totale du texte qui se trouve dans la boîte.
33053  Par exemple, une valeur de 2 pour cette taille va donner une boîte qui
33054  est deux fois plus haute que le texte : 
33055 \begin_inset Box Boxed
33056 position "c"
33057 hor_pos "c"
33058 has_inner_box 1
33059 inner_pos "c"
33060 use_parbox 0
33061 use_makebox 0
33062 width "20col%"
33063 special "none"
33064 height "2in"
33065 height_special "height"
33066 status open
33067
33068 \begin_layout Plain Layout
33069 \align center
33070 Boîte dont la hauteur est 2
33071 \begin_inset space \thinspace{}
33072 \end_inset
33073
33074 Hauteur
33075 \end_layout
33076
33077 \end_inset
33078
33079
33080 \end_layout
33081
33082 \begin_layout Description
33083 Hauteur
33084 \begin_inset space ~
33085 \end_inset
33086
33087 Totale C'est égal à Hauteur
33088 \begin_inset space \thinspace{}
33089 \end_inset
33090
33091 +
33092 \begin_inset space \thinspace{}
33093 \end_inset
33094
33095 Profondeur : 
33096 \begin_inset Box Boxed
33097 position "c"
33098 hor_pos "c"
33099 has_inner_box 1
33100 inner_pos "c"
33101 use_parbox 0
33102 use_makebox 0
33103 width "20col%"
33104 special "none"
33105 height "1in"
33106 height_special "totalheight"
33107 status open
33108
33109 \begin_layout Plain Layout
33110 \align center
33111 Boîte dont la hauteur est 1
33112 \begin_inset space \thinspace{}
33113 \end_inset
33114
33115 Hauteur
33116 \begin_inset space ~
33117 \end_inset
33118
33119 Totale
33120 \end_layout
33121
33122 \end_inset
33123
33124
33125 \end_layout
33126
33127 \begin_layout Description
33128 Largeur On prend la largeur de la boîte comme hauteur : 
33129 \begin_inset Box Boxed
33130 position "c"
33131 hor_pos "c"
33132 has_inner_box 1
33133 inner_pos "c"
33134 use_parbox 0
33135 use_makebox 0
33136 width "12col%"
33137 special "none"
33138 height "1in"
33139 height_special "width"
33140 status open
33141
33142 \begin_layout Plain Layout
33143 \align center
33144 Boîte dont la hauteur est 1
33145 \begin_inset space \thinspace{}
33146 \end_inset
33147
33148 Largeur
33149 \end_layout
33150
33151 \end_inset
33152
33153
33154 \end_layout
33155
33156 \begin_layout Subsection
33157 Alignement
33158 \begin_inset Index idx
33159 status collapsed
33160
33161 \begin_layout Plain Layout
33162 Boîtes ! Alignement
33163 \end_layout
33164
33165 \end_inset
33166
33167
33168 \end_layout
33169
33170 \begin_layout Standard
33171 Quand vous avez choisi une 
33172 \family sans
33173 Boîte
33174 \begin_inset space ~
33175 \end_inset
33176
33177 Intérieure
33178 \family default
33179 , l'alignement vertical de la boîte peut être :
33180 \end_layout
33181
33182 \begin_layout Description
33183 Haut Ceci est un exemple de texte.
33184  
33185 \begin_inset Box Boxed
33186 position "t"
33187 hor_pos "c"
33188 has_inner_box 1
33189 inner_pos "c"
33190 use_parbox 0
33191 use_makebox 0
33192 width "12col%"
33193 special "none"
33194 height "1in"
33195 height_special "totalheight"
33196 status collapsed
33197
33198 \begin_layout Plain Layout
33199 \align center
33200 Cette boîte est alignée sur le haut.
33201 \end_layout
33202
33203 \end_inset
33204
33205  Ceci est un exemple de texte.
33206 \end_layout
33207
33208 \begin_layout Description
33209 Milieu Ceci est un exemple de texte.
33210  
33211 \begin_inset Box Boxed
33212 position "c"
33213 hor_pos "c"
33214 has_inner_box 1
33215 inner_pos "c"
33216 use_parbox 0
33217 use_makebox 0
33218 width "12col%"
33219 special "none"
33220 height "1in"
33221 height_special "totalheight"
33222 status collapsed
33223
33224 \begin_layout Plain Layout
33225 \align center
33226 Cette boîte est alignée au centre.
33227 \end_layout
33228
33229 \end_inset
33230
33231  Ceci est un exemple de texte.
33232 \end_layout
33233
33234 \begin_layout Description
33235 Bas Ceci est un exemple de texte.
33236  
33237 \begin_inset Box Boxed
33238 position "b"
33239 hor_pos "c"
33240 has_inner_box 1
33241 inner_pos "c"
33242 use_parbox 0
33243 use_makebox 0
33244 width "12col%"
33245 special "none"
33246 height "1in"
33247 height_special "totalheight"
33248 status collapsed
33249
33250 \begin_layout Plain Layout
33251 \align center
33252 Cette boîte est alignée sur le bas.
33253 \end_layout
33254
33255 \end_inset
33256
33257  Ceci est un exemple de texte.
33258 \end_layout
33259
33260 \begin_layout Standard
33261 \begin_inset Note Greyedout
33262 status open
33263
33264 \begin_layout Plain Layout
33265
33266 \series bold
33267 Note:
33268 \series default
33269  L'alignement vertical peut être perturbé dans la sortie finale quand vous
33270  avez par exemple deux boîtes sur une même ligne, une avec une ombre et
33271  l'autre non.
33272 \end_layout
33273
33274 \end_inset
33275
33276
33277 \end_layout
33278
33279 \begin_layout Standard
33280 L'alignement horizontal de la boîte peut être modifié quand elle a son propre
33281  paragraphe grâce à la fenêtre de dialogue 
33282 \family sans
33283 Paramètres
33284 \begin_inset space ~
33285 \end_inset
33286
33287 de
33288 \begin_inset space ~
33289 \end_inset
33290
33291 Boîte
33292 \family default
33293 .
33294 \end_layout
33295
33296 \begin_layout Standard
33297 \begin_inset VSpace bigskip
33298 \end_inset
33299
33300 Quand vous avez choisi une 
33301 \family sans
33302 Boîte
33303 \begin_inset space ~
33304 \end_inset
33305
33306 Intérieure
33307 \family default
33308 , l'alignement vertical du contenu de la boîte peut être :
33309 \end_layout
33310
33311 \begin_layout Description
33312 haut Ceci est un exemple de texte.
33313 \begin_inset Box Boxed
33314 position "c"
33315 hor_pos "c"
33316 has_inner_box 1
33317 inner_pos "t"
33318 use_parbox 0
33319 use_makebox 0
33320 width "12col%"
33321 special "none"
33322 height "1.5in"
33323 height_special "totalheight"
33324 status collapsed
33325
33326 \begin_layout Plain Layout
33327 \align center
33328 Le texte de cette boîte est aligné sur le haut.
33329 \end_layout
33330
33331 \end_inset
33332
33333  Ceci est un exemple de texte.
33334 \end_layout
33335
33336 \begin_layout Description
33337 milieu Ceci est un exemple de texte.
33338  
33339 \begin_inset Box Boxed
33340 position "c"
33341 hor_pos "c"
33342 has_inner_box 1
33343 inner_pos "c"
33344 use_parbox 0
33345 use_makebox 0
33346 width "12col%"
33347 special "none"
33348 height "1.5in"
33349 height_special "totalheight"
33350 status collapsed
33351
33352 \begin_layout Plain Layout
33353 \align center
33354 Le texte de cette boîte est aligné au centre
33355 \end_layout
33356
33357 \end_inset
33358
33359  Ceci est un exemple de texte.
33360 \end_layout
33361
33362 \begin_layout Description
33363 bas Ceci est un exemple de texte.
33364  
33365 \begin_inset Box Boxed
33366 position "c"
33367 hor_pos "c"
33368 has_inner_box 1
33369 inner_pos "b"
33370 use_parbox 0
33371 use_makebox 0
33372 width "12col%"
33373 special "none"
33374 height "1.5in"
33375 height_special "totalheight"
33376 status collapsed
33377
33378 \begin_layout Plain Layout
33379 \align center
33380 Le texte de cette boîte est aligné en bas.
33381 \end_layout
33382
33383 \end_inset
33384
33385  Ceci est un exemple de texte.
33386 \end_layout
33387
33388 \begin_layout Description
33389 élongation Ceci est un exemple de texte.
33390  
33391 \begin_inset Box Boxed
33392 position "c"
33393 hor_pos "c"
33394 has_inner_box 1
33395 inner_pos "s"
33396 use_parbox 0
33397 use_makebox 0
33398 width "12col%"
33399 special "none"
33400 height "1.5in"
33401 height_special "totalheight"
33402 status collapsed
33403
33404 \begin_layout Plain Layout
33405 \align center
33406 Le texte 
33407 \end_layout
33408
33409 \begin_layout Plain Layout
33410 \align center
33411 de cette
33412 \end_layout
33413
33414 \begin_layout Plain Layout
33415 \align center
33416 boîte est
33417 \end_layout
33418
33419 \begin_layout Plain Layout
33420 \align center
33421 allongé.
33422 \end_layout
33423
33424 \end_inset
33425
33426  Ceci est un exemple de texte.
33427 \end_layout
33428
33429 \begin_layout Standard
33430 Pour allonger le contenu d'une boîte, il doit être constitué de plus d'un
33431  paragraphe.
33432  Dans l'exemple ci-dessus, chaque ligne de texte a son propre paragraphe.
33433 \end_layout
33434
33435 \begin_layout Standard
33436 \begin_inset VSpace bigskip
33437 \end_inset
33438
33439 Pour aligner horizontalement le contenu d'une boîte vous pouvez utiliser
33440  la fenêtre de dialogue 
33441 \family sans
33442 Paramètres
33443 \begin_inset space ~
33444 \end_inset
33445
33446 de
33447 \begin_inset space ~
33448 \end_inset
33449
33450 paragraphe
33451 \family default
33452  quand vous avez choisi une 
33453 \family sans
33454 Boîte
33455 \begin_inset space ~
33456 \end_inset
33457
33458 Intérieure
33459 \family default
33460 .
33461 \end_layout
33462
33463 \begin_layout Standard
33464 \align center
33465 \begin_inset Box Boxed
33466 position "c"
33467 hor_pos "c"
33468 has_inner_box 1
33469 inner_pos "s"
33470 use_parbox 0
33471 use_makebox 0
33472 width "15col%"
33473 special "none"
33474 height "1.25in"
33475 height_special "totalheight"
33476 status open
33477
33478 \begin_layout Plain Layout
33479 \align left
33480 Le texte de 
33481 \end_layout
33482
33483 \begin_layout Plain Layout
33484 \align left
33485 cette boîte
33486 \end_layout
33487
33488 \begin_layout Plain Layout
33489 \align right
33490 est allongé.
33491 \end_layout
33492
33493 \end_inset
33494
33495
33496 \end_layout
33497
33498 \begin_layout Standard
33499 Si vous n'avez pas choisi une 
33500 \family sans
33501 Boîte
33502 \begin_inset space ~
33503 \end_inset
33504
33505 Intérieure
33506 \family default
33507 , vous pouvez allonger le contenu de la boîte horizontalement avec la fenêtre
33508  de dialogue de boîte.
33509 \end_layout
33510
33511 \begin_layout Standard
33512 \align center
33513 \begin_inset Box Boxed
33514 position "c"
33515 hor_pos "s"
33516 has_inner_box 0
33517 inner_pos "s"
33518 use_parbox 0
33519 use_makebox 0
33520 width "90col%"
33521 special "none"
33522 height "1.25in"
33523 height_special "totalheight"
33524 status open
33525
33526 \begin_layout Plain Layout
33527 Le texte de cette boîte est allongé horizontalement.
33528 \end_layout
33529
33530 \end_inset
33531
33532
33533 \end_layout
33534
33535 \begin_layout Subsection
33536 Décorations
33537 \begin_inset CommandInset label
33538 LatexCommand label
33539 name "sec:Décorations"
33540
33541 \end_inset
33542
33543
33544 \begin_inset Index idx
33545 status collapsed
33546
33547 \begin_layout Plain Layout
33548 Boîtes ! Décorations
33549 \end_layout
33550
33551 \end_inset
33552
33553
33554 \end_layout
33555
33556 \begin_layout Standard
33557 On peut spécifier le style de la boîte en utilisant la liste déroulante
33558  
33559 \family sans
33560 Décoration
33561 \family default
33562 .
33563  Les possibilités sont les suivantes :
33564 \end_layout
33565
33566 \begin_layout Description
33567 Aucun
33568 \begin_inset space ~
33569 \end_inset
33570
33571 cadre
33572 \begin_inset space ~
33573 \end_inset
33574
33575 tracé Rien n'est tracé
33576 \end_layout
33577
33578 \begin_layout Description
33579 Cadre
33580 \begin_inset space ~
33581 \end_inset
33582
33583 rectangulaire
33584 \begin_inset space ~
33585 \end_inset
33586
33587 simple Ceci dessine un cadre rectangulaire autour de la boîte.
33588  L'épaisseur du trait de ce cadre est donnée par la variable  
33589 \series bold
33590
33591 \backslash
33592 fboxrule
33593 \series default
33594 .
33595 \begin_inset Newline newline
33596 \end_inset
33597
33598
33599 \begin_inset Box Boxed
33600 position "c"
33601 hor_pos "c"
33602 has_inner_box 1
33603 inner_pos "c"
33604 use_parbox 0
33605 use_makebox 0
33606 width "20col%"
33607 special "none"
33608 height "1in"
33609 height_special "totalheight"
33610 status open
33611
33612 \begin_layout Plain Layout
33613 \align center
33614 Boîte rectangulaire
33615 \end_layout
33616
33617 \end_inset
33618
33619
33620 \end_layout
33621
33622 \begin_layout Description
33623 Cadre
33624 \begin_inset space ~
33625 \end_inset
33626
33627 oval,
33628 \begin_inset space ~
33629 \end_inset
33630
33631 fin Ceci dessine un cadre ovalisée autour de la boîte.
33632  L'épaisseur du trait de ce cadre est de  0.4
33633 \begin_inset space \thinspace{}
33634 \end_inset
33635
33636 pt.
33637  
33638 \begin_inset Box ovalbox
33639 position "c"
33640 hor_pos "c"
33641 has_inner_box 1
33642 inner_pos "c"
33643 use_parbox 0
33644 use_makebox 0
33645 width "20col%"
33646 special "none"
33647 height "1in"
33648 height_special "totalheight"
33649 status open
33650
33651 \begin_layout Plain Layout
33652 \align center
33653 Boîte ovalisée, fine
33654 \end_layout
33655
33656 \end_inset
33657
33658
33659 \end_layout
33660
33661 \begin_layout Description
33662 Cadre
33663 \begin_inset space ~
33664 \end_inset
33665
33666 oval,
33667 \begin_inset space ~
33668 \end_inset
33669
33670 épais Ceci dessine un cadre ovalisée autour de la boîte.
33671  L'épaisseur du trait de ce cadre est de   0.8
33672 \begin_inset space \thinspace{}
33673 \end_inset
33674
33675 pt.
33676  
33677 \begin_inset Box Ovalbox
33678 position "c"
33679 hor_pos "c"
33680 has_inner_box 1
33681 inner_pos "c"
33682 use_parbox 0
33683 use_makebox 0
33684 width "20col%"
33685 special "none"
33686 height "1in"
33687 height_special "totalheight"
33688 status open
33689
33690 \begin_layout Plain Layout
33691 \align center
33692 Boîte ovalisée, épaisse
33693 \end_layout
33694
33695 \end_inset
33696
33697
33698 \end_layout
33699
33700 \begin_layout Description
33701 Ombre
33702 \begin_inset space ~
33703 \end_inset
33704
33705 en
33706 \begin_inset space ~
33707 \end_inset
33708
33709 relief Ceci dessine un cadre rectangulaire avec une ombre autour de la boîte.
33710  L'épaisseur du trait de ce cadre est donnée par la variable  
33711 \series bold
33712
33713 \backslash
33714 fboxrule
33715 \series default
33716 , l'ombre a une épaisseur de  4
33717 \begin_inset space \thinspace{}
33718 \end_inset
33719
33720 pt.
33721  
33722 \begin_inset Box Shadowbox
33723 position "c"
33724 hor_pos "c"
33725 has_inner_box 1
33726 inner_pos "c"
33727 use_parbox 0
33728 use_makebox 0
33729 width "20col%"
33730 special "none"
33731 height "1in"
33732 height_special "totalheight"
33733 status open
33734
33735 \begin_layout Plain Layout
33736 \align center
33737 Boîte ombrée
33738 \end_layout
33739
33740 \end_inset
33741
33742
33743 \end_layout
33744
33745 \begin_layout Description
33746 Fond
33747 \begin_inset space ~
33748 \end_inset
33749
33750 ombré Ceci dessine une boîte avec un arrière plan rouge.
33751  Contrairement aux boîtes coloriées
33752 \begin_inset Foot
33753 status collapsed
33754
33755 \begin_layout Plain Layout
33756 Voir la section
33757 \begin_inset space ~
33758 \end_inset
33759
33760
33761 \begin_inset CommandInset ref
33762 LatexCommand ref
33763 reference "sec:Boîtes-colorées"
33764
33765 \end_inset
33766
33767 .
33768 \end_layout
33769
33770 \end_inset
33771
33772 , elle utilise toujours toute la largeur de la colonne et la boîte constitue
33773  son propre paragraphe.
33774 \begin_inset Box Shaded
33775 position "t"
33776 hor_pos "c"
33777 has_inner_box 0
33778 inner_pos "t"
33779 use_parbox 0
33780 use_makebox 0
33781 width "50col%"
33782 special "none"
33783 height "1in"
33784 height_special "totalheight"
33785 status open
33786
33787 \begin_layout Plain Layout
33788 Boîte avec fond ombré
33789 \end_layout
33790
33791 \end_inset
33792
33793
33794 \end_layout
33795
33796 \begin_layout Description
33797 Cadre
33798 \begin_inset space ~
33799 \end_inset
33800
33801 rectangulaire
33802 \begin_inset space ~
33803 \end_inset
33804
33805 dédoublé Ceci dessine un cadre rectangulaire à deux traits autour de la
33806  boîte.
33807  L'épaisseur du trait du cadre interne est de 0.75
33808 \begin_inset space \thinspace{}
33809 \end_inset
33810
33811
33812 \series bold
33813
33814 \backslash
33815 fboxrule
33816 \series default
33817 , l'épaisseur du trait du cadre externe est de 1.5
33818 \begin_inset space \thinspace{}
33819 \end_inset
33820
33821
33822 \series bold
33823
33824 \backslash
33825 fboxrule
33826 \series default
33827 .
33828  La distance entre les deux cadres est de  1.5
33829 \begin_inset space \thinspace{}
33830 \end_inset
33831
33832
33833 \series bold
33834
33835 \backslash
33836 fboxrule
33837 \series default
33838
33839 \begin_inset space \thinspace{}
33840 \end_inset
33841
33842 +
33843 \begin_inset space \thinspace{}
33844 \end_inset
33845
33846 0.5
33847 \begin_inset space \thinspace{}
33848 \end_inset
33849
33850 pt.
33851  
33852 \begin_inset Box Doublebox
33853 position "c"
33854 hor_pos "c"
33855 has_inner_box 1
33856 inner_pos "c"
33857 use_parbox 0
33858 use_makebox 0
33859 width "20col%"
33860 special "none"
33861 height "1in"
33862 height_special "totalheight"
33863 status open
33864
33865 \begin_layout Plain Layout
33866 \align center
33867 Boîte double
33868 \end_layout
33869
33870 \end_inset
33871
33872
33873 \end_layout
33874
33875 \begin_layout Standard
33876 \begin_inset VSpace bigskip
33877 \end_inset
33878
33879 L'étiquette qui se trouve sur la boîte dans LyX s'adapte pour montrer le
33880  style de boîte utilisé.
33881  Pour pouvoir utiliser ces différents types de cadres, vous devez installer
33882  le paquetage LaTeX 
33883 \series bold
33884 fancybox
33885 \series default
33886
33887 \begin_inset Index idx
33888 status collapsed
33889
33890 \begin_layout Plain Layout
33891 Paquetages LaTeX ! fancybox
33892 \end_layout
33893
33894 \end_inset
33895
33896 .
33897 \end_layout
33898
33899 \begin_layout Standard
33900 \begin_inset VSpace bigskip
33901 \end_inset
33902
33903 Quand vous utilisez le style de décoration 
33904 \family sans
33905 cadre rectangulaire simple
33906 \family default
33907  sans boîte intérieure, vous pouvez autoriser les sauts de page à l'intérieur
33908  de la boîte.
33909  Notez que dans ce cas, contrairement aux autres boîtes avec cadre, le cadre
33910  prendra toute la largeur de la colonne, la boîte sera considérée comme
33911  son propre paragraphe et 
33912 \series bold
33913
33914 \backslash
33915 fboxrule
33916 \series default
33917  et 
33918 \series bold
33919
33920 \backslash
33921 fboxsep
33922 \series default
33923  n'ont aucun effet sur ce type de boîte.
33924  L'épaisseur de la ligne du cadre a la valeur de 
33925 \series bold
33926
33927 \backslash
33928 FrameRule
33929 \series default
33930 .
33931  
33932 \begin_inset Box Framed
33933 position "t"
33934 hor_pos "c"
33935 has_inner_box 0
33936 inner_pos "t"
33937 use_parbox 0
33938 use_makebox 0
33939 width "100col%"
33940 special "none"
33941 height "1in"
33942 height_special "totalheight"
33943 status collapsed
33944
33945 \begin_layout Plain Layout
33946 Boîte avec cadre simple et sauts de page
33947 \end_layout
33948
33949 \end_inset
33950
33951
33952 \end_layout
33953
33954 \begin_layout Section
33955 Personnalisation des boîtes
33956 \begin_inset Index idx
33957 status collapsed
33958
33959 \begin_layout Plain Layout
33960 Boîtes! Personnalisation
33961 \end_layout
33962
33963 \end_inset
33964
33965
33966 \end_layout
33967
33968 \begin_layout Standard
33969 La valeur implicite pour la variable 
33970 \series bold
33971
33972 \backslash
33973 fboxrule
33974 \series default
33975  est 0.4
33976 \begin_inset space \thinspace{}
33977 \end_inset
33978
33979 pt.
33980  Elle peut être modifiée avec la commande suivante en code TeX, par exemple
33981  pour avoir 2
33982 \begin_inset space \thinspace{}
33983 \end_inset
33984
33985 pt :
33986 \end_layout
33987
33988 \begin_layout Standard
33989
33990 \series bold
33991
33992 \backslash
33993 setlength{
33994 \backslash
33995 fboxrule}{2pt}
33996 \end_layout
33997
33998 \begin_layout Standard
33999 \begin_inset ERT
34000 status collapsed
34001
34002 \begin_layout Plain Layout
34003
34004
34005 \backslash
34006 setlength{
34007 \backslash
34008 fboxrule}{2pt}
34009 \end_layout
34010
34011 \end_inset
34012
34013
34014 \begin_inset Box Boxed
34015 position "c"
34016 hor_pos "c"
34017 has_inner_box 1
34018 inner_pos "c"
34019 use_parbox 0
34020 use_makebox 0
34021 width "25col%"
34022 special "none"
34023 height "1in"
34024 height_special "totalheight"
34025 status open
34026
34027 \begin_layout Plain Layout
34028 \align center
34029 Boîte rectangulaire avec 
34030 \series bold
34031
34032 \backslash
34033 fboxrule
34034 \series default
34035
34036 \begin_inset space \thinspace{}
34037 \end_inset
34038
34039 =
34040 \begin_inset space \thinspace{}
34041 \end_inset
34042
34043 2
34044 \begin_inset space \thinspace{}
34045 \end_inset
34046
34047 pt
34048 \end_layout
34049
34050 \end_inset
34051
34052
34053 \begin_inset ERT
34054 status collapsed
34055
34056 \begin_layout Plain Layout
34057
34058
34059 \backslash
34060 setlength{
34061 \backslash
34062 fboxrule}{0.4pt}
34063 \end_layout
34064
34065 \end_inset
34066
34067
34068 \end_layout
34069
34070 \begin_layout Standard
34071 \begin_inset VSpace bigskip
34072 \end_inset
34073
34074 L'espace entre le cadre et le contenu de la boîte est le même pour tous
34075  les types de cadres, implicitement il est de 3
34076 \begin_inset space \thinspace{}
34077 \end_inset
34078
34079 pt.
34080  Vous pouvez le modifier en donnant une autre valeur à la variable 
34081 \series bold
34082
34083 \backslash
34084 fboxsep
34085 \series default
34086 .
34087  Par exemple la commande
34088 \end_layout
34089
34090 \begin_layout Standard
34091
34092 \series bold
34093
34094 \backslash
34095 setlength{
34096 \backslash
34097 fboxsep}{10pt}
34098 \end_layout
34099
34100 \begin_layout Standard
34101 met une valeur de 10
34102 \begin_inset space \thinspace{}
34103 \end_inset
34104
34105 pt, comme celle utilisée pour cette boîte :
34106 \end_layout
34107
34108 \begin_layout Standard
34109 \begin_inset ERT
34110 status collapsed
34111
34112 \begin_layout Plain Layout
34113
34114
34115 \backslash
34116 setlength{
34117 \backslash
34118 fboxsep}{10pt}
34119 \end_layout
34120
34121 \end_inset
34122
34123
34124 \begin_inset Box Boxed
34125 position "c"
34126 hor_pos "c"
34127 has_inner_box 1
34128 inner_pos "c"
34129 use_parbox 0
34130 use_makebox 0
34131 width "25col%"
34132 special "none"
34133 height "1in"
34134 height_special "totalheight"
34135 status open
34136
34137 \begin_layout Plain Layout
34138 \align center
34139 Boîte rectangulaire avec 
34140 \series bold
34141
34142 \backslash
34143 fboxsep
34144 \series default
34145
34146 \begin_inset space \thinspace{}
34147 \end_inset
34148
34149 =
34150 \begin_inset space \thinspace{}
34151 \end_inset
34152
34153 10
34154 \begin_inset space \thinspace{}
34155 \end_inset
34156
34157 pt
34158 \end_layout
34159
34160 \end_inset
34161
34162
34163 \begin_inset ERT
34164 status collapsed
34165
34166 \begin_layout Plain Layout
34167
34168
34169 \backslash
34170 setlength{
34171 \backslash
34172 fboxsep}{3pt}
34173 \end_layout
34174
34175 \end_inset
34176
34177
34178 \end_layout
34179
34180 \begin_layout Standard
34181 \begin_inset VSpace bigskip
34182 \end_inset
34183
34184 Le diamètre des coins arrondis des boîtes ovalisées peut être modifié par
34185  la commande 
34186 \series bold
34187
34188 \backslash
34189 cornersize
34190 \series default
34191 .
34192  Par exemple, la commande
34193 \end_layout
34194
34195 \begin_layout Standard
34196
34197 \series bold
34198
34199 \backslash
34200 cornersize*{1cm}
34201 \end_layout
34202
34203 \begin_layout Standard
34204 donne un diamètre de 1
34205 \begin_inset space \thinspace{}
34206 \end_inset
34207
34208 cm.
34209  La commande
34210 \end_layout
34211
34212 \begin_layout Standard
34213
34214 \series bold
34215
34216 \backslash
34217 cornersize{num}
34218 \end_layout
34219
34220 \begin_layout Standard
34221 fixe le diamètre à 
34222 \family sans
34223 num
34224 \begin_inset space \thinspace{}
34225 \end_inset
34226
34227 ×
34228 \begin_inset space \thinspace{}
34229 \end_inset
34230
34231 minimum(largeur et hauteur de la boîte)
34232 \family default
34233 .
34234  La valeur implicite est 
34235 \series bold
34236
34237 \backslash
34238 cornersize{0.5}
34239 \series default
34240 .
34241 \end_layout
34242
34243 \begin_layout Standard
34244 \begin_inset ERT
34245 status collapsed
34246
34247 \begin_layout Plain Layout
34248
34249
34250 \backslash
34251 cornersize*{1.5cm}
34252 \end_layout
34253
34254 \end_inset
34255
34256
34257 \begin_inset Box Ovalbox
34258 position "c"
34259 hor_pos "c"
34260 has_inner_box 1
34261 inner_pos "c"
34262 use_parbox 0
34263 use_makebox 0
34264 width "25col%"
34265 special "none"
34266 height "1in"
34267 height_special "totalheight"
34268 status open
34269
34270 \begin_layout Plain Layout
34271 \align center
34272 Boîte ovale avec 
34273 \series bold
34274
34275 \backslash
34276 cornersize
34277 \series default
34278
34279 \begin_inset space \thinspace{}
34280 \end_inset
34281
34282 =
34283 \begin_inset space \thinspace{}
34284 \end_inset
34285
34286 1.5
34287 \begin_inset space \thinspace{}
34288 \end_inset
34289
34290 cm
34291 \end_layout
34292
34293 \end_inset
34294
34295
34296 \begin_inset ERT
34297 status collapsed
34298
34299 \begin_layout Plain Layout
34300
34301
34302 \backslash
34303 cornersize{0.5}
34304 \end_layout
34305
34306 \end_inset
34307
34308
34309 \end_layout
34310
34311 \begin_layout Standard
34312 \begin_inset VSpace bigskip
34313 \end_inset
34314
34315 La taille de l'ombre peut être ajustée en changeant la valeur de la variable
34316  
34317 \series bold
34318
34319 \backslash
34320 shadowsize
34321 \series default
34322 .
34323  Elle est fixée à 2
34324 \begin_inset space \thinspace{}
34325 \end_inset
34326
34327 pt pour la boîte suivante par la commande :
34328 \end_layout
34329
34330 \begin_layout Standard
34331
34332 \series bold
34333
34334 \backslash
34335 setlength{
34336 \backslash
34337 shadowsize}{2pt}
34338 \end_layout
34339
34340 \begin_layout Standard
34341 \begin_inset ERT
34342 status collapsed
34343
34344 \begin_layout Plain Layout
34345
34346
34347 \backslash
34348 setlength{
34349 \backslash
34350 shadowsize}{2pt}
34351 \end_layout
34352
34353 \end_inset
34354
34355
34356 \begin_inset Box Shadowbox
34357 position "c"
34358 hor_pos "c"
34359 has_inner_box 1
34360 inner_pos "c"
34361 use_parbox 0
34362 use_makebox 0
34363 width "25col%"
34364 special "none"
34365 height "1in"
34366 height_special "totalheight"
34367 status open
34368
34369 \begin_layout Plain Layout
34370 \align center
34371 Boîte ombrée avec 
34372 \series bold
34373
34374 \backslash
34375 shadowsize
34376 \series default
34377
34378 \begin_inset space \thinspace{}
34379 \end_inset
34380
34381 =
34382 \begin_inset space \thinspace{}
34383 \end_inset
34384
34385 2
34386 \begin_inset space \thinspace{}
34387 \end_inset
34388
34389 pt
34390 \end_layout
34391
34392 \end_inset
34393
34394
34395 \begin_inset ERT
34396 status collapsed
34397
34398 \begin_layout Plain Layout
34399
34400
34401 \backslash
34402 setlength{
34403 \backslash
34404 shadowsize}{4pt}
34405 \end_layout
34406
34407 \end_inset
34408
34409
34410 \end_layout
34411
34412 \begin_layout Standard
34413 \begin_inset VSpace bigskip
34414 \end_inset
34415
34416
34417 \end_layout
34418
34419 \begin_layout Standard
34420 La valeur implicite pour la longueur 
34421 \series bold
34422
34423 \backslash
34424 FrameRule
34425 \series default
34426  est 0,4
34427 \begin_inset space \thinspace{}
34428 \end_inset
34429
34430 pt.
34431  L'espacement implicite entre le contenu de la note et le cadre est de 9
34432 \begin_inset space \thinspace{}
34433 \end_inset
34434
34435 pt et il peut être modifié en utilisant la valeur de 
34436 \series bold
34437
34438 \backslash
34439 FrameSep
34440 \series default
34441 .
34442  Par exemple, l'apparence de la boîte suivante a été modifiée avec les commandes
34443  suivantes en code TeX
34444 \end_layout
34445
34446 \begin_layout Standard
34447
34448 \series bold
34449
34450 \backslash
34451 setlength{
34452 \backslash
34453 FrameRule}{5pt}
34454 \begin_inset Newline newline
34455 \end_inset
34456
34457
34458 \backslash
34459 setlength{
34460 \backslash
34461 FrameSep}{0.5cm}
34462 \end_layout
34463
34464 \begin_layout Standard
34465 \begin_inset ERT
34466 status collapsed
34467
34468 \begin_layout Plain Layout
34469
34470
34471 \backslash
34472 setlength{
34473 \backslash
34474 FrameRule}{5pt}
34475 \end_layout
34476
34477 \begin_layout Plain Layout
34478
34479
34480 \backslash
34481 setlength{
34482 \backslash
34483 FrameSep}{0.5cm}
34484 \end_layout
34485
34486 \end_inset
34487
34488
34489 \begin_inset Box Framed
34490 position "t"
34491 hor_pos "c"
34492 has_inner_box 0
34493 inner_pos "t"
34494 use_parbox 0
34495 use_makebox 0
34496 width "100col%"
34497 special "none"
34498 height "1in"
34499 height_special "totalheight"
34500 status open
34501
34502 \begin_layout Plain Layout
34503 Ceci est un texte dans une boîte autorisant les 
34504 \family sans
34505 sauts de page
34506 \family default
34507 .
34508 \end_layout
34509
34510 \end_inset
34511
34512
34513 \begin_inset ERT
34514 status collapsed
34515
34516 \begin_layout Plain Layout
34517
34518
34519 \backslash
34520 setlength{
34521 \backslash
34522 FrameRule}{0.4pt}
34523 \end_layout
34524
34525 \begin_layout Plain Layout
34526
34527
34528 \backslash
34529 setlength{
34530 \backslash
34531 FrameSep}{9pt}
34532 \end_layout
34533
34534 \end_inset
34535
34536
34537 \end_layout
34538
34539 \begin_layout Standard
34540 \begin_inset VSpace bigskip
34541 \end_inset
34542
34543
34544 \end_layout
34545
34546 \begin_layout Standard
34547 Pour les boîtes à 
34548 \family sans
34549 Fond
34550 \begin_inset space ~
34551 \end_inset
34552
34553 ombré
34554 \family default
34555 , l'espacement implicite entre le contenu de la boîte et son cadre est de
34556  3
34557 \begin_inset space \thinspace{}
34558 \end_inset
34559
34560 pt et il peut être modifié avec la valeur de 
34561 \series bold
34562
34563 \backslash
34564 fboxsep
34565 \series default
34566 .
34567  La couleur rouge utilisée implicitement pour le fond peut soit être modifiée
34568  localement avec la commande 
34569 \series bold
34570
34571 \backslash
34572 definecolor{shadecolor}
34573 \series default
34574 , soit globalement avec le menu 
34575 \family sans
34576 Outils\SpecialChar \menuseparator
34577 Préférences
34578 \family default
34579 \SpecialChar \menuseparator
34580
34581 \family sans
34582 Couleurs\SpecialChar \menuseparator
34583 boîte
34584 \begin_inset space ~
34585 \end_inset
34586
34587 ombrée
34588 \family default
34589 .
34590  La syntaxe de la commande 
34591 \series bold
34592
34593 \backslash
34594 definecolor
34595 \series default
34596  est expliquée dans la section
34597 \begin_inset space ~
34598 \end_inset
34599
34600
34601 \begin_inset CommandInset ref
34602 LatexCommand ref
34603 reference "sec:Tableaux-Colorés"
34604
34605 \end_inset
34606
34607
34608 \begin_inset Foot
34609 status collapsed
34610
34611 \begin_layout Plain Layout
34612 Notez que l'utilisation de 
34613 \series bold
34614
34615 \backslash
34616 definecolor
34617 \series default
34618  ne peut se faire sans le paquetage LaTeX 
34619 \series bold
34620 color
34621 \series default
34622  dans le préambule, voir la section
34623 \begin_inset space ~
34624 \end_inset
34625
34626
34627 \begin_inset CommandInset ref
34628 LatexCommand ref
34629 reference "sec:Boîtes-colorées"
34630
34631 \end_inset
34632
34633 .
34634  
34635 \end_layout
34636
34637 \end_inset
34638
34639 .
34640 \end_layout
34641
34642 \begin_layout Standard
34643 Par exemple l'apparence de la note à fond ombré suivante a été modifié avec
34644  les commandes en code TeX suivantes
34645 \end_layout
34646
34647 \begin_layout Standard
34648
34649 \series bold
34650
34651 \backslash
34652 setlength{
34653 \backslash
34654 fboxsep}{0.5cm}
34655 \series default
34656
34657 \begin_inset Newline newline
34658 \end_inset
34659
34660
34661 \series bold
34662
34663 \backslash
34664 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
34665 \end_layout
34666
34667 \begin_layout Standard
34668 \begin_inset ERT
34669 status collapsed
34670
34671 \begin_layout Plain Layout
34672
34673
34674 \backslash
34675 setlength{
34676 \backslash
34677 fboxsep}{0.5cm}
34678 \end_layout
34679
34680 \begin_layout Plain Layout
34681
34682
34683 \backslash
34684 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
34685 \end_layout
34686
34687 \end_inset
34688
34689
34690 \begin_inset Box Shaded
34691 position "t"
34692 hor_pos "c"
34693 has_inner_box 0
34694 inner_pos "t"
34695 use_parbox 0
34696 use_makebox 0
34697 width "100col%"
34698 special "none"
34699 height "1in"
34700 height_special "totalheight"
34701 status open
34702
34703 \begin_layout Plain Layout
34704
34705 \color yellow
34706 Ceci est un texte jaune dans une boîte à 
34707 \family sans
34708 Fond
34709 \begin_inset space ~
34710 \end_inset
34711
34712 ombré
34713 \family default
34714 \color inherit
34715  
34716 \color yellow
34717 avec un fond vert foncé.
34718 \end_layout
34719
34720 \end_inset
34721
34722
34723 \begin_inset ERT
34724 status collapsed
34725
34726 \begin_layout Plain Layout
34727
34728
34729 \backslash
34730 setlength{
34731 \backslash
34732 fboxsep}{3pt}
34733 \end_layout
34734
34735 \begin_layout Plain Layout
34736
34737
34738 \backslash
34739 definecolor{shadecolor}{rgb}{1,0,0}
34740 \end_layout
34741
34742 \end_inset
34743
34744
34745 \end_layout
34746
34747 \begin_layout Standard
34748 \begin_inset VSpace bigskip
34749 \end_inset
34750
34751
34752 \end_layout
34753
34754 \begin_layout Standard
34755 Les longueurs et les largeurs ainsi modifiées restent valables pour toutes
34756  les boîtes qui suivent la commandes qui les a changées.
34757 \end_layout
34758
34759 \begin_layout Section
34760 Minipages
34761 \begin_inset CommandInset label
34762 LatexCommand label
34763 name "sec:Minipages"
34764
34765 \end_inset
34766
34767
34768 \begin_inset Index idx
34769 status collapsed
34770
34771 \begin_layout Plain Layout
34772 Boîtes ! Minipages
34773 \end_layout
34774
34775 \end_inset
34776
34777
34778 \end_layout
34779
34780 \begin_layout Standard
34781 LaTeX fournit un mécanisme qui, en fait, permet de produire une page à l'intérie
34782 ur d'une page.
34783  On parle alors d'une minipage, et à l'intérieur de celle-ci, toutes les
34784  règles d'indentation, de saut de ligne, etc.
34785  s'appliquent.
34786 \end_layout
34787
34788 \begin_layout Standard
34789 Les minipages sont par exemple utiles quand on écrit un document avec plusieurs
34790  langues.
34791 \end_layout
34792
34793 \begin_layout Standard
34794 Ci-dessous, vous avez deux exemples de minipages côte-à-côte.
34795  Leur largeur est fixée à 45
34796 \begin_inset space \thinspace{}
34797 \end_inset
34798
34799 col% et elles sont séparées par un ressort horizontal, qui a été inséré
34800  via le menu 
34801 \family sans
34802 Insertion\SpecialChar \menuseparator
34803 Typographie
34804 \begin_inset space ~
34805 \end_inset
34806
34807 spéciale\SpecialChar \menuseparator
34808 Ressort
34809 \begin_inset space ~
34810 \end_inset
34811
34812 Horizontal
34813 \family default
34814 .
34815 \end_layout
34816
34817 \begin_layout Standard
34818 \begin_inset Box Frameless
34819 position "t"
34820 hor_pos "c"
34821 has_inner_box 1
34822 inner_pos "c"
34823 use_parbox 0
34824 use_makebox 0
34825 width "45col%"
34826 special "none"
34827 height "1in"
34828 height_special "totalheight"
34829 status open
34830
34831 \begin_layout Plain Layout
34832
34833 \lang ngerman
34834 Dies ist ein deutscher Text.
34835  Dies ist ein deutscher Text.
34836  Dies ist ein deutscher Text.
34837  Dies ist ein deutscher Text.
34838  Dies ist ein deutscher Text.
34839  Dies ist ein deutscher Text.
34840  Dies ist ein deutscher Text.
34841  Dies ist ein deutscher Text.
34842  Dies ist ein deutscher Text.
34843  Dies ist ein deutscher Text.
34844  Dies ist ein deutscher Text.
34845  Dies ist ein deutscher Text.
34846  Dies ist ein deutscher Text
34847 \begin_inset Foot
34848 status collapsed
34849
34850 \begin_layout Plain Layout
34851
34852 \lang ngerman
34853 Dies ist eine deutsche Fußnote.
34854 \end_layout
34855
34856 \end_inset
34857
34858 .
34859  Dies ist ein deutscher Text.
34860  Dies ist ein deutscher Text.
34861 \end_layout
34862
34863 \end_inset
34864
34865
34866 \begin_inset space \hfill{}
34867 \end_inset
34868
34869
34870 \begin_inset Box Frameless
34871 position "t"
34872 hor_pos "c"
34873 has_inner_box 1
34874 inner_pos "c"
34875 use_parbox 0
34876 use_makebox 0
34877 width "45col%"
34878 special "none"
34879 height "1in"
34880 height_special "totalheight"
34881 status open
34882
34883 \begin_layout Plain Layout
34884
34885 \lang english
34886 This is an English Text.
34887  This is an English Text.
34888  This is an English Text.
34889  This is an English Text.
34890  This is an English Text.
34891  This is an English Text.
34892  This is an English Text.
34893  This is an English Text.
34894  This is an English Text.
34895  This is an English Text.
34896  This is an English Text.
34897  This is an English Text.
34898  This is an English Text.
34899  This is an English Text.
34900  This is an English Text.
34901  This is an English Text.
34902 \begin_inset Foot
34903 status collapsed
34904
34905 \begin_layout Plain Layout
34906
34907 \lang english
34908 This is an English footnote.
34909 \end_layout
34910
34911 \end_inset
34912
34913  This is an English Text.
34914 \end_layout
34915
34916 \end_inset
34917
34918
34919 \end_layout
34920
34921 \begin_layout Standard
34922 \begin_inset VSpace bigskip
34923 \end_inset
34924
34925 Les paramètres globaux du document sont ignorés au sein d'une minipage.
34926  Cela signifie qu'il n'y aura pas d'espace entre les paragraphes dans les
34927  minipages, même si vous les avez mis par exemple à 
34928 \family sans
34929 Moyen
34930 \family default
34931  dans les paramètres du document.
34932 \end_layout
34933
34934 \begin_layout Standard
34935 Les minipages peuvent être utilisées pour changer la couleur de fond d'une
34936  portion de texte, voyez la section
34937 \begin_inset space ~
34938 \end_inset
34939
34940
34941 \begin_inset CommandInset ref
34942 LatexCommand ref
34943 reference "sub:Couleur-pour-les-Paragraphes"
34944
34945 \end_inset
34946
34947 .
34948 \end_layout
34949
34950 \begin_layout Standard
34951 \begin_inset Note Greyedout
34952 status open
34953
34954 \begin_layout Plain Layout
34955
34956 \series bold
34957 Note:
34958 \series default
34959  Vous ne pouvez avoir des flottants ou des notes en marge dans un minipage,
34960  mais les minipages peuvent être utilisées dans un tableau, un flottant
34961  ou une autre boîte.
34962 \end_layout
34963
34964 \end_inset
34965
34966
34967 \end_layout
34968
34969 \begin_layout Section
34970 Les parboxes
34971 \begin_inset CommandInset label
34972 LatexCommand label
34973 name "sec:Parboxes"
34974
34975 \end_inset
34976
34977
34978 \begin_inset Index idx
34979 status collapsed
34980
34981 \begin_layout Plain Layout
34982 Boîtes ! Parboxes
34983 \end_layout
34984
34985 \end_inset
34986
34987
34988 \end_layout
34989
34990 \begin_layout Standard
34991 Les parboxes ressemblent beaucoup aux minipages à la différence qu'elles
34992  ne peuvent avoir de note de bas de page.
34993 \end_layout
34994
34995 \begin_layout Standard
34996 \align center
34997 \begin_inset Box Frameless
34998 position "t"
34999 hor_pos "c"
35000 has_inner_box 1
35001 inner_pos "t"
35002 use_parbox 1
35003 use_makebox 0
35004 width "33col%"
35005 special "none"
35006 height "1in"
35007 height_special "totalheight"
35008 status open
35009
35010 \begin_layout Plain Layout
35011 Ceci est un texte à l'intérieur d'une parbox.
35012  Ceci est un texte à l'intérieur d'une parbox.
35013 \end_layout
35014
35015 \begin_layout Plain Layout
35016 Cette note de bas de page ne devrait pas apparaître :
35017 \begin_inset Foot
35018 status open
35019
35020 \begin_layout Plain Layout
35021 Cette note de bas de page est à l'intérieur d'une parbox et donc n'apparaîtra
35022  pas.
35023 \end_layout
35024
35025 \end_inset
35026
35027
35028 \end_layout
35029
35030 \end_inset
35031
35032
35033 \end_layout
35034
35035 \begin_layout Section
35036 Des boîtes pour les mots et les caractères
35037 \begin_inset Index idx
35038 status collapsed
35039
35040 \begin_layout Plain Layout
35041 Boîtes ! Pour les caractères
35042 \end_layout
35043
35044 \end_inset
35045
35046
35047 \end_layout
35048
35049 \begin_layout Subsection
35050 Empêcher la césure
35051 \begin_inset CommandInset label
35052 LatexCommand label
35053 name "sec:Empêcher-césure"
35054
35055 \end_inset
35056
35057
35058 \begin_inset Index idx
35059 status collapsed
35060
35061 \begin_layout Plain Layout
35062 Boîtes ! Pour empêcher la césure
35063 \end_layout
35064
35065 \end_inset
35066
35067
35068 \end_layout
35069
35070 \begin_layout Standard
35071 Vous pouvez utiliser une boîte de type 
35072 \family sans
35073 Makebox
35074 \family default
35075  pour empêcher qu'un mot ou un texte ne soit coupé par une césure.
35076 \begin_inset Newline newline
35077 \end_inset
35078
35079 Voici un exemple de texte :
35080 \end_layout
35081
35082 \begin_layout Standard
35083 Cette ligne est un exemple comment vous pouvez empêcher une césure
35084 \begin_inset space ~
35085 \end_inset
35086
35087
35088 \begin_inset Quotes eld
35089 \end_inset
35090
35091 motTrèsTrèsLong
35092 \begin_inset Quotes erd
35093 \end_inset
35094
35095
35096 \end_layout
35097
35098 \begin_layout Standard
35099 Pour empêcher que le mot 
35100 \begin_inset Quotes eld
35101 \end_inset
35102
35103 motTrèsTrèsLong
35104 \begin_inset Quotes erd
35105 \end_inset
35106
35107  soit coupé, mettez le mot dans une boîte, mettez 
35108 \family sans
35109 Boîte
35110 \begin_inset space ~
35111 \end_inset
35112
35113 intérieure
35114 \family default
35115  à 
35116 \family sans
35117 Makebox
35118 \family default
35119  et sa largeur à 1
35120 \begin_inset space \thinspace{}
35121 \end_inset
35122
35123 Largeur.
35124 \end_layout
35125
35126 \begin_layout Standard
35127 Voici le résultat :
35128 \end_layout
35129
35130 \begin_layout Standard
35131 Cette ligne est un exemple comment vous pouvez empêcher une césure: 
35132 \begin_inset Box Frameless
35133 position "t"
35134 hor_pos "c"
35135 has_inner_box 1
35136 inner_pos "t"
35137 use_parbox 0
35138 use_makebox 1
35139 width "1in"
35140 special "width"
35141 height "1in"
35142 height_special "totalheight"
35143 status open
35144
35145 \begin_layout Plain Layout
35146 motTrèsTrèsLong
35147 \end_layout
35148
35149 \end_inset
35150
35151
35152 \end_layout
35153
35154 \begin_layout Standard
35155 Une autre méthode consiste à mettre la commande 
35156 \begin_inset Quotes eld
35157 \end_inset
35158
35159
35160 \series bold
35161
35162 \backslash
35163 -
35164 \series default
35165
35166 \begin_inset Quotes grd
35167 \end_inset
35168
35169  en code TeX, juste avant le mot :
35170 \end_layout
35171
35172 \begin_layout Standard
35173 Cette ligne est un exemple comment vous pouvez empêcher une césure: 
35174 \begin_inset Quotes eld
35175 \end_inset
35176
35177
35178 \begin_inset ERT
35179 status collapsed
35180
35181 \begin_layout Plain Layout
35182
35183
35184 \backslash
35185 -
35186 \end_layout
35187
35188 \end_inset
35189
35190 motTrèsTrèsLong
35191 \begin_inset Quotes erd
35192 \end_inset
35193
35194
35195 \end_layout
35196
35197 \begin_layout Standard
35198 Bien sûr, maintenant le mot dépasse dans la marge latérale.
35199  Pour éviter cela, ajoutez un saut de ligne avant le mot avec le menu 
35200 \family sans
35201 Insertion\SpecialChar \menuseparator
35202 Typographie
35203 \begin_inset space ~
35204 \end_inset
35205
35206 spéciale\SpecialChar \menuseparator
35207 Passage
35208 \begin_inset space ~
35209 \end_inset
35210
35211 à
35212 \begin_inset space ~
35213 \end_inset
35214
35215 la
35216 \begin_inset space ~
35217 \end_inset
35218
35219 Ligne
35220 \family default
35221  (raccourci 
35222 \family sans
35223 Ctrl-Entrée
35224 \family default
35225 ) :
35226 \end_layout
35227
35228 \begin_layout Standard
35229 Cette ligne est un exemple comment vous pouvez empêcher une césure:
35230 \begin_inset Newline newline
35231 \end_inset
35232
35233
35234 \begin_inset Box Frameless
35235 position "t"
35236 hor_pos "c"
35237 has_inner_box 1
35238 inner_pos "t"
35239 use_parbox 0
35240 use_makebox 1
35241 width "1in"
35242 special "width"
35243 height "1in"
35244 height_special "totalheight"
35245 status open
35246
35247 \begin_layout Plain Layout
35248 \begin_inset Quotes eld
35249 \end_inset
35250
35251 motTrèsTrèsLong
35252 \begin_inset Quotes erd
35253 \end_inset
35254
35255
35256 \end_layout
35257
35258 \end_inset
35259
35260
35261 \end_layout
35262
35263 \begin_layout Subsection
35264 Alignement vertical
35265 \begin_inset CommandInset label
35266 LatexCommand label
35267 name "sub:Alignement-Vertical"
35268
35269 \end_inset
35270
35271
35272 \begin_inset Index idx
35273 status collapsed
35274
35275 \begin_layout Plain Layout
35276 Boîtes ! Pour l'alignement vertical
35277 \end_layout
35278
35279 \end_inset
35280
35281
35282 \begin_inset Index idx
35283 status collapsed
35284
35285 \begin_layout Plain Layout
35286 Boîtes ! Boîtes élévatrices
35287 \end_layout
35288
35289 \end_inset
35290
35291
35292 \begin_inset Index idx
35293 status collapsed
35294
35295 \begin_layout Plain Layout
35296 Raisebox|see
35297 \begin_inset ERT
35298 status collapsed
35299
35300 \begin_layout Plain Layout
35301
35302 {
35303 \end_layout
35304
35305 \end_inset
35306
35307 Boîtes élévatrices
35308 \begin_inset ERT
35309 status collapsed
35310
35311 \begin_layout Plain Layout
35312
35313 }
35314 \end_layout
35315
35316 \end_inset
35317
35318
35319 \end_layout
35320
35321 \end_inset
35322
35323
35324 \end_layout
35325
35326 \begin_layout Standard
35327 Avec la commande 
35328 \series bold
35329
35330 \backslash
35331 raisebox
35332 \series default
35333  vous pouvez aligner des mots, des caractères ou d'autres boîtes, verticalement
35334  par rapport au texte qui l'entoure.
35335  La commande
35336 \series bold
35337  
35338 \backslash
35339 raisebox
35340 \series default
35341  s'utilise en suivant la syntaxe suivante :
35342 \end_layout
35343
35344 \begin_layout Standard
35345
35346 \series bold
35347
35348 \backslash
35349 raisebox{déplacement}[hauteur][profondeur]{contenu de la boîte}
35350 \end_layout
35351
35352 \begin_layout Standard
35353 Le déplacement peut être une valeur positive pour élever la boîte ou négative
35354  pour l'abaisser.
35355 \end_layout
35356
35357 \begin_layout Standard
35358 Pour aligner le mot 
35359 \begin_inset Quotes eld
35360 \end_inset
35361
35362 empêcher
35363 \begin_inset Quotes erd
35364 \end_inset
35365
35366  de façon à ce que le point le plus bas du caractère le plus 
35367 \begin_inset Quotes eld
35368 \end_inset
35369
35370 profond
35371 \begin_inset Quotes erd
35372 \end_inset
35373
35374 , le 
35375 \begin_inset Quotes eld
35376 \end_inset
35377
35378 p
35379 \begin_inset Quotes erd
35380 \end_inset
35381
35382 , soit au niveau de la ligne de base, insérez la commande 
35383 \end_layout
35384
35385 \begin_layout Standard
35386
35387 \series bold
35388
35389 \backslash
35390 raisebox{
35391 \backslash
35392 depth}{
35393 \end_layout
35394
35395 \begin_layout Standard
35396 en code TeX avant le mot.
35397  Insérez après le mot l'accolade fermante 
35398 \begin_inset Quotes eld
35399 \end_inset
35400
35401
35402 \series bold
35403 }
35404 \series default
35405
35406 \begin_inset Quotes erd
35407 \end_inset
35408
35409  en code TeX.
35410 \begin_inset Newline newline
35411 \end_inset
35412
35413 Voici le résultat :
35414 \end_layout
35415
35416 \begin_layout Standard
35417 Cette ligne de texte contient le mot 
35418 \begin_inset ERT
35419 status collapsed
35420
35421 \begin_layout Plain Layout
35422
35423
35424 \backslash
35425 raisebox{
35426 \backslash
35427 depth}{
35428 \end_layout
35429
35430 \end_inset
35431
35432
35433 \begin_inset Quotes eld
35434 \end_inset
35435
35436 empêcher
35437 \begin_inset Quotes erd
35438 \end_inset
35439
35440
35441 \begin_inset ERT
35442 status collapsed
35443
35444 \begin_layout Plain Layout
35445
35446 }
35447 \end_layout
35448
35449 \end_inset
35450
35451  comme mot élevé.
35452 \end_layout
35453
35454 \begin_layout Standard
35455 \begin_inset VSpace bigskip
35456 \end_inset
35457
35458 Quand vous élevez ou vous abaissez des caractères dans une ligne, la distance
35459  entre les lignes va être agrandie :
35460 \end_layout
35461
35462 \begin_layout Standard
35463 Cette ligne de texte contient le mot
35464 \begin_inset ERT
35465 status collapsed
35466
35467 \begin_layout Plain Layout
35468
35469
35470 \backslash
35471 raisebox{-
35472 \backslash
35473 depth}{
35474 \end_layout
35475
35476 \end_inset
35477
35478
35479 \begin_inset Quotes eld
35480 \end_inset
35481
35482 empêcher
35483 \begin_inset Quotes erd
35484 \end_inset
35485
35486
35487 \begin_inset ERT
35488 status collapsed
35489
35490 \begin_layout Plain Layout
35491
35492 }
35493 \end_layout
35494
35495 \end_inset
35496
35497  comme mot abaissé.
35498 \begin_inset Newline newline
35499 \end_inset
35500
35501 Cette ligne de texte contient le mot 
35502 \begin_inset ERT
35503 status collapsed
35504
35505 \begin_layout Plain Layout
35506
35507
35508 \backslash
35509 raisebox{0.5cm}{
35510 \end_layout
35511
35512 \end_inset
35513
35514
35515 \begin_inset Quotes eld
35516 \end_inset
35517
35518 tester
35519 \begin_inset Quotes erd
35520 \end_inset
35521
35522
35523 \begin_inset ERT
35524 status collapsed
35525
35526 \begin_layout Plain Layout
35527
35528 }
35529 \end_layout
35530
35531 \end_inset
35532
35533  comme mot élevé.
35534 \end_layout
35535
35536 \begin_layout Standard
35537 Si, pour une raison ou une autre, vous voulez empêcher que cela se produise,
35538  mettez la hauteur de la boîte à zéro.
35539  Par exemple utilisez
35540 \end_layout
35541
35542 \begin_layout Standard
35543
35544 \series bold
35545
35546 \backslash
35547 raisebox{-
35548 \backslash
35549 depth}[0pt]{
35550 \end_layout
35551
35552 \begin_layout Standard
35553 Cette ligne de texte contient le mot
35554 \begin_inset ERT
35555 status collapsed
35556
35557 \begin_layout Plain Layout
35558
35559
35560 \backslash
35561 raisebox{-
35562 \backslash
35563 depth}[0pt]{
35564 \end_layout
35565
35566 \end_inset
35567
35568
35569 \begin_inset Quotes eld
35570 \end_inset
35571
35572 empêcher
35573 \begin_inset Quotes erd
35574 \end_inset
35575
35576
35577 \begin_inset ERT
35578 status collapsed
35579
35580 \begin_layout Plain Layout
35581
35582 }
35583 \end_layout
35584
35585 \end_inset
35586
35587  comme mot abaissé.
35588 \begin_inset Newline newline
35589 \end_inset
35590
35591 Cette ligne de texte contient le mot 
35592 \begin_inset ERT
35593 status collapsed
35594
35595 \begin_layout Plain Layout
35596
35597
35598 \backslash
35599 raisebox{0.5cm}[0pt]{
35600 \end_layout
35601
35602 \end_inset
35603
35604
35605 \begin_inset Quotes eld
35606 \end_inset
35607
35608 tester
35609 \begin_inset Quotes erd
35610 \end_inset
35611
35612
35613 \begin_inset ERT
35614 status collapsed
35615
35616 \begin_layout Plain Layout
35617
35618 }
35619 \end_layout
35620
35621 \end_inset
35622
35623  comme mot élevé.
35624 \end_layout
35625
35626 \begin_layout Section
35627 Boîtes colorées
35628 \begin_inset CommandInset label
35629 LatexCommand label
35630 name "sec:Boîtes-colorées"
35631
35632 \end_inset
35633
35634
35635 \begin_inset Index idx
35636 status collapsed
35637
35638 \begin_layout Plain Layout
35639 Boîtes ! Couleur
35640 \end_layout
35641
35642 \end_inset
35643
35644
35645 \end_layout
35646
35647 \begin_layout Subsection
35648 De la couleur pour le texte
35649 \begin_inset Index idx
35650 status collapsed
35651
35652 \begin_layout Plain Layout
35653 Couleur ! Pour le texte
35654 \end_layout
35655
35656 \end_inset
35657
35658
35659 \end_layout
35660
35661 \begin_layout Standard
35662 Pour pouvoir colorer la couleur de fond d'un texte, il faut le mettre dans
35663  une boîte appelée 
35664 \begin_inset Quotes eld
35665 \end_inset
35666
35667 colorbox
35668 \begin_inset Quotes erd
35669 \end_inset
35670
35671 .
35672  Cela demande que le paquetage LaTeX 
35673 \series bold
35674 color
35675 \series default
35676
35677 \begin_inset Index idx
35678 status collapsed
35679
35680 \begin_layout Plain Layout
35681 Paquetages LaTeX ! color
35682 \end_layout
35683
35684 \end_inset
35685
35686  soit chargé dans le préambule du document avec la commande
35687 \end_layout
35688
35689 \begin_layout Standard
35690
35691 \series bold
35692
35693 \backslash
35694 @ifundefined{textcolor}
35695 \begin_inset Newline newline
35696 \end_inset
35697
35698
35699 \begin_inset Phantom HPhantom
35700 status open
35701
35702 \begin_layout Plain Layout
35703
35704 \series bold
35705 \begin_inset space ~
35706 \end_inset
35707
35708
35709 \end_layout
35710
35711 \end_inset
35712
35713 {
35714 \backslash
35715 usepackage{color}}{}
35716 \end_layout
35717
35718 \begin_layout Standard
35719 Le paquetage 
35720 \series bold
35721 color
35722 \series default
35723  sera chargé automatiquement par LyX dès que vous colorez du texte.
35724 \begin_inset Foot
35725 status collapsed
35726
35727 \begin_layout Plain Layout
35728 C'est pour éviter qu'il soit chargé deux fois que l'on utilise la commande
35729  
35730 \series bold
35731
35732 \backslash
35733 @ifundefined
35734 \series default
35735 .
35736 \end_layout
35737
35738 \end_inset
35739
35740
35741 \end_layout
35742
35743 \begin_layout Standard
35744 \begin_inset VSpace medskip
35745 \end_inset
35746
35747 Les boîtes colorées sont créées par la commande 
35748 \series bold
35749
35750 \backslash
35751 colorbox
35752 \series default
35753 .
35754  Elle est utilisée avec la syntaxe suivante :
35755 \end_layout
35756
35757 \begin_layout Standard
35758
35759 \series bold
35760
35761 \backslash
35762 colorbox{couleur}{contenu de la boîte}
35763 \end_layout
35764
35765 \begin_layout Standard
35766 Le contenu de la boîte peut aussi être une boîte et les boîtes colorées
35767  peuvent être placées à l'intérieur d'autres boîtes.
35768 \end_layout
35769
35770 \begin_layout Standard
35771 Les couleurs suivantes sont prédéfinies ::
35772 \begin_inset Newline newline
35773 \end_inset
35774
35775
35776 \family sans
35777 black
35778 \family default
35779  (noir), 
35780 \family sans
35781 blue
35782 \family default
35783  (bleu), 
35784 \family sans
35785 cyan
35786 \family default
35787 \series bold
35788 ,
35789 \series default
35790  
35791 \family sans
35792 green
35793 \family default
35794  (vert), 
35795 \family sans
35796 magenta
35797 \family default
35798
35799 \family sans
35800 red
35801 \family default
35802  (rouge), 
35803 \family sans
35804 white
35805 \family default
35806  (blanc), and 
35807 \family sans
35808 yellow
35809 \family default
35810  (jaune).
35811 \begin_inset Newline newline
35812 \end_inset
35813
35814 Vous pouvez aussi définir vos propres couleurs comme c'est décrit dans la
35815  section
35816 \begin_inset space ~
35817 \end_inset
35818
35819
35820 \begin_inset CommandInset ref
35821 LatexCommand ref
35822 reference "sec:Tableaux-Colorés"
35823
35824 \end_inset
35825
35826 .
35827 \end_layout
35828
35829 \begin_layout Standard
35830 Par exemple, pour avoir un mot sur fond rouge, insérez la commande 
35831 \end_layout
35832
35833 \begin_layout Standard
35834
35835 \series bold
35836
35837 \backslash
35838 colorbox{red}{
35839 \end_layout
35840
35841 \begin_layout Standard
35842 avant le mot en code TeX.
35843  Insérez l'accolade fermante 
35844 \begin_inset Quotes eld
35845 \end_inset
35846
35847 }
35848 \begin_inset Quotes erd
35849 \end_inset
35850
35851  après le mot, en code TeX.
35852 \begin_inset Newline newline
35853 \end_inset
35854
35855 Voici le résultat :
35856 \end_layout
35857
35858 \begin_layout Standard
35859 Cette ligne de texte contient le mot
35860 \begin_inset ERT
35861 status collapsed
35862
35863 \begin_layout Plain Layout
35864
35865
35866 \backslash
35867 colorbox{red}{
35868 \end_layout
35869
35870 \end_inset
35871
35872
35873 \begin_inset Quotes eld
35874 \end_inset
35875
35876 Attention!
35877 \begin_inset Quotes erd
35878 \end_inset
35879
35880
35881 \begin_inset ERT
35882 status collapsed
35883
35884 \begin_layout Plain Layout
35885
35886 }
35887 \end_layout
35888
35889 \end_inset
35890
35891  sur fond rouge.
35892 \end_layout
35893
35894 \begin_layout Standard
35895 \begin_inset VSpace bigskip
35896 \end_inset
35897
35898 Si vous voulez que la boîte soit entourée d'une bordure dans une autre couleur,
35899  vous pouvez utiliser la commande 
35900 \series bold
35901
35902 \backslash
35903 fcolorbox
35904 \series default
35905  avec la syntaxe suivante :
35906 \end_layout
35907
35908 \begin_layout Standard
35909
35910 \series bold
35911
35912 \backslash
35913 fcolorbox{couleur du cadre}{couleur de la boîte}{contenu de la boîte}
35914 \end_layout
35915
35916 \begin_layout Standard
35917
35918 \series bold
35919
35920 \backslash
35921 fcolorbox
35922 \series default
35923  est une extension de 
35924 \series bold
35925
35926 \backslash
35927 colorbox
35928 \series default
35929 .
35930  L'épaisseur du cadre et l'espace entre le cadre et le contenu de la boîte
35931  peuvent être modifiés avec les variables 
35932 \series bold
35933
35934 \backslash
35935 fboxrule
35936 \series default
35937  et 
35938 \series bold
35939
35940 \backslash
35941 fboxsep
35942 \series default
35943 , comme c'est décrit dans la section
35944 \begin_inset space ~
35945 \end_inset
35946
35947
35948 \begin_inset CommandInset ref
35949 LatexCommand ref
35950 reference "sec:Décorations"
35951
35952 \end_inset
35953
35954 .
35955 \end_layout
35956
35957 \begin_layout Standard
35958 Pour l'exemple suivant, on a utilisé la commande
35959 \end_layout
35960
35961 \begin_layout Standard
35962
35963 \series bold
35964
35965 \backslash
35966 fcolorbox{cyan}{magenta}{
35967 \end_layout
35968
35969 \begin_layout Standard
35970 Voici un exemple où l'épaisseur de la ligne du cadre a été mise à 1
35971 \begin_inset space \thinspace{}
35972 \end_inset
35973
35974 mm:
35975 \begin_inset Newline newline
35976 \end_inset
35977
35978
35979 \begin_inset ERT
35980 status collapsed
35981
35982 \begin_layout Plain Layout
35983
35984
35985 \backslash
35986 fboxrule 1mm 
35987 \backslash
35988 fboxsep 1mm
35989 \end_layout
35990
35991 \end_inset
35992
35993
35994 \begin_inset ERT
35995 status collapsed
35996
35997 \begin_layout Plain Layout
35998
35999
36000 \backslash
36001 fcolorbox{cyan}{magenta}{
36002 \end_layout
36003
36004 \end_inset
36005
36006 Ce texte est dans une boîte encadrée et colorée.
36007 \begin_inset ERT
36008 status collapsed
36009
36010 \begin_layout Plain Layout
36011
36012 }
36013 \end_layout
36014
36015 \end_inset
36016
36017
36018 \end_layout
36019
36020 \begin_layout Standard
36021 \begin_inset VSpace bigskip
36022 \end_inset
36023
36024 Bien sûr, vous pouvez avoir du texte coloré dans une boîte colorée (attention,
36025  les yeux ! - NdT) :
36026 \begin_inset Newline newline
36027 \end_inset
36028
36029
36030 \begin_inset ERT
36031 status collapsed
36032
36033 \begin_layout Plain Layout
36034
36035
36036 \backslash
36037 fcolorbox{cyan}{magenta}{
36038 \end_layout
36039
36040 \end_inset
36041
36042
36043 \color yellow
36044 Ce texte est coloré dans une boîte colorée et encadrée.
36045 \color inherit
36046
36047 \begin_inset ERT
36048 status collapsed
36049
36050 \begin_layout Plain Layout
36051
36052 }
36053 \end_layout
36054
36055 \end_inset
36056
36057
36058 \begin_inset ERT
36059 status collapsed
36060
36061 \begin_layout Plain Layout
36062
36063
36064 \backslash
36065 fboxrule 0.4pt 
36066 \backslash
36067 fboxsep 3pt
36068 \end_layout
36069
36070 \end_inset
36071
36072
36073 \end_layout
36074
36075 \begin_layout Standard
36076
36077 \series bold
36078 \begin_inset VSpace medskip
36079 \end_inset
36080
36081
36082 \end_layout
36083
36084 \begin_layout Standard
36085 \begin_inset Note Greyedout
36086 status open
36087
36088 \begin_layout Plain Layout
36089
36090 \series bold
36091 Note:
36092 \series default
36093  Le texte qui se trouve dans une boîte colorée ne peut pas avoir de sauts
36094  de ligne.
36095  Pour colorer plusieurs lignes de texte ou un paragraphe, utilisez une boîte
36096  à l'intérieur d'une boîte colorée comme c'est décrit dans ce qui suit.
36097 \end_layout
36098
36099 \end_inset
36100
36101
36102 \end_layout
36103
36104 \begin_layout Subsection
36105 De la couleur pour les paragraphes
36106 \begin_inset CommandInset label
36107 LatexCommand label
36108 name "sub:Couleur-pour-les-Paragraphes"
36109
36110 \end_inset
36111
36112
36113 \begin_inset Index idx
36114 status collapsed
36115
36116 \begin_layout Plain Layout
36117 Couleur ! Pour les  paragraphes
36118 \end_layout
36119
36120 \end_inset
36121
36122
36123 \end_layout
36124
36125 \begin_layout Standard
36126 Pour modifier la couleur de fond de plus d'une ligne de texte, mettez le
36127  texte dans une minipage.
36128  Avant la minipage, insérez la commande 
36129 \series bold
36130
36131 \backslash
36132 colorbox
36133 \series default
36134  
36135 \end_layout
36136
36137 \begin_layout Standard
36138
36139 \series bold
36140
36141 \backslash
36142 colorbox{color}{
36143 \end_layout
36144
36145 \begin_layout Standard
36146 en code TeX.
36147  Après la minipage, insérez l'accolade fermante 
36148 \begin_inset Quotes eld
36149 \end_inset
36150
36151 }
36152 \begin_inset Quotes erd
36153 \end_inset
36154
36155  en code TeX.
36156 \end_layout
36157
36158 \begin_layout Standard
36159 \begin_inset ERT
36160 status collapsed
36161
36162 \begin_layout Plain Layout
36163
36164
36165 \backslash
36166 colorbox{lightgrey}{
36167 \end_layout
36168
36169 \end_inset
36170
36171
36172 \begin_inset Box Frameless
36173 position "t"
36174 hor_pos "c"
36175 has_inner_box 1
36176 inner_pos "t"
36177 use_parbox 0
36178 use_makebox 0
36179 width "100col%"
36180 special "none"
36181 height "1in"
36182 height_special "totalheight"
36183 status collapsed
36184
36185 \begin_layout Plain Layout
36186 Ce texte a un fond coloré.
36187  Ce texte a un fond coloré.
36188 \end_layout
36189
36190 \begin_layout Plain Layout
36191 \begin_inset VSpace defskip
36192 \end_inset
36193
36194 Le texte peut avoir des notes de bas de page
36195 \begin_inset Foot
36196 status collapsed
36197
36198 \begin_layout Plain Layout
36199 Un autre exemple de note de bas de page
36200 \end_layout
36201
36202 \end_inset
36203
36204  et contenir des figures et des tableaux.
36205 \end_layout
36206
36207 \begin_layout Plain Layout
36208 \align center
36209 \begin_inset Tabular
36210 <lyxtabular version="3" rows="3" columns="3">
36211 <features rotate="0" tabularvalignment="middle">
36212 <column alignment="center" valignment="top" width="0">
36213 <column alignment="center" valignment="top" width="0">
36214 <column alignment="center" valignment="top" width="0">
36215 <row>
36216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36217 \begin_inset Text
36218
36219 \begin_layout Plain Layout
36220 a
36221 \end_layout
36222
36223 \end_inset
36224 </cell>
36225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36226 \begin_inset Text
36227
36228 \begin_layout Plain Layout
36229 !
36230 \end_layout
36231
36232 \end_inset
36233 </cell>
36234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36235 \begin_inset Text
36236
36237 \begin_layout Plain Layout
36238 3
36239 \end_layout
36240
36241 \end_inset
36242 </cell>
36243 </row>
36244 <row>
36245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36246 \begin_inset Text
36247
36248 \begin_layout Plain Layout
36249 <
36250 \end_layout
36251
36252 \end_inset
36253 </cell>
36254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36255 \begin_inset Text
36256
36257 \begin_layout Plain Layout
36258 b2
36259 \begin_inset Quotes erd
36260 \end_inset
36261
36262 |
36263 \end_layout
36264
36265 \end_inset
36266 </cell>
36267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36268 \begin_inset Text
36269
36270 \begin_layout Plain Layout
36271 >
36272 \end_layout
36273
36274 \end_inset
36275 </cell>
36276 </row>
36277 <row>
36278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36279 \begin_inset Text
36280
36281 \begin_layout Plain Layout
36282 1
36283 \end_layout
36284
36285 \end_inset
36286 </cell>
36287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36288 \begin_inset Text
36289
36290 \begin_layout Plain Layout
36291 §
36292 \end_layout
36293
36294 \end_inset
36295 </cell>
36296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36297 \begin_inset Text
36298
36299 \begin_layout Plain Layout
36300 c
36301 \end_layout
36302
36303 \end_inset
36304 </cell>
36305 </row>
36306 </lyxtabular>
36307
36308 \end_inset
36309
36310
36311 \end_layout
36312
36313 \end_inset
36314
36315
36316 \begin_inset ERT
36317 status collapsed
36318
36319 \begin_layout Plain Layout
36320
36321 }
36322 \end_layout
36323
36324 \end_inset
36325
36326
36327 \end_layout
36328
36329 \begin_layout Section
36330 Les boîtes pivotées et redimensionnées
36331 \end_layout
36332
36333 \begin_layout Standard
36334 Pour pouvoir utiliser les commandes décrites dans cette section, vous devez
36335  charger le paquetage LaTeX 
36336 \series bold
36337 graphicx
36338 \series default
36339
36340 \begin_inset Index idx
36341 status collapsed
36342
36343 \begin_layout Plain Layout
36344 Paquetages LaTeX ! graphicx
36345 \end_layout
36346
36347 \end_inset
36348
36349  dans le préambule de votre document avec la commande
36350 \end_layout
36351
36352 \begin_layout Standard
36353
36354 \series bold
36355
36356 \backslash
36357 @ifundefined{rotatebox}
36358 \begin_inset Newline newline
36359 \end_inset
36360
36361
36362 \begin_inset Phantom HPhantom
36363 status open
36364
36365 \begin_layout Plain Layout
36366
36367 \series bold
36368 \begin_inset space ~
36369 \end_inset
36370
36371
36372 \end_layout
36373
36374 \end_inset
36375
36376 {
36377 \backslash
36378 usepackage{graphicx}}{}
36379 \end_layout
36380
36381 \begin_layout Description
36382 \begin_inset Note Greyedout
36383 status open
36384
36385 \begin_layout Plain Layout
36386
36387 \series bold
36388 Note:
36389 \series default
36390  La plupart des visualiseurs DVI ne sont 
36391 \emph on
36392 pas
36393 \emph default
36394  capables d'afficher des rotations ou des redimensions.
36395 \end_layout
36396
36397 \end_inset
36398
36399
36400 \end_layout
36401
36402 \begin_layout Standard
36403 \begin_inset Note Greyedout
36404 status open
36405
36406 \begin_layout Plain Layout
36407
36408 \series bold
36409 Note:
36410 \series default
36411  On ne doit pas mettre de flottants à l'intérieur d'une boîte pivotée ou
36412  redimensionnée.
36413 \end_layout
36414
36415 \end_inset
36416
36417
36418 \end_layout
36419
36420 \begin_layout Subsection
36421 Les Boîtes pivotées
36422 \begin_inset Index idx
36423 status collapsed
36424
36425 \begin_layout Plain Layout
36426 Boîtes ! pivotées
36427 \end_layout
36428
36429 \end_inset
36430
36431
36432 \begin_inset Index idx
36433 status collapsed
36434
36435 \begin_layout Plain Layout
36436 Pivoter des objets
36437 \end_layout
36438
36439 \end_inset
36440
36441
36442 \end_layout
36443
36444 \begin_layout Standard
36445 Pour faire tourner des objets, vous pouvez les mettre dans une boîte pivotante
36446  (rotated).
36447  Une telle boîte est créée avec la commande 
36448 \series bold
36449
36450 \backslash
36451 rotatebox
36452 \series default
36453  en code TeX avec la syntaxe
36454 \end_layout
36455
36456 \begin_layout Standard
36457
36458 \series bold
36459
36460 \backslash
36461 rotatebox[origine rotation]{angle rotation}{contenu de la boîte}
36462 \end_layout
36463
36464 \begin_layout Standard
36465 La position du pivot est donnée par l'origine de rotation spécifiée sous
36466  la forme 
36467 \series bold
36468 origin=position
36469 \series default
36470 .
36471  Les valeurs suivantes sont possibles pour la position: 
36472 \emph on
36473 c
36474 \emph default
36475  (centre), 
36476 \emph on
36477 l
36478 \emph default
36479  (gauche/
36480 \lang english
36481 left
36482 \lang french
36483 ), 
36484 \emph on
36485 r
36486 \emph default
36487  (droite/
36488 \lang english
36489 right
36490 \lang french
36491 ), 
36492 \emph on
36493 b
36494 \emph default
36495  (bas/
36496 \lang english
36497 bottom
36498 \lang french
36499 ), 
36500 \emph on
36501 t
36502 \emph default
36503  (haut/
36504 \lang english
36505 top
36506 \lang french
36507 ), et aussi des combinaisons des quatre positions de base.
36508  Par exemple 
36509 \emph on
36510 lt
36511 \emph default
36512  signifie que le pivot est situé dans le coin en haut à gauche de la boîte.
36513  Quand on ne donne pas d'origine, la position 
36514 \emph on
36515 l
36516 \emph default
36517  est utilisée.
36518  L'angle de rotation est un nombre, exprimé en degrés et qui peut être positif
36519  ou négatif.
36520  Le sens positif de rotation est anti-horaire.
36521 \end_layout
36522
36523 \begin_layout Standard
36524 Dans l'exemple qui suit, la commande 
36525 \series bold
36526
36527 \backslash
36528 rotatebox[origin=c]{60}{
36529 \series default
36530  a été insérée en code TeX juste avant le texte 
36531 \begin_inset Quotes eld
36532 \end_inset
36533
36534 pivoté de 90°
36535 \begin_inset Quotes erd
36536 \end_inset
36537
36538  ; la boîte est refermée juste après le texte par une accolade fermante
36539  
36540 \begin_inset Quotes eld
36541 \end_inset
36542
36543 }
36544 \begin_inset Quotes erd
36545 \end_inset
36546
36547  en code TeX.
36548 \end_layout
36549
36550 \begin_layout Standard
36551 Voici une ligne avec du texte 
36552 \begin_inset ERT
36553 status collapsed
36554
36555 \begin_layout Plain Layout
36556
36557
36558 \backslash
36559 rotatebox[origin=c]{60}{
36560 \end_layout
36561
36562 \end_inset
36563
36564 pivoté de 60°
36565 \begin_inset ERT
36566 status collapsed
36567
36568 \begin_layout Plain Layout
36569
36570 }
36571 \end_layout
36572
36573 \end_inset
36574
36575 .
36576 \end_layout
36577
36578 \begin_layout Standard
36579 La boîte peut contenir une autre boîte ou une formule en ligne :
36580 \end_layout
36581
36582 \begin_layout Standard
36583 Voici une ligne avec du texte 
36584 \begin_inset ERT
36585 status collapsed
36586
36587 \begin_layout Plain Layout
36588
36589
36590 \backslash
36591 rotatebox[origin=r]{-60}{
36592 \end_layout
36593
36594 \end_inset
36595
36596
36597 \begin_inset Box Doublebox
36598 position "c"
36599 hor_pos "c"
36600 has_inner_box 0
36601 inner_pos "c"
36602 use_parbox 0
36603 use_makebox 0
36604 width "1in"
36605 special "width"
36606 height "1in"
36607 height_special "totalheight"
36608 status collapsed
36609
36610 \begin_layout Plain Layout
36611 pivoté de -60°
36612 \end_layout
36613
36614 \end_inset
36615
36616
36617 \begin_inset ERT
36618 status collapsed
36619
36620 \begin_layout Plain Layout
36621
36622 }
36623 \end_layout
36624
36625 \end_inset
36626
36627  et encadré 
36628 \begin_inset ERT
36629 status collapsed
36630
36631 \begin_layout Plain Layout
36632
36633
36634 \backslash
36635 rotatebox[origin=lb]{60}{
36636 \end_layout
36637
36638 \end_inset
36639
36640
36641 \begin_inset Formula $\int A\,\mathrm{d}x=B$
36642 \end_inset
36643
36644
36645 \begin_inset ERT
36646 status collapsed
36647
36648 \begin_layout Plain Layout
36649
36650 }
36651 \end_layout
36652
36653 \end_inset
36654
36655  et une formule.
36656 \end_layout
36657
36658 \begin_layout Standard
36659 ou encore une figure ou un tableau :
36660 \end_layout
36661
36662 \begin_layout Standard
36663 Voici une ligne
36664 \begin_inset ERT
36665 status collapsed
36666
36667 \begin_layout Plain Layout
36668
36669
36670 \backslash
36671 rotatebox[origin=lb]{90}{
36672 \end_layout
36673
36674 \end_inset
36675
36676
36677 \begin_inset Graphics
36678         filename ../clipart/platypus.eps
36679         lyxscale 50
36680         width 25col%
36681
36682 \end_inset
36683
36684
36685 \begin_inset ERT
36686 status collapsed
36687
36688 \begin_layout Plain Layout
36689
36690 }
36691 \end_layout
36692
36693 \end_inset
36694
36695  avec une image pivotée de 90° 
36696 \begin_inset ERT
36697 status collapsed
36698
36699 \begin_layout Plain Layout
36700
36701
36702 \backslash
36703 rotatebox[origin=l]{-90}{
36704 \end_layout
36705
36706 \end_inset
36707
36708
36709 \begin_inset Tabular
36710 <lyxtabular version="3" rows="2" columns="2">
36711 <features rotate="0" tabularvalignment="middle">
36712 <column alignment="center" valignment="top" width="0">
36713 <column alignment="center" valignment="top" width="0">
36714 <row>
36715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36716 \begin_inset Text
36717
36718 \begin_layout Plain Layout
36719 q
36720 \end_layout
36721
36722 \end_inset
36723 </cell>
36724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36725 \begin_inset Text
36726
36727 \begin_layout Plain Layout
36728 w
36729 \end_layout
36730
36731 \end_inset
36732 </cell>
36733 </row>
36734 <row>
36735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36736 \begin_inset Text
36737
36738 \begin_layout Plain Layout
36739 e
36740 \end_layout
36741
36742 \end_inset
36743 </cell>
36744 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36745 \begin_inset Text
36746
36747 \begin_layout Plain Layout
36748 r
36749 \end_layout
36750
36751 \end_inset
36752 </cell>
36753 </row>
36754 </lyxtabular>
36755
36756 \end_inset
36757
36758
36759 \begin_inset ERT
36760 status collapsed
36761
36762 \begin_layout Plain Layout
36763
36764 }
36765 \end_layout
36766
36767 \end_inset
36768
36769  et un tableau.
36770 \begin_inset Index idx
36771 status collapsed
36772
36773 \begin_layout Plain Layout
36774 Figures ! Pivotées
36775 \end_layout
36776
36777 \end_inset
36778
36779
36780 \begin_inset Index idx
36781 status collapsed
36782
36783 \begin_layout Plain Layout
36784 Tableau ! Pivoter
36785 \end_layout
36786
36787 \end_inset
36788
36789
36790 \end_layout
36791
36792 \begin_layout Subsection
36793 Les boîtes redimensionnées
36794 \begin_inset Index idx
36795 status collapsed
36796
36797 \begin_layout Plain Layout
36798 Boîtes ! Redimensionnées
36799 \end_layout
36800
36801 \end_inset
36802
36803
36804 \begin_inset Index idx
36805 status collapsed
36806
36807 \begin_layout Plain Layout
36808 Redimensionner des objets
36809 \end_layout
36810
36811 \end_inset
36812
36813
36814 \end_layout
36815
36816 \begin_layout Standard
36817 Pour redimensionner des objets on peut utiliser les commandes 
36818 \series bold
36819
36820 \backslash
36821 scalebox
36822 \series default
36823  et 
36824 \series bold
36825
36826 \backslash
36827 resizebox
36828 \series default
36829  insérées sous forme de code TeX.
36830 \end_layout
36831
36832 \begin_layout Standard
36833
36834 \series bold
36835
36836 \backslash
36837 scalebox
36838 \series default
36839  est utilisée avec la syntaxe suivante :
36840 \end_layout
36841
36842 \begin_layout Standard
36843
36844 \series bold
36845
36846 \backslash
36847 scalebox{horizontal}[vertical]{contenu de la boîte}
36848 \end_layout
36849
36850 \begin_layout Standard
36851 Horizontal et vertical sont les facteurs d'échelle correspondants.
36852  Si on ne donne pas de facteur vertical, le facteur horizontal sera aussi
36853  utilisé comme facteur vertical.
36854 \end_layout
36855
36856 \begin_layout Standard
36857 Par exemple, la commande 
36858 \series bold
36859
36860 \backslash
36861 scalebox{2}{Bonjour}
36862 \series default
36863  crée un 
36864 \begin_inset ERT
36865 status collapsed
36866
36867 \begin_layout Plain Layout
36868
36869
36870 \backslash
36871 scalebox{2}{
36872 \end_layout
36873
36874 \end_inset
36875
36876 Bonjour
36877 \begin_inset ERT
36878 status collapsed
36879
36880 \begin_layout Plain Layout
36881
36882 }
36883 \end_layout
36884
36885 \end_inset
36886
36887  de taille double par rapport à la taille du texte du document.
36888 \end_layout
36889
36890 \begin_layout Standard
36891
36892 \series bold
36893
36894 \backslash
36895 scalebox{2}[1]{Hello}
36896 \series default
36897  au contraire va déformer le 
36898 \begin_inset ERT
36899 status collapsed
36900
36901 \begin_layout Plain Layout
36902
36903
36904 \backslash
36905 scalebox{2}[1]{
36906 \end_layout
36907
36908 \end_inset
36909
36910 Bonjour
36911 \begin_inset ERT
36912 status collapsed
36913
36914 \begin_layout Plain Layout
36915
36916 }
36917 \end_layout
36918
36919 \end_inset
36920
36921 .
36922 \end_layout
36923
36924 \begin_layout Standard
36925 Si le facteur d'échelle est négatif, le contenu sera retourné en miroir.
36926  La commande 
36927 \series bold
36928
36929 \backslash
36930 scalebox{-1}[1]{Hello}
36931 \series default
36932  peut donc être utilisée pour créer du texte en miroir : 
36933 \begin_inset ERT
36934 status collapsed
36935
36936 \begin_layout Plain Layout
36937
36938
36939 \backslash
36940 scalebox{-1}[1]{
36941 \end_layout
36942
36943 \end_inset
36944
36945 Bonjour
36946 \begin_inset ERT
36947 status collapsed
36948
36949 \begin_layout Plain Layout
36950
36951 }
36952 \end_layout
36953
36954 \end_inset
36955
36956
36957 \end_layout
36958
36959 \begin_layout Standard
36960
36961 \series bold
36962
36963 \backslash
36964 scalebox{1}[-1]{Bonjour}
36965 \series default
36966  effectue une réflexion du 
36967 \begin_inset ERT
36968 status collapsed
36969
36970 \begin_layout Plain Layout
36971
36972
36973 \backslash
36974 scalebox{1}[-1]{
36975 \end_layout
36976
36977 \end_inset
36978
36979 Bonjour
36980 \begin_inset ERT
36981 status collapsed
36982
36983 \begin_layout Plain Layout
36984
36985 }
36986 \end_layout
36987
36988 \end_inset
36989
36990  par rapport à la ligne de base.
36991 \end_layout
36992
36993 \begin_layout Standard
36994 La commande 
36995 \series bold
36996
36997 \backslash
36998 reflectbox{contenu de la boîte} 
36999 \series default
37000 existe aussi et est équivalente à
37001 \series bold
37002  
37003 \backslash
37004 scalebox{-1}[1]{contenu de la boîte}.
37005
37006 \series default
37007  
37008 \begin_inset Newline newline
37009 \end_inset
37010
37011
37012 \end_layout
37013
37014 \begin_layout Standard
37015 \begin_inset VSpace bigskip
37016 \end_inset
37017
37018 La commande 
37019 \series bold
37020
37021 \backslash
37022 resizebox
37023 \series default
37024  est utilisée pour redimensionner une boîte à une largeur et une hauteur
37025  données.
37026  La syntaxe de la commande est :
37027 \end_layout
37028
37029 \begin_layout Standard
37030
37031 \series bold
37032
37033 \backslash
37034 resizebox{largeur}{hauteur}{contenu de la boîte}
37035 \end_layout
37036
37037 \begin_layout Standard
37038 Si un des deux paramètres est remplacé par un point d'exclamation 
37039 \series bold
37040 !
37041 \series default
37042 , la taille est ajustée pour conserver le rapport d'aspect de la boîte.
37043 \end_layout
37044
37045 \begin_layout Standard
37046 La commande 
37047 \series bold
37048
37049 \backslash
37050 resizebox{2cm}{1cm}{Bonjour}
37051 \series default
37052  produit : 
37053 \begin_inset ERT
37054 status collapsed
37055
37056 \begin_layout Plain Layout
37057
37058
37059 \backslash
37060 resizebox{2cm}{1cm}{
37061 \end_layout
37062
37063 \end_inset
37064
37065 Bonjour
37066 \begin_inset ERT
37067 status collapsed
37068
37069 \begin_layout Plain Layout
37070
37071 }
37072 \end_layout
37073
37074 \end_inset
37075
37076
37077 \begin_inset Newline newline
37078 \end_inset
37079
37080 La commande 
37081 \series bold
37082
37083 \backslash
37084 resizebox{2cm}{!}{Bonjour}
37085 \series default
37086  produit : 
37087 \begin_inset ERT
37088 status collapsed
37089
37090 \begin_layout Plain Layout
37091
37092
37093 \backslash
37094 resizebox{2cm}{!}{
37095 \end_layout
37096
37097 \end_inset
37098
37099 Bonjour
37100 \begin_inset ERT
37101 status collapsed
37102
37103 \begin_layout Plain Layout
37104
37105 }
37106 \end_layout
37107
37108 \end_inset
37109
37110
37111 \end_layout
37112
37113 \begin_layout Standard
37114 \begin_inset VSpace bigskip
37115 \end_inset
37116
37117
37118 \end_layout
37119
37120 \begin_layout Standard
37121 \begin_inset Note Greyedout
37122 status open
37123
37124 \begin_layout Plain Layout
37125
37126 \series bold
37127 Note:
37128 \series default
37129  Quand les paramètres des commandes 
37130 \series bold
37131
37132 \backslash
37133 scalebox
37134 \series default
37135  ou 
37136 \series bold
37137
37138 \backslash
37139 resizebox
37140 \series default
37141  sont mis à zéro, il ne se produit pas d'erreur LaTeX quand on exporte le
37142  document, mais le document exporté peut ne pas s'afficher ou s'afficher
37143  partiellement.
37144 \end_layout
37145
37146 \end_inset
37147
37148
37149 \end_layout
37150
37151 \begin_layout Standard
37152 \begin_inset VSpace bigskip
37153 \end_inset
37154
37155
37156 \end_layout
37157
37158 \begin_layout Standard
37159 Les boîtes peuvent être combinée dans n'importe quel ordre.
37160  Par exemple, la commande 
37161 \begin_inset Newline newline
37162 \end_inset
37163
37164
37165 \series bold
37166
37167 \backslash
37168 rotatebox[origin=c]{-45}{
37169 \backslash
37170 resizebox{2cm}{!}{
37171 \backslash
37172 reflectbox{Bonjour}}}
37173 \begin_inset Newline newline
37174 \end_inset
37175
37176
37177 \series default
37178 produit :
37179 \end_layout
37180
37181 \begin_layout Standard
37182 \align center
37183 \begin_inset ERT
37184 status collapsed
37185
37186 \begin_layout Plain Layout
37187
37188
37189 \backslash
37190 rotatebox[origin=c]{-45}{
37191 \backslash
37192 resizebox{2cm}{!}{
37193 \backslash
37194 reflectbox{
37195 \end_layout
37196
37197 \end_inset
37198
37199 Bonjour
37200 \begin_inset ERT
37201 status collapsed
37202
37203 \begin_layout Plain Layout
37204
37205 }}}
37206 \end_layout
37207
37208 \end_inset
37209
37210
37211 \end_layout
37212
37213 \begin_layout Standard
37214 \noindent
37215 Les images, les tableaux et les formules sont autorisées comme contenu de
37216  boîte :
37217 \end_layout
37218
37219 \begin_layout Standard
37220 \align center
37221 \begin_inset ERT
37222 status collapsed
37223
37224 \begin_layout Plain Layout
37225
37226
37227 \backslash
37228 rotatebox[origin=c]{-30}{
37229 \backslash
37230 resizebox{2cm}{!}{
37231 \backslash
37232 reflectbox{
37233 \end_layout
37234
37235 \end_inset
37236
37237
37238 \begin_inset Graphics
37239         filename ../clipart/platypus.eps
37240         lyxscale 50
37241         width 25col%
37242
37243 \end_inset
37244
37245
37246 \begin_inset ERT
37247 status collapsed
37248
37249 \begin_layout Plain Layout
37250
37251 }}}
37252 \end_layout
37253
37254 \end_inset
37255
37256
37257 \begin_inset ERT
37258 status collapsed
37259
37260 \begin_layout Plain Layout
37261
37262
37263 \backslash
37264 rotatebox[origin=c]{-45}{
37265 \backslash
37266 resizebox{2cm}{!}{
37267 \backslash
37268 reflectbox{
37269 \end_layout
37270
37271 \end_inset
37272
37273
37274 \begin_inset Tabular
37275 <lyxtabular version="3" rows="2" columns="2">
37276 <features rotate="0" tabularvalignment="middle">
37277 <column alignment="center" valignment="top" width="0">
37278 <column alignment="center" valignment="top" width="0">
37279 <row>
37280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37281 \begin_inset Text
37282
37283 \begin_layout Plain Layout
37284 q
37285 \end_layout
37286
37287 \end_inset
37288 </cell>
37289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37290 \begin_inset Text
37291
37292 \begin_layout Plain Layout
37293 w
37294 \end_layout
37295
37296 \end_inset
37297 </cell>
37298 </row>
37299 <row>
37300 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37301 \begin_inset Text
37302
37303 \begin_layout Plain Layout
37304 e
37305 \end_layout
37306
37307 \end_inset
37308 </cell>
37309 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37310 \begin_inset Text
37311
37312 \begin_layout Plain Layout
37313 r
37314 \end_layout
37315
37316 \end_inset
37317 </cell>
37318 </row>
37319 </lyxtabular>
37320
37321 \end_inset
37322
37323
37324 \begin_inset ERT
37325 status collapsed
37326
37327 \begin_layout Plain Layout
37328
37329 }}}
37330 \end_layout
37331
37332 \end_inset
37333
37334
37335 \begin_inset ERT
37336 status collapsed
37337
37338 \begin_layout Plain Layout
37339
37340
37341 \backslash
37342 rotatebox[origin=c]{-45}{
37343 \backslash
37344 resizebox{2cm}{!}{
37345 \backslash
37346 reflectbox{
37347 \end_layout
37348
37349 \end_inset
37350
37351
37352 \begin_inset Formula $\int A\,\mathrm{d}x=B$
37353 \end_inset
37354
37355
37356 \begin_inset ERT
37357 status collapsed
37358
37359 \begin_layout Plain Layout
37360
37361 }}}
37362 \end_layout
37363
37364 \end_inset
37365
37366
37367 \begin_inset Index idx
37368 status collapsed
37369
37370 \begin_layout Plain Layout
37371 Figures ! Redimensionnées
37372 \end_layout
37373
37374 \end_inset
37375
37376
37377 \begin_inset Index idx
37378 status collapsed
37379
37380 \begin_layout Plain Layout
37381 Tableau ! Redimensionner
37382 \end_layout
37383
37384 \end_inset
37385
37386
37387 \end_layout
37388
37389 \begin_layout Standard
37390 Quand on utilise le style global de formule 
37391 \series bold
37392 fleqn
37393 \series default
37394  dans le document
37395 \begin_inset Foot
37396 status collapsed
37397
37398 \begin_layout Plain Layout
37399 Quand 
37400 \begin_inset Quotes eld
37401 \end_inset
37402
37403 fleqn
37404 \begin_inset Quotes erd
37405 \end_inset
37406
37407  est ajouté aux options de la classe de document.
37408 \end_layout
37409
37410 \end_inset
37411
37412 , les formules hors texte peuvent aussi être redimensionnées.
37413 \end_layout
37414
37415 \begin_layout Chapter
37416 Objets entourés par du texte
37417 \begin_inset Index idx
37418 status collapsed
37419
37420 \begin_layout Plain Layout
37421 Entourés par du texte
37422 \end_layout
37423
37424 \end_inset
37425
37426
37427 \end_layout
37428
37429 \begin_layout Section
37430 Flottant d'enrobage
37431 \begin_inset CommandInset label
37432 LatexCommand label
37433 name "sec:Flottant-d'enrobage"
37434
37435 \end_inset
37436
37437
37438 \begin_inset Index idx
37439 status collapsed
37440
37441 \begin_layout Plain Layout
37442 Flottants ! Flottants d'enrobage
37443 \end_layout
37444
37445 \end_inset
37446
37447
37448 \begin_inset Index idx
37449 status collapsed
37450
37451 \begin_layout Plain Layout
37452 Entourés par du texte ! Flottants d'enrobage
37453 \end_layout
37454
37455 \end_inset
37456
37457
37458 \end_layout
37459
37460 \begin_layout Standard
37461 \begin_inset Wrap figure
37462 lines 0
37463 placement l
37464 overhang 1cm
37465 width "40col%"
37466 status open
37467
37468 \begin_layout Plain Layout
37469 \begin_inset Graphics
37470         filename ../clipart/mobius.eps
37471         width 40col%
37472         scaleBeforeRotation
37473         rotateOrigin center
37474
37475 \end_inset
37476
37477
37478 \end_layout
37479
37480 \begin_layout Plain Layout
37481 \begin_inset Caption Standard
37482
37483 \begin_layout Plain Layout
37484 \begin_inset CommandInset label
37485 LatexCommand label
37486 name "fig:Figure-enrobée"
37487
37488 \end_inset
37489
37490 Ceci est une figure habillée.
37491 \end_layout
37492
37493 \end_inset
37494
37495
37496 \end_layout
37497
37498 \end_inset
37499
37500  Ce type de flottant est utilisé quand on veut que le texte habille la figure
37501  de sorte qu'elle n'occupe plus qu'une partie de la largeur de la colonne.
37502  Vous pouvez en insérer un en utilisant le menu 
37503 \family sans
37504 Insertion\SpecialChar \menuseparator
37505 Flottant\SpecialChar \menuseparator
37506 Flottant
37507 \begin_inset space ~
37508 \end_inset
37509
37510 d'enrobage
37511 \family default
37512  à la condition que le paquetage LaTeX 
37513 \series bold
37514 wrapfig
37515 \series default
37516
37517 \begin_inset Index idx
37518 status collapsed
37519
37520 \begin_layout Plain Layout
37521 Paquetages LaTeX ! wrapfig
37522 \end_layout
37523
37524 \end_inset
37525
37526  soit installé.
37527 \begin_inset Foot
37528 status collapsed
37529
37530 \begin_layout Plain Layout
37531 Voyez dans la manuel 
37532 \emph on
37533 Configuration
37534 \begin_inset space ~
37535 \end_inset
37536
37537 LaTeX 
37538 \emph default
37539 comment installer des paquetages LaTeX.
37540 \end_layout
37541
37542 \end_inset
37543
37544  Les paramètres du flottant peuvent être modifiés en faisant un clic droit
37545  sur la boîte du flottant.
37546  Les paramètres obligatoires sont l'
37547 \family sans
37548 Emplacement
37549 \family default
37550  et la 
37551 \family sans
37552 Largeur
37553 \family default
37554 .
37555  Les paramètres facultatifs sont le 
37556 \family sans
37557 Débordement
37558 \family default
37559  qui précise de combien le flottant déborde sur la marge du paragraphe ou
37560  de la page et la 
37561 \family sans
37562 Porté de la ligne
37563 \family default
37564  qui précise le nombre approximatif de lignes dont le flottant va avoir
37565  besoin.
37566  Cette dernière valeur est parfois difficile à évaluer, il vaut mieux ne
37567  l'utiliser que si on rencontre des problème avec le positionnement du flottant.
37568  Vous pouvez aussi décider si vous autorisez LaTeX à faire flotter le flottant
37569  à l'intérieur du paragraphe ou vers les autres paragraphes.
37570  La figure
37571 \begin_inset space ~
37572 \end_inset
37573
37574
37575 \begin_inset CommandInset ref
37576 LatexCommand ref
37577 reference "fig:Figure-enrobée"
37578
37579 \end_inset
37580
37581  est un exemple de flottant d'enrobage avec une largeur de 40
37582 \begin_inset space \thinspace{}
37583 \end_inset
37584
37585 col%, un débordement de 1
37586 \begin_inset space \thinspace{}
37587 \end_inset
37588
37589 cm et placé à gauche.
37590 \end_layout
37591
37592 \begin_layout Standard
37593 \begin_inset Note Greyedout
37594 status open
37595
37596 \begin_layout Plain Layout
37597
37598 \series bold
37599 Note:
37600 \series default
37601  Les flottants d'enrobage peuvent être fragiles! Par exemple, avoir une
37602  figure trop près du bas de page peut tout chambouler et faire que le flottant
37603  n'apparaît pas à l'impression ou qu'il se retrouve par dessus une portion
37604  de texte.
37605 \end_layout
37606
37607 \end_inset
37608
37609
37610 \end_layout
37611
37612 \begin_layout Standard
37613 En général:
37614 \end_layout
37615
37616 \begin_layout Itemize
37617 Les flottants d'enrobage ne doivent pas être placés dans des paragraphes
37618  qui risquent de passer à la page suivante.
37619  Ce qui veut dire que les flottants d'enrobages doivent de préférence être
37620  positionnés à l'endroit exact où on veut qu'ils apparaissent dans la sortie,
37621  et ce quand le document est presque prêt pour pouvoir anticiper les sauts
37622  de page.
37623 \end_layout
37624
37625 \begin_layout Itemize
37626 Les flottants d'enrobage devraient être placés soit dans leur propre paragraphe,
37627  juste avant le paragraphe qui doit les habiller ou à l'intérieur d'un paragraph
37628 e.
37629 \end_layout
37630
37631 \begin_layout Itemize
37632 Des flottants d'enrobages dans deux paragraphes consécutifs peuvent poser
37633  des problèmes, il vaut donc mieux s'assurer qu'il y a un paragraphe de
37634  texte entre les deux, comme séparateur.
37635 \end_layout
37636
37637 \begin_layout Itemize
37638 Les flottants d'enrobage ne sont pas autorisés dans les en-têtes de sections
37639  ou les tableaux.
37640 \end_layout
37641
37642 \begin_layout Itemize
37643 Leur numérotation et leur référencement fonctionnent comme décrit dans le
37644  chapitre
37645 \begin_inset space ~
37646 \end_inset
37647
37648
37649 \begin_inset CommandInset ref
37650 LatexCommand ref
37651 reference "chap:Flottants"
37652
37653 \end_inset
37654
37655 .
37656 \end_layout
37657
37658 \begin_layout Section
37659 Objets fixes entourés par du texte
37660 \begin_inset Index idx
37661 status collapsed
37662
37663 \begin_layout Plain Layout
37664 Entouré par du texte ! Objets fixes
37665 \end_layout
37666
37667 \end_inset
37668
37669
37670 \end_layout
37671
37672 \begin_layout Standard
37673 Les flottants d'enrobage décrits dans la section
37674 \begin_inset space \thinspace{}
37675 \end_inset
37676
37677
37678 \begin_inset CommandInset ref
37679 LatexCommand ref
37680 reference "sec:Flottant-d'enrobage"
37681
37682 \end_inset
37683
37684  prennent les positions suivantes dans le paragraphe :
37685 \end_layout
37686
37687 \begin_layout Standard
37688 \noindent
37689 \align center
37690 \begin_inset Tabular
37691 <lyxtabular version="3" rows="2" columns="2">
37692 <features rotate="0" tabularvalignment="middle">
37693 <column alignment="center" valignment="top" width="0">
37694 <column alignment="center" valignment="top" width="0">
37695 <row>
37696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37697 \begin_inset Text
37698
37699 \begin_layout Plain Layout
37700 \begin_inset Graphics
37701         filename ../../images/dialog-show-new-inset_graphics.png
37702         scale 70
37703         scaleBeforeRotation
37704
37705 \end_inset
37706
37707
37708 \end_layout
37709
37710 \end_inset
37711 </cell>
37712 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
37713 \begin_inset Text
37714
37715 \begin_layout Plain Layout
37716 texte
37717 \end_layout
37718
37719 \end_inset
37720 </cell>
37721 </row>
37722 <row>
37723 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
37724 \begin_inset Text
37725
37726 \begin_layout Plain Layout
37727 texte
37728 \end_layout
37729
37730 \end_inset
37731 </cell>
37732 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
37733 \begin_inset Text
37734
37735 \begin_layout Plain Layout
37736 texte
37737 \end_layout
37738
37739 \end_inset
37740 </cell>
37741 </row>
37742 </lyxtabular>
37743
37744 \end_inset
37745
37746  ou 
37747 \begin_inset Tabular
37748 <lyxtabular version="3" rows="2" columns="2">
37749 <features rotate="0" tabularvalignment="middle">
37750 <column alignment="center" valignment="top" width="0">
37751 <column alignment="center" valignment="top" width="0">
37752 <row>
37753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37754 \begin_inset Text
37755
37756 \begin_layout Plain Layout
37757 texte
37758 \end_layout
37759
37760 \end_inset
37761 </cell>
37762 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
37763 \begin_inset Text
37764
37765 \begin_layout Plain Layout
37766 \begin_inset Graphics
37767         filename ../../images/dialog-show-new-inset_graphics.png
37768         scale 70
37769         scaleBeforeRotation
37770
37771 \end_inset
37772
37773
37774 \end_layout
37775
37776 \end_inset
37777 </cell>
37778 </row>
37779 <row>
37780 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
37781 \begin_inset Text
37782
37783 \begin_layout Plain Layout
37784 texte
37785 \end_layout
37786
37787 \end_inset
37788 </cell>
37789 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
37790 \begin_inset Text
37791
37792 \begin_layout Plain Layout
37793 texte
37794 \end_layout
37795
37796 \end_inset
37797 </cell>
37798 </row>
37799 </lyxtabular>
37800
37801 \end_inset
37802
37803
37804 \end_layout
37805
37806 \begin_layout Standard
37807 Pour avoir un objet exactement à la position à laquelle il a été inséré,
37808  par exemple pour avoir une de ces positions :
37809 \begin_inset VSpace defskip
37810 \end_inset
37811
37812
37813 \end_layout
37814
37815 \begin_layout Standard
37816 \noindent
37817 \align center
37818 \begin_inset Tabular
37819 <lyxtabular version="3" rows="2" columns="2">
37820 <features rotate="0" tabularvalignment="middle">
37821 <column alignment="center" valignment="top" width="0">
37822 <column alignment="center" valignment="top" width="0">
37823 <row>
37824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37825 \begin_inset Text
37826
37827 \begin_layout Plain Layout
37828 texte
37829 \end_layout
37830
37831 \end_inset
37832 </cell>
37833 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
37834 \begin_inset Text
37835
37836 \begin_layout Plain Layout
37837 texte
37838 \end_layout
37839
37840 \end_inset
37841 </cell>
37842 </row>
37843 <row>
37844 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
37845 \begin_inset Text
37846
37847 \begin_layout Plain Layout
37848 \begin_inset Graphics
37849         filename ../../images/dialog-show-new-inset_graphics.png
37850         scale 70
37851         scaleBeforeRotation
37852
37853 \end_inset
37854
37855
37856 \end_layout
37857
37858 \end_inset
37859 </cell>
37860 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
37861 \begin_inset Text
37862
37863 \begin_layout Plain Layout
37864 texte
37865 \end_layout
37866
37867 \end_inset
37868 </cell>
37869 </row>
37870 </lyxtabular>
37871
37872 \end_inset
37873
37874  
37875 \begin_inset Tabular
37876 <lyxtabular version="3" rows="2" columns="2">
37877 <features rotate="0" tabularvalignment="middle">
37878 <column alignment="center" valignment="top" width="0">
37879 <column alignment="center" valignment="top" width="0">
37880 <row>
37881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37882 \begin_inset Text
37883
37884 \begin_layout Plain Layout
37885 texte
37886 \end_layout
37887
37888 \end_inset
37889 </cell>
37890 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
37891 \begin_inset Text
37892
37893 \begin_layout Plain Layout
37894 texte
37895 \end_layout
37896
37897 \end_inset
37898 </cell>
37899 </row>
37900 <row>
37901 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
37902 \begin_inset Text
37903
37904 \begin_layout Plain Layout
37905 texte
37906 \end_layout
37907
37908 \end_inset
37909 </cell>
37910 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
37911 \begin_inset Text
37912
37913 \begin_layout Plain Layout
37914 \begin_inset Graphics
37915         filename ../../images/dialog-show-new-inset_graphics.png
37916         scale 70
37917         scaleBeforeRotation
37918
37919 \end_inset
37920
37921
37922 \end_layout
37923
37924 \end_inset
37925 </cell>
37926 </row>
37927 </lyxtabular>
37928
37929 \end_inset
37930
37931  
37932 \begin_inset Tabular
37933 <lyxtabular version="3" rows="2" columns="3">
37934 <features rotate="0" tabularvalignment="middle">
37935 <column alignment="center" valignment="top" width="0">
37936 <column alignment="center" valignment="top" width="0">
37937 <column alignment="center" valignment="top" width="0">
37938 <row>
37939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37940 \begin_inset Text
37941
37942 \begin_layout Plain Layout
37943 texte
37944 \end_layout
37945
37946 \end_inset
37947 </cell>
37948 <cell alignment="center" valignment="top" topline="true" usebox="none">
37949 \begin_inset Text
37950
37951 \begin_layout Plain Layout
37952 \begin_inset Graphics
37953         filename ../../images/dialog-show-new-inset_graphics.png
37954         scale 70
37955         scaleBeforeRotation
37956
37957 \end_inset
37958
37959
37960 \end_layout
37961
37962 \end_inset
37963 </cell>
37964 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
37965 \begin_inset Text
37966
37967 \begin_layout Plain Layout
37968 texte
37969 \end_layout
37970
37971 \end_inset
37972 </cell>
37973 </row>
37974 <row>
37975 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
37976 \begin_inset Text
37977
37978 \begin_layout Plain Layout
37979 texte
37980 \end_layout
37981
37982 \end_inset
37983 </cell>
37984 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
37985 \begin_inset Text
37986
37987 \begin_layout Plain Layout
37988 texte
37989 \end_layout
37990
37991 \end_inset
37992 </cell>
37993 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
37994 \begin_inset Text
37995
37996 \begin_layout Plain Layout
37997 texte
37998 \end_layout
37999
38000 \end_inset
38001 </cell>
38002 </row>
38003 </lyxtabular>
38004
38005 \end_inset
38006
38007  
38008 \begin_inset Tabular
38009 <lyxtabular version="3" rows="2" columns="3">
38010 <features rotate="0" tabularvalignment="middle">
38011 <column alignment="center" valignment="top" width="0">
38012 <column alignment="center" valignment="top" width="0">
38013 <column alignment="center" valignment="top" width="0">
38014 <row>
38015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38016 \begin_inset Text
38017
38018 \begin_layout Plain Layout
38019 texte
38020 \end_layout
38021
38022 \end_inset
38023 </cell>
38024 <cell alignment="center" valignment="top" topline="true" usebox="none">
38025 \begin_inset Text
38026
38027 \begin_layout Plain Layout
38028 texte
38029 \end_layout
38030
38031 \end_inset
38032 </cell>
38033 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
38034 \begin_inset Text
38035
38036 \begin_layout Plain Layout
38037 texte
38038 \end_layout
38039
38040 \end_inset
38041 </cell>
38042 </row>
38043 <row>
38044 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
38045 \begin_inset Text
38046
38047 \begin_layout Plain Layout
38048 texte
38049 \end_layout
38050
38051 \end_inset
38052 </cell>
38053 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
38054 \begin_inset Text
38055
38056 \begin_layout Plain Layout
38057 \begin_inset Graphics
38058         filename ../../images/dialog-show-new-inset_graphics.png
38059         scale 70
38060         scaleBeforeRotation
38061
38062 \end_inset
38063
38064
38065 \end_layout
38066
38067 \end_inset
38068 </cell>
38069 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
38070 \begin_inset Text
38071
38072 \begin_layout Plain Layout
38073 texte
38074 \end_layout
38075
38076 \end_inset
38077 </cell>
38078 </row>
38079 </lyxtabular>
38080
38081 \end_inset
38082
38083
38084 \end_layout
38085
38086 \begin_layout Standard
38087 \noindent
38088 \align center
38089 \begin_inset Tabular
38090 <lyxtabular version="3" rows="3" columns="2">
38091 <features rotate="0" tabularvalignment="middle">
38092 <column alignment="center" valignment="top" width="0">
38093 <column alignment="center" valignment="top" width="0">
38094 <row>
38095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38096 \begin_inset Text
38097
38098 \begin_layout Plain Layout
38099 texte
38100 \end_layout
38101
38102 \end_inset
38103 </cell>
38104 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
38105 \begin_inset Text
38106
38107 \begin_layout Plain Layout
38108 texte
38109 \end_layout
38110
38111 \end_inset
38112 </cell>
38113 </row>
38114 <row>
38115 <cell alignment="center" valignment="top" leftline="true" usebox="none">
38116 \begin_inset Text
38117
38118 \begin_layout Plain Layout
38119 \begin_inset Graphics
38120         filename ../../images/dialog-show-new-inset_graphics.png
38121         scale 70
38122         scaleBeforeRotation
38123
38124 \end_inset
38125
38126
38127 \end_layout
38128
38129 \end_inset
38130 </cell>
38131 <cell alignment="center" valignment="top" rightline="true" usebox="none">
38132 \begin_inset Text
38133
38134 \begin_layout Plain Layout
38135 texte
38136 \end_layout
38137
38138 \end_inset
38139 </cell>
38140 </row>
38141 <row>
38142 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
38143 \begin_inset Text
38144
38145 \begin_layout Plain Layout
38146 texte
38147 \end_layout
38148
38149 \end_inset
38150 </cell>
38151 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
38152 \begin_inset Text
38153
38154 \begin_layout Plain Layout
38155 texte
38156 \end_layout
38157
38158 \end_inset
38159 </cell>
38160 </row>
38161 </lyxtabular>
38162
38163 \end_inset
38164
38165  
38166 \begin_inset Tabular
38167 <lyxtabular version="3" rows="3" columns="3">
38168 <features rotate="0" tabularvalignment="middle">
38169 <column alignment="center" valignment="top" width="0">
38170 <column alignment="center" valignment="top" width="0">
38171 <column alignment="center" valignment="top" width="0">
38172 <row>
38173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38174 \begin_inset Text
38175
38176 \begin_layout Plain Layout
38177 texte
38178 \end_layout
38179
38180 \end_inset
38181 </cell>
38182 <cell alignment="center" valignment="top" topline="true" usebox="none">
38183 \begin_inset Text
38184
38185 \begin_layout Plain Layout
38186 texte
38187 \end_layout
38188
38189 \end_inset
38190 </cell>
38191 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
38192 \begin_inset Text
38193
38194 \begin_layout Plain Layout
38195 texte
38196 \end_layout
38197
38198 \end_inset
38199 </cell>
38200 </row>
38201 <row>
38202 <cell alignment="center" valignment="top" leftline="true" usebox="none">
38203 \begin_inset Text
38204
38205 \begin_layout Plain Layout
38206 texte
38207 \end_layout
38208
38209 \end_inset
38210 </cell>
38211 <cell alignment="center" valignment="top" usebox="none">
38212 \begin_inset Text
38213
38214 \begin_layout Plain Layout
38215 \begin_inset Graphics
38216         filename ../../images/dialog-show-new-inset_graphics.png
38217         scale 70
38218         scaleBeforeRotation
38219
38220 \end_inset
38221
38222
38223 \end_layout
38224
38225 \end_inset
38226 </cell>
38227 <cell alignment="center" valignment="top" rightline="true" usebox="none">
38228 \begin_inset Text
38229
38230 \begin_layout Plain Layout
38231 texte
38232 \end_layout
38233
38234 \end_inset
38235 </cell>
38236 </row>
38237 <row>
38238 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
38239 \begin_inset Text
38240
38241 \begin_layout Plain Layout
38242 texte
38243 \end_layout
38244
38245 \end_inset
38246 </cell>
38247 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
38248 \begin_inset Text
38249
38250 \begin_layout Plain Layout
38251 texte
38252 \end_layout
38253
38254 \end_inset
38255 </cell>
38256 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
38257 \begin_inset Text
38258
38259 \begin_layout Plain Layout
38260 texte
38261 \end_layout
38262
38263 \end_inset
38264 </cell>
38265 </row>
38266 </lyxtabular>
38267
38268 \end_inset
38269
38270  
38271 \begin_inset Tabular
38272 <lyxtabular version="3" rows="3" columns="2">
38273 <features rotate="0" tabularvalignment="middle">
38274 <column alignment="center" valignment="top" width="0">
38275 <column alignment="center" valignment="top" width="0">
38276 <row>
38277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38278 \begin_inset Text
38279
38280 \begin_layout Plain Layout
38281 texte
38282 \end_layout
38283
38284 \end_inset
38285 </cell>
38286 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
38287 \begin_inset Text
38288
38289 \begin_layout Plain Layout
38290 texte
38291 \end_layout
38292
38293 \end_inset
38294 </cell>
38295 </row>
38296 <row>
38297 <cell alignment="center" valignment="top" leftline="true" usebox="none">
38298 \begin_inset Text
38299
38300 \begin_layout Plain Layout
38301 texte
38302 \end_layout
38303
38304 \end_inset
38305 </cell>
38306 <cell alignment="center" valignment="top" rightline="true" usebox="none">
38307 \begin_inset Text
38308
38309 \begin_layout Plain Layout
38310 \begin_inset Graphics
38311         filename ../../images/dialog-show-new-inset_graphics.png
38312         scale 70
38313         scaleBeforeRotation
38314
38315 \end_inset
38316
38317
38318 \end_layout
38319
38320 \end_inset
38321 </cell>
38322 </row>
38323 <row>
38324 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
38325 \begin_inset Text
38326
38327 \begin_layout Plain Layout
38328 texte
38329 \end_layout
38330
38331 \end_inset
38332 </cell>
38333 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
38334 \begin_inset Text
38335
38336 \begin_layout Plain Layout
38337 texte
38338 \end_layout
38339
38340 \end_inset
38341 </cell>
38342 </row>
38343 </lyxtabular>
38344
38345 \end_inset
38346
38347
38348 \end_layout
38349
38350 \begin_layout Standard
38351 vous pouvez utiliser la paquetage LaTeX 
38352 \end_layout
38353
38354 \begin_layout Standard
38355 \noindent
38356
38357 \series bold
38358 picinpar
38359 \series default
38360
38361 \begin_inset Index idx
38362 status collapsed
38363
38364 \begin_layout Plain Layout
38365 Paquetages LaTeX ! picinpar
38366 \end_layout
38367
38368 \end_inset
38369
38370 .
38371  Voici un exemple :
38372 \end_layout
38373
38374 \begin_layout Standard
38375 \begin_inset ERT
38376 status collapsed
38377
38378 \begin_layout Plain Layout
38379
38380
38381 \backslash
38382 ifpicinpar
38383 \end_layout
38384
38385 \end_inset
38386
38387
38388 \begin_inset Note Note
38389 status open
38390
38391 \begin_layout Plain Layout
38392 La section suivante ne sera affichée que si le paquetage LaTeX 
38393 \series bold
38394 picinpar
38395 \series default
38396  a été installé.
38397 \end_layout
38398
38399 \end_inset
38400
38401
38402 \end_layout
38403
38404 \begin_layout Standard
38405 \begin_inset ERT
38406 status collapsed
38407
38408 \begin_layout Plain Layout
38409
38410
38411 \backslash
38412 begin{window}[2,c,{
38413 \end_layout
38414
38415 \end_inset
38416
38417
38418 \begin_inset Graphics
38419         filename ../clipart/mobius.eps
38420         lyxscale 60
38421         width 40col%
38422         scaleBeforeRotation
38423         rotateOrigin center
38424
38425 \end_inset
38426
38427
38428 \begin_inset ERT
38429 status collapsed
38430
38431 \begin_layout Plain Layout
38432
38433 },]
38434 \end_layout
38435
38436 \begin_layout Plain Layout
38437
38438 {}
38439 \end_layout
38440
38441 \end_inset
38442
38443
38444 \size small
38445 \lang english
38446 It was in the spring of the year 1894 that all London was interested, and
38447  the fashionable world dismayed, by the murder of the Honourable Ronald
38448  Adair under most unusual and inexplicable circumstances.
38449  The public has already learned those particulars of the crime which
38450 \size default
38451
38452 \begin_inset ERT
38453 status collapsed
38454
38455 \begin_layout Plain Layout
38456
38457
38458 \backslash
38459 footnotemark{}
38460 \end_layout
38461
38462 \end_inset
38463
38464
38465 \size small
38466  came out in the police investigation, but a good deal was suppressed upon
38467  that occasion, since the case for the prosecution was so overwhelmingly
38468  strong that it was not necessary to bring forward all the facts.
38469  Only now, at the end of nearly ten years, am I allowed to supply those
38470  missing links which make up the whole of that remarkable chain
38471 \lang french
38472 .
38473 \size default
38474
38475 \begin_inset ERT
38476 status collapsed
38477
38478 \begin_layout Plain Layout
38479
38480
38481 \backslash
38482 end{window}
38483 \end_layout
38484
38485 \end_inset
38486
38487
38488 \end_layout
38489
38490 \begin_layout Standard
38491 \begin_inset ERT
38492 status collapsed
38493
38494 \begin_layout Plain Layout
38495
38496
38497 \backslash
38498 footnotetext{
38499 \end_layout
38500
38501 \end_inset
38502
38503 Note de pied de page du paragraphe avec objet fixe.
38504 \begin_inset ERT
38505 status collapsed
38506
38507 \begin_layout Plain Layout
38508
38509 }
38510 \end_layout
38511
38512 \end_inset
38513
38514
38515 \end_layout
38516
38517 \begin_layout Standard
38518 Les objets fixes enrobés sont utilisés pour laisser le texte s'écouler autour
38519  d'eux et leur position est déterminée par le nombre de lignes de texte
38520  situées audessus d'eux.
38521  Contrairement aux flottants d'enrobage, on ne peut pas avoir de légende
38522  numérotée.
38523 \end_layout
38524
38525 \begin_layout Standard
38526 Un objet fixe enrobé est inséré en ajoutant la commande
38527 \end_layout
38528
38529 \begin_layout Standard
38530
38531 \series bold
38532
38533 \backslash
38534 begin{window}[2,c,{
38535 \end_layout
38536
38537 \begin_layout Standard
38538 en code TeX au debut du paragraphe.
38539  Le premier paramètre du crochet, ici '2', définit le nombre de lignes au
38540  dessus de l'objet, le second, ici 'c', la position de l'objet.
38541  Les positions 'l', 'c' et 'r' ( respectivement pour gauche, centré et droite
38542  ) sont possibles.
38543  Après la commande, vous insérez votre objet.
38544  Dans cet exemple, c'est une image avec une largeur de 40
38545 \begin_inset space \thinspace{}
38546 \end_inset
38547
38548 % de la colonne de texte qui a été insérée.
38549  L'objet peut aussi être un tableau, une boîte ou une équation.
38550  Après l'objet, on insère la commande
38551 \end_layout
38552
38553 \begin_layout Standard
38554
38555 \series bold
38556 },texte de description ]
38557 \begin_inset Newline newline
38558 \end_inset
38559
38560 {}
38561 \end_layout
38562
38563 \begin_layout Standard
38564 Notez que le 
38565 \begin_inset Quotes fld
38566 \end_inset
38567
38568
38569 \series bold
38570 {}
38571 \series default
38572
38573 \begin_inset Quotes frd
38574 \end_inset
38575
38576  est sur la deuxième ligne.
38577  Le texte de description est facultatif.
38578  Le texte entourant l'objet doit être dans le même paragraphe que celui-ci,
38579  il doit donc commence juste après le 
38580 \series bold
38581 {}
38582 \series default
38583 .
38584  A la fin du paragraphe on insère la commande :
38585 \end_layout
38586
38587 \begin_layout Standard
38588
38589 \series bold
38590
38591 \backslash
38592 end{window}
38593 \end_layout
38594
38595 \begin_layout Standard
38596 A l'intérieur d'un paragraphe contenant un objet fixe, vous ne pouvez pas
38597  ajouter des notes de pied de page de la façon habituelle.
38598  Vous devez utiliser la commande 
38599 \series bold
38600
38601 \backslash
38602 footnotemark
38603 \series default
38604  à l'intérieur du paragraphe et la commande 
38605 \series bold
38606
38607 \backslash
38608 footnotetext
38609 \series default
38610  à l'extérieur, comme décrit dans la section
38611 \begin_inset space \thinspace{}
38612 \end_inset
38613
38614
38615 \begin_inset CommandInset ref
38616 LatexCommand ref
38617 reference "sec:Notes-bas-de-page"
38618
38619 \end_inset
38620
38621 .
38622 \end_layout
38623
38624 \begin_layout Standard
38625 \begin_inset ERT
38626 status collapsed
38627
38628 \begin_layout Plain Layout
38629
38630
38631 \backslash
38632 else
38633 \end_layout
38634
38635 \end_inset
38636
38637
38638 \begin_inset Note Note
38639 status open
38640
38641 \begin_layout Plain Layout
38642 Ce qui suit sera affiché si le paquetage LaTeX 
38643 \series bold
38644 picinpar
38645 \series default
38646  n'est pas installé :
38647 \end_layout
38648
38649 \end_inset
38650
38651
38652 \end_layout
38653
38654 \begin_layout Standard
38655 Vous devez installer le paquetage LaTeX 
38656 \series bold
38657 picinpar
38658 \series default
38659  pour voir la suite de cette section dans la sortie imprimée.
38660 \end_layout
38661
38662 \begin_layout Standard
38663 \begin_inset ERT
38664 status collapsed
38665
38666 \begin_layout Plain Layout
38667
38668
38669 \backslash
38670 fi
38671 \end_layout
38672
38673 \end_inset
38674
38675
38676 \end_layout
38677
38678 \begin_layout Section
38679 Lettrines
38680 \begin_inset Index idx
38681 status collapsed
38682
38683 \begin_layout Plain Layout
38684 Lettrines
38685 \end_layout
38686
38687 \end_inset
38688
38689
38690 \begin_inset Index idx
38691 status collapsed
38692
38693 \begin_layout Plain Layout
38694 Entouré par du texte ! Lettrines
38695 \end_layout
38696
38697 \end_inset
38698
38699
38700 \end_layout
38701
38702 \begin_layout Standard
38703 Pour utiliser des lettrines, le paquetage LaTeX 
38704 \series bold
38705 lettrine
38706 \series default
38707
38708 \begin_inset Index idx
38709 status collapsed
38710
38711 \begin_layout Plain Layout
38712 Paquetages LaTeX ! lettrine
38713 \end_layout
38714
38715 \end_inset
38716
38717  doit être installé et vous devez utiliser le module Initiales (
38718 \begin_inset space ~
38719 \end_inset
38720
38721 menu 
38722 \family sans
38723 Document\SpecialChar \menuseparator
38724 Paramètres\SpecialChar \menuseparator
38725 Modules
38726 \family default
38727
38728 \begin_inset space ~
38729 \end_inset
38730
38731 ).
38732  Pour insérer une lettrine, utilisez le style 
38733 \family sans
38734 Initial
38735 \family default
38736 .
38737  Les paramètres sont insérés avec le menu 
38738 \family sans
38739 Insertion
38740 \family default
38741 .
38742  Le paramètre obligatoire 
38743 \family sans
38744 \lang english
38745 Initial
38746 \family default
38747 \lang french
38748  contient la/les lettre(s) qui sert d'initiale, le paramètre 
38749 \family sans
38750 \lang english
38751 Rest
38752 \begin_inset space ~
38753 \end_inset
38754
38755 of
38756 \begin_inset space ~
38757 \end_inset
38758
38759 Initial
38760 \family default
38761  
38762 \lang french
38763 contient
38764 \lang english
38765  the rest of the word or text of the initial letter(s)
38766 \lang french
38767 .
38768  Le paramètre 
38769 \family sans
38770 \lang english
38771 Options
38772 \family default
38773 \lang french
38774  contient paramètres pour modifier la lettrine.
38775  Pour plus d'informations sur les paramètres possibles, voyez la documentation
38776  du paquetage 
38777 \series bold
38778 lettrine
38779 \series default
38780
38781 \begin_inset CommandInset citation
38782 LatexCommand cite
38783 key "lettrine"
38784
38785 \end_inset
38786
38787 .
38788  Le style lui-même contient le texte qui doit entourer la lettrine.
38789  Le style habituel est par conséquent que le mot dont la première lettre
38790  est l'initiale soit en 
38791 \shape smallcaps
38792 petites capitales
38793 \shape default
38794 .
38795 \end_layout
38796
38797 \begin_layout Standard
38798 \begin_inset Newpage pagebreak
38799 \end_inset
38800
38801
38802 \end_layout
38803
38804 \begin_layout Standard
38805 Voici quelques exemples
38806 \begin_inset space ~
38807 \end_inset
38808
38809 :
38810 \end_layout
38811
38812 \begin_layout Standard
38813 \begin_inset ERT
38814 status collapsed
38815
38816 \begin_layout Plain Layout
38817
38818
38819 \backslash
38820 iflettrine
38821 \end_layout
38822
38823 \end_inset
38824
38825
38826 \begin_inset Note Note
38827 status open
38828
38829 \begin_layout Plain Layout
38830 La section suivante ne sera affichée que si le paquetage LaTeX 
38831 \series bold
38832 lettrine
38833 \series default
38834  a été installé.
38835 \end_layout
38836
38837 \end_inset
38838
38839
38840 \end_layout
38841
38842 \begin_layout Enumerate
38843 Pas de paramètre optionnel, la lettre initiale est un 'I' dans la police
38844  mathématique 
38845 \begin_inset Formula $\mathfrak{Fraktur}$
38846 \end_inset
38847
38848 :
38849 \end_layout
38850
38851 \begin_deeper
38852 \begin_layout Initial
38853 \begin_inset Argument 2
38854 status open
38855
38856 \begin_layout Plain Layout
38857 \begin_inset Formula $\mathfrak{I}$
38858 \end_inset
38859
38860
38861 \end_layout
38862
38863 \end_inset
38864
38865
38866 \begin_inset Argument 3
38867 status open
38868
38869 \begin_layout Plain Layout
38870 t
38871 \end_layout
38872
38873 \end_inset
38874
38875  
38876 \lang english
38877 was in the spring of the year 1894 that all London was interested, and the
38878  fashionable world dismayed, by the murder of the Honourable Ronald Adair
38879  under most unusual and inexplicable circumstances.
38880  The public has already learned those particulars of the crime which came
38881  out in the police investigation, but a good deal was suppressed upon that
38882  occasion, since the case for the prosecution was so overwhelmingly strong
38883  that it was not necessary to bring forward all the facts.
38884 \end_layout
38885
38886 \end_deeper
38887 \begin_layout Enumerate
38888 L'initiale est entourée par une seule ligne et est formée de deux lettres
38889  dans la police standard ; aucun texte n'est écrit en petites capitales
38890 \begin_inset space ~
38891 \end_inset
38892
38893 :
38894 \end_layout
38895
38896 \begin_deeper
38897 \begin_layout Initial
38898 \begin_inset Argument 1
38899 status open
38900
38901 \begin_layout Plain Layout
38902 lines=1
38903 \end_layout
38904
38905 \end_inset
38906
38907
38908 \begin_inset Argument 2
38909 status open
38910
38911 \begin_layout Plain Layout
38912 It
38913 \end_layout
38914
38915 \end_inset
38916
38917  
38918 \lang english
38919 was in the spring of the year 1894 that all London was interested, and the
38920  fashionable world dismayed, by the murder of the Honourable Ronald Adair
38921  under most unusual and inexplicable circumstances.
38922  The public has already learned those particulars of the crime which came
38923  out in the police investigation, but a good deal was suppressed upon that
38924  occasion, since the case for the prosecution was so overwhelmingly strong
38925  that it was not necessary to bring forward all the facts.
38926 \end_layout
38927
38928 \end_deeper
38929 \begin_layout Enumerate
38930 Initiale descendante sur 3
38931 \begin_inset space ~
38932 \end_inset
38933
38934 lignes en magenta en police mathématique 
38935 \begin_inset Formula $\mathcal{CALLIGRAPHIC}$
38936 \end_inset
38937
38938 , le texte 
38939 \begin_inset Quotes fld
38940 \end_inset
38941
38942
38943 \lang english
38944 t was in the spring
38945 \lang french
38946
38947 \begin_inset Quotes frd
38948 \end_inset
38949
38950  est en 
38951 \shape smallcaps
38952 petites capitales
38953 \shape default
38954  ; pour colorer la lettrine, il faut insérer la commande suivante juste
38955  avant l'initiale
38956 \begin_inset space ~
38957 \end_inset
38958
38959 :
38960 \begin_inset Newline newline
38961 \end_inset
38962
38963
38964 \series bold
38965
38966 \backslash
38967 renewcommand{
38968 \backslash
38969 LettrineFontHook}{
38970 \backslash
38971 color{couleur}}
38972 \series default
38973
38974 \begin_inset Newline newline
38975 \end_inset
38976
38977 où la 
38978 \emph on
38979 couleur
38980 \emph default
38981  peut être 
38982 \begin_inset Quotes fld
38983 \end_inset
38984
38985 red
38986 \begin_inset Quotes frd
38987 \end_inset
38988
38989
38990 \begin_inset Quotes fld
38991 \end_inset
38992
38993 blue
38994 \begin_inset Quotes frd
38995 \end_inset
38996
38997
38998 \begin_inset Quotes fld
38999 \end_inset
39000
39001 green
39002 \begin_inset Quotes frd
39003 \end_inset
39004
39005
39006 \begin_inset Quotes fld
39007 \end_inset
39008
39009 yellow
39010 \begin_inset Quotes frd
39011 \end_inset
39012
39013
39014 \begin_inset Quotes fld
39015 \end_inset
39016
39017 cyan
39018 \begin_inset Quotes frd
39019 \end_inset
39020
39021
39022 \begin_inset Quotes fld
39023 \end_inset
39024
39025 magenta
39026 \begin_inset Quotes frd
39027 \end_inset
39028
39029
39030 \begin_inset Quotes fld
39031 \end_inset
39032
39033 black
39034 \begin_inset Quotes frd
39035 \end_inset
39036
39037  ou 
39038 \begin_inset Quotes fld
39039 \end_inset
39040
39041 white
39042 \begin_inset Quotes frd
39043 \end_inset
39044
39045 .
39046  On doit aussi ajouter la commande suivante au préambule du document
39047 \begin_inset space ~
39048 \end_inset
39049
39050 :
39051 \begin_inset Newline newline
39052 \end_inset
39053
39054
39055 \series bold
39056
39057 \backslash
39058 @ifundefined{textcolor}
39059 \begin_inset Newline newline
39060 \end_inset
39061
39062
39063 \begin_inset space ~
39064 \end_inset
39065
39066 {
39067 \backslash
39068 usepackage{color}}{}
39069 \end_layout
39070
39071 \begin_deeper
39072 \begin_layout Standard
39073 \begin_inset ERT
39074 status collapsed
39075
39076 \begin_layout Plain Layout
39077
39078
39079 \backslash
39080 renewcommand{
39081 \backslash
39082 LettrineFontHook}{
39083 \backslash
39084 color{magenta}}
39085 \end_layout
39086
39087 \end_inset
39088
39089
39090 \begin_inset Note Note
39091 status collapsed
39092
39093 \begin_layout Plain Layout
39094 colore la lettrine en magenta
39095 \end_layout
39096
39097 \end_inset
39098
39099
39100 \end_layout
39101
39102 \begin_layout Initial
39103 \begin_inset Argument 1
39104 status open
39105
39106 \begin_layout Plain Layout
39107 lines=3, lhang=0.33, loversize=0.25
39108 \end_layout
39109
39110 \end_inset
39111
39112
39113 \begin_inset Argument 2
39114 status open
39115
39116 \begin_layout Plain Layout
39117 \begin_inset Formula $\mathcal{I}$
39118 \end_inset
39119
39120
39121 \end_layout
39122
39123 \end_inset
39124
39125
39126 \begin_inset Argument 3
39127 status open
39128
39129 \begin_layout Plain Layout
39130
39131 \lang english
39132 t was in the spring
39133 \end_layout
39134
39135 \end_inset
39136
39137
39138 \lang english
39139  of the year 1894 that all London was interested, and the fashionable world
39140  dismayed, by the murder of the Honourable Ronald Adair under most unusual
39141  and inexplicable circumstances.
39142  The public has already learned those particulars of the crime which came
39143  out in the police investigation, but a good deal was suppressed upon that
39144  occasion, since the case for the prosecution was so overwhelmingly strong
39145  that it was not necessary to bring forward all the facts.
39146 \end_layout
39147
39148 \end_deeper
39149 \begin_layout Standard
39150 \begin_inset ERT
39151 status collapsed
39152
39153 \begin_layout Plain Layout
39154
39155
39156 \backslash
39157 else
39158 \end_layout
39159
39160 \end_inset
39161
39162
39163 \begin_inset Note Note
39164 status open
39165
39166 \begin_layout Plain Layout
39167 Ce qui suit sera affiché si le paquetage LaTeX 
39168 \series bold
39169 lettrine
39170 \series default
39171  n'est pas installé :
39172 \end_layout
39173
39174 \end_inset
39175
39176
39177 \end_layout
39178
39179 \begin_layout Standard
39180 Vous devez installer le paquetage LaTeX 
39181 \series bold
39182 lettrine
39183 \series default
39184  pour voir la suite de cette section dans la sortie imprimée.
39185 \end_layout
39186
39187 \begin_layout Standard
39188 \begin_inset ERT
39189 status collapsed
39190
39191 \begin_layout Plain Layout
39192
39193
39194 \backslash
39195 fi
39196 \end_layout
39197
39198 \end_inset
39199
39200
39201 \end_layout
39202
39203 \begin_layout Chapter
39204 Trucs externes
39205 \begin_inset Index idx
39206 status collapsed
39207
39208 \begin_layout Plain Layout
39209 Trucs externes
39210 \end_layout
39211
39212 \end_inset
39213
39214
39215 \end_layout
39216
39217 \begin_layout Standard
39218 Avec le menu 
39219 \family sans
39220 Insertion\SpecialChar \menuseparator
39221 Fichier
39222 \family default
39223  vous pouvez insérer un contenu externe à votre document.
39224  Ce contenu peut être :
39225 \end_layout
39226
39227 \begin_layout Description
39228 Document
39229 \begin_inset space ~
39230 \end_inset
39231
39232 LyX Un autre document LyX ; son contenu est directement inséré dans votre
39233  document.
39234 \end_layout
39235
39236 \begin_layout Description
39237 Texte
39238 \begin_inset space ~
39239 \end_inset
39240
39241 Brut Un document textuel ; chacune des ses lignes est insérée comme un paragraph
39242 e.
39243 \end_layout
39244
39245 \begin_layout Description
39246 Texte
39247 \begin_inset space ~
39248 \end_inset
39249
39250 Brut
39251 \begin_inset space ~
39252 \end_inset
39253
39254 par
39255 \begin_inset space ~
39256 \end_inset
39257
39258 Ligne Un document textuel ; ses lignes sont insérées telle qu'elles.
39259  Les lignes vides créent un nouveau paragraphe dans votre document.
39260 \end_layout
39261
39262 \begin_layout Description
39263 Objet
39264 \begin_inset space ~
39265 \end_inset
39266
39267 Externe Fichiers de formats variés.
39268 \end_layout
39269
39270 \begin_layout Description
39271 Sous-document Documents LyX ou LaTeX.
39272 \end_layout
39273
39274 \begin_layout Section
39275 Objets externes 
39276 \begin_inset Index idx
39277 status collapsed
39278
39279 \begin_layout Plain Layout
39280 Trucs externes ! Objets Externes
39281 \end_layout
39282
39283 \end_inset
39284
39285
39286 \end_layout
39287
39288 \begin_layout Standard
39289 La fonction d'insertion d'objets externes vous permet d'insérer le contenu
39290  de fichiers dans votre document sans avoir à convertir ces derniers en
39291  un format qui soit compatible avec le format de sortie, puisque c'est LyX
39292  qui va s'occuper des conversions.
39293  Ce mécanisme est semblable à celui qui permet d'insérer dans un document
39294  LyX des images dans des formats divers.
39295  Quand vous avez activé 
39296 \family sans
39297 Aperçu
39298 \begin_inset space ~
39299 \end_inset
39300
39301 sur
39302 \begin_inset space ~
39303 \end_inset
39304
39305 le
39306 \begin_inset space ~
39307 \end_inset
39308
39309 vif
39310 \family default
39311  dans le menu des préférences de LyX, dans la rubrique 
39312 \family sans
39313 Apparence\SpecialChar \menuseparator
39314 Graphiques
39315 \family default
39316 , les objets externes de type Dia et Xfig sont affichés directement dans
39317  LyX.
39318 \end_layout
39319
39320 \begin_layout Standard
39321 On insère des objets externes en utilisant la fenêtre de dialogue 
39322 \family sans
39323 Objet
39324 \begin_inset space ~
39325 \end_inset
39326
39327 Externe
39328 \family default
39329  qui est accessible via le menu 
39330 \family sans
39331 Insertion\SpecialChar \menuseparator
39332 Fichiers\SpecialChar \menuseparator
39333 Objet
39334 \begin_inset space ~
39335 \end_inset
39336
39337 Externe
39338 \family default
39339 .
39340  Actuellement les types de fichiers (
39341 \family sans
39342 Modèles
39343 \family default
39344 ) suivants sont autorisés :
39345 \end_layout
39346
39347 \begin_layout Description
39348 Échiquier Ce modèle accepte les diagrammes de positions d'échec produits
39349  par le programme 
39350 \series bold
39351
39352 \begin_inset CommandInset href
39353 LatexCommand href
39354 name "XBoard"
39355 target "http://fr.wikipedia.org/wiki/XBoard"
39356
39357 \end_inset
39358
39359
39360 \series default
39361 .
39362 \end_layout
39363
39364 \begin_layout Description
39365 Date Ce modèle insère la date sous la forme 
39366 \emph on
39367 Jour-Mois-Année
39368 \emph default
39369 .
39370  Voici un exemple de date insérée comme objet externe :: 
39371 \begin_inset External
39372         template Date
39373         filename .
39374
39375 \end_inset
39376
39377
39378 \begin_inset space ~
39379 \end_inset
39380
39381
39382 \begin_inset Note Note
39383 status collapsed
39384
39385 \begin_layout Plain Layout
39386 Retirer l'espace protégé quand le bug 4398 sera résolu !
39387 \end_layout
39388
39389 \end_inset
39390
39391
39392 \begin_inset Newline newline
39393 \end_inset
39394
39395 La date n'apparaîtra pas dans LyX, mais seulement dans la sortie imprimée.
39396  Il y a deux autre méthodes pour insérer une date : Avec le menu 
39397 \family sans
39398 Insertion\SpecialChar \menuseparator
39399 Date
39400 \family default
39401  et avec la commande LaTeX 
39402 \series bold
39403
39404 \backslash
39405 today
39406 \series default
39407  entrée comme code TeX.
39408  Ces différentes méthodes sont comparée dans le tableau
39409 \begin_inset space ~
39410 \end_inset
39411
39412
39413 \begin_inset CommandInset ref
39414 LatexCommand ref
39415 reference "tab:Comparaison-des-dates"
39416
39417 \end_inset
39418
39419 .
39420 \end_layout
39421
39422 \begin_layout Description
39423 Dia Ce modèle accepte les diagrammes créés avec le programme 
39424 \series bold
39425
39426 \begin_inset CommandInset href
39427 LatexCommand href
39428 name "Dia"
39429 target "http://fr.wikipedia.org/wiki/Dia_(logiciel)"
39430
39431 \end_inset
39432
39433
39434 \series default
39435 .
39436 \end_layout
39437
39438 \begin_layout Description
39439 TableurGnumeric Avec ce modèle vous pouvez insérer des feuilles de calcul
39440  ou des tableaux dans le format de 
39441 \series bold
39442
39443 \begin_inset CommandInset href
39444 LatexCommand href
39445 name "Gnumeric"
39446 target "http://fr.wikipedia.org/wiki/Gnumeric"
39447
39448 \end_inset
39449
39450
39451 \series default
39452
39453 \begin_inset CommandInset href
39454 LatexCommand href
39455 name "OpenDocument"
39456 target "http://fr.wikipedia.org/wiki/OpenDocument"
39457
39458 \end_inset
39459
39460
39461 \begin_inset CommandInset href
39462 LatexCommand href
39463 name "Microsoft Office XML"
39464 target "http://en.wikipedia.org/wiki/Microsoft_Office_XML_formats"
39465
39466 \end_inset
39467
39468  et 
39469 \begin_inset CommandInset href
39470 LatexCommand href
39471 name "Office Open XML"
39472 target "http://fr.wikipedia.org/wiki/Office_Open_XML"
39473
39474 \end_inset
39475
39476 .
39477  Pour cette fonction, LyX doit pouvoir trouver le programme 
39478 \family typewriter
39479 ssconvert
39480 \family default
39481  au cours de sa configuration.
39482  Ce programme fait partie de gnumeric, vous devez donc aussi installer gnumeric,
39483  même si vous n'avez pas de tableaux au format gnumeric.
39484  Pour des exemples et les limitations possibles, jetez un œil au fichier
39485  LyX d'exemple, 
39486 \emph on
39487 spreadsheet.lyx
39488 \emph default
39489 .
39490 \end_layout
39491
39492 \begin_layout Description
39493 LilyPond Ce modèle est utilisé avec des partitions musicales mises en forme
39494  par le programme 
39495 \series bold
39496
39497 \begin_inset CommandInset href
39498 LatexCommand href
39499 name "LilyPond"
39500 target "http://fr.wikipedia.org/wiki/GNU_LilyPond"
39501
39502 \end_inset
39503
39504
39505 \series default
39506 .
39507  Pour plus d'information sur la gestion étendue de LilyPond, jetez un oeil
39508  au fichier LyX d'exemple 
39509 \emph on
39510 lilypond.lyx
39511 \emph default
39512 .
39513 \end_layout
39514
39515 \begin_layout Description
39516 PDFPages Ce modèle permet d'insérer des documents en PDF dans votre document.
39517  Pour insérer certaines pages ou toutes les pages d'un PDF, utilisez l'option
39518  
39519 \emph on
39520 pages
39521 \emph default
39522  dans le champ 
39523 \family sans
39524 Option
39525 \family default
39526  dans l'onglet 
39527 \family sans
39528 Options LaTeX et LyX
39529 \family default
39530 .
39531  L'argument de cette option est une liste d'éléments séparés par des virgules,
39532  contenant des numéros de pages (
39533 \begin_inset space ~
39534 \end_inset
39535
39536 insérez comme option 
39537 \series bold
39538 pages={3,5,6,8}
39539 \series default
39540
39541 \begin_inset space ~
39542 \end_inset
39543
39544 ), des plages de numéros de pages (
39545 \series bold
39546
39547 \begin_inset space ~
39548 \end_inset
39549
39550 pages={4-9}
39551 \series default
39552
39553 \begin_inset space ~
39554 \end_inset
39555
39556 ) ou n'importe quelle combinaison des deux.
39557  Pour insérer des pages vides, utilisez 
39558 \series bold
39559 {}
39560 \series default
39561 .
39562  Par exemple 
39563 \begin_inset space ~
39564 \end_inset
39565
39566
39567 \series bold
39568 pages={3,{},8-11,15}
39569 \series default
39570  va insérer la page 3, puis une page vide, puis les pages 8, 9, 10, 11 et
39571  15.
39572  Les plages de pages sont décrites avec la syntaxe 
39573 \emph on
39574 début-fin
39575 \emph default
39576  qui sélectionne toutes les pages de 
39577 \emph on
39578 début
39579 \emph default
39580  jusqu'à 
39581 \emph on
39582 fin
39583 \emph default
39584 .
39585  Si on omet 
39586 \emph on
39587 début
39588 \emph default
39589 , on commence implicitement à la première page ; de même, omettre 
39590 \emph on
39591 fin
39592 \emph default
39593  termine implicitement à la dernière page du document.
39594  La dernière page du document peut aussi être désignée par le mot-clé 
39595 \series bold
39596 last
39597 \series default
39598  (
39599 \begin_inset space ~
39600 \end_inset
39601
39602 ce dernier n'est accepté que pour une plage de pages
39603 \begin_inset space ~
39604 \end_inset
39605
39606 ).
39607  Donc 
39608 \series bold
39609 pages=-
39610 \series default
39611  va insérer toutes les pages du document et 
39612 \series bold
39613 pages=last-1
39614 \series default
39615  va insérer toutes les pages dans l'ordre inverse.
39616  Si on ne donne pas d'option pages, seule la première page du PDF sera insérée.
39617 \begin_inset Newline newline
39618 \end_inset
39619
39620 L'option 
39621 \series bold
39622 noautoscale
39623 \series default
39624  insère les pages avec leur taille d'origine, si cette option n'est pas
39625  donnée, les pages seront redimensionnées
39626 \begin_inset space \space{}
39627 \end_inset
39628
39629 pour tenir dans la largeur de page de votre document.
39630  Dans l'onglet 
39631 \family sans
39632 Taille
39633 \begin_inset space ~
39634 \end_inset
39635
39636 et
39637 \begin_inset space ~
39638 \end_inset
39639
39640 rotation
39641 \family default
39642  vous pouvez préciser la largeur et la hauteur des pages incorporées ainsi
39643  qu'une éventuelle rotation.
39644  Si vous utilisez une autre largeur que 100
39645 \begin_inset space \thinspace{}
39646 \end_inset
39647
39648 Échelle%, l'option 
39649 \series bold
39650 noautoscale
39651 \series default
39652  sera neutralisée.
39653  Pour plus d'information sur les options possibles, jetez un œil sur la
39654  documentation du paquetage LaTeX 
39655 \series bold
39656 pdfpages
39657 \series default
39658  
39659 \begin_inset CommandInset citation
39660 LatexCommand cite
39661 key "pdfpages"
39662
39663 \end_inset
39664
39665 .
39666 \begin_inset Index idx
39667 status collapsed
39668
39669 \begin_layout Plain Layout
39670 Paquetages LaTeX ! pdfpages
39671 \end_layout
39672
39673 \end_inset
39674
39675
39676 \begin_inset Newline newline
39677 \end_inset
39678
39679 Pour utiliser ce modèle dans une présentation 
39680 \family sans
39681 Beamer
39682 \family default
39683  vous devez d'abord insérer un environnement 
39684 \family sans
39685 FinCadre
39686 \family default
39687  et dans la suite, dans un paragraphe, une boîte de code TeX contenant la
39688  commande 
39689 \series bold
39690
39691 \backslash
39692 setbeamertemplate{background canvas}{}
39693 \series default
39694 .
39695  Ensuite vous pouvez insérer autant de paragraphes contenant le modèle PDFPages
39696  que vous voulez.
39697  Après les pages PDF incorporées, vous pouvez reprendre la présentation
39698  Beamer en commençant une nouvelle diapositive ou en commençant une nouvelle
39699  section.
39700  Pour éviter des pages blanches indésirables avant les pages PDF, n'oubliez
39701  pas d'utiliser un alignement Implicite pour le paragraphe qui contient
39702  le modèle.
39703 \begin_inset Newline newline
39704 \end_inset
39705
39706 Voici un PDF incorporé basculé de -5°
39707 \begin_inset space ~
39708 \end_inset
39709
39710 °: 
39711 \begin_inset External
39712         template PDFPages
39713         filename ../clipart/Abstract.pdf
39714         extra LaTeX "noautoscale, pages=-"
39715         rotateAngle -5
39716         rotateOrigin bottomleft
39717
39718 \end_inset
39719
39720
39721 \end_layout
39722
39723 \begin_layout Description
39724 RasterImage Ce modèle peut être utilisé pour les images matricielles (bitmap).
39725  Les images peuvent être traitées dans la fenêtre de dialogue 
39726 \family sans
39727 Objet
39728 \begin_inset space ~
39729 \end_inset
39730
39731 Externe
39732 \family default
39733  comme les images qui sont habituellement incorporées en utilisant le menu
39734  
39735 \family sans
39736 Insertion\SpecialChar \menuseparator
39737 Graphique
39738 \family default
39739 , comme c'est décrit dans la section
39740 \begin_inset space ~
39741 \end_inset
39742
39743
39744 \begin_inset CommandInset ref
39745 LatexCommand ref
39746 reference "sec:Graphics-Dialog"
39747
39748 \end_inset
39749
39750 .
39751  La différence avec l'insertion normale d'image est que seules les images
39752  matricielles sont autorisées, ce qui veut dire que les images PDF et EPS
39753  ne sont pas acceptées.
39754  Voici un exemple d'insertion d'image matricielle
39755 \begin_inset space ~
39756 \end_inset
39757
39758
39759 \begin_inset External
39760         template RasterImage
39761         filename ../clipart/ToolbarEnvBox.png
39762
39763 \end_inset
39764
39765
39766 \end_layout
39767
39768 \begin_layout Description
39769 XFig Ce modèle accepte les images créées avec le programme 
39770 \series bold
39771
39772 \begin_inset CommandInset href
39773 LatexCommand href
39774 name "Xfig"
39775 target "http://fr.wikipedia.org/wiki/Xfig"
39776
39777 \end_inset
39778
39779
39780 \series default
39781 .
39782 \end_layout
39783
39784 \begin_layout Standard
39785 \begin_inset Float table
39786 placement !h
39787 wide false
39788 sideways false
39789 status open
39790
39791 \begin_layout Plain Layout
39792 \begin_inset Caption Standard
39793
39794 \begin_layout Plain Layout
39795 \begin_inset CommandInset label
39796 LatexCommand label
39797 name "tab:Comparaison-des-dates"
39798
39799 \end_inset
39800
39801 Comparaison des méthodes d'insertion de la date.
39802 \end_layout
39803
39804 \end_inset
39805
39806
39807 \end_layout
39808
39809 \begin_layout Plain Layout
39810 \align center
39811 \begin_inset Tabular
39812 <lyxtabular version="3" rows="4" columns="4">
39813 <features rotate="0" tabularvalignment="middle">
39814 <column alignment="center" valignment="top" width="0">
39815 <column alignment="center" valignment="top" width="0">
39816 <column alignment="center" valignment="top" width="0">
39817 <column alignment="center" valignment="top" width="0">
39818 <row>
39819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39820 \begin_inset Text
39821
39822 \begin_layout Plain Layout
39823 Format du document
39824 \end_layout
39825
39826 \end_inset
39827 </cell>
39828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39829 \begin_inset Text
39830
39831 \begin_layout Plain Layout
39832
39833 \family sans
39834 Objet
39835 \begin_inset space ~
39836 \end_inset
39837
39838 Externe\SpecialChar \menuseparator
39839 Date
39840 \end_layout
39841
39842 \end_inset
39843 </cell>
39844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39845 \begin_inset Text
39846
39847 \begin_layout Plain Layout
39848
39849 \family sans
39850 Insertion\SpecialChar \menuseparator
39851 Date
39852 \end_layout
39853
39854 \end_inset
39855 </cell>
39856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
39857 \begin_inset Text
39858
39859 \begin_layout Plain Layout
39860 commande 
39861 \series bold
39862
39863 \backslash
39864 today
39865 \end_layout
39866
39867 \end_inset
39868 </cell>
39869 </row>
39870 <row>
39871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39872 \begin_inset Text
39873
39874 \begin_layout Plain Layout
39875 LyX
39876 \end_layout
39877
39878 \end_inset
39879 </cell>
39880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39881 \begin_inset Text
39882
39883 \begin_layout Plain Layout
39884 comme boîte d'insert
39885 \end_layout
39886
39887 \end_inset
39888 </cell>
39889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39890 \begin_inset Text
39891
39892 \begin_layout Plain Layout
39893 comme date
39894 \end_layout
39895
39896 \end_inset
39897 </cell>
39898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
39899 \begin_inset Text
39900
39901 \begin_layout Plain Layout
39902 comme boîte de code TeX
39903 \end_layout
39904
39905 \end_inset
39906 </cell>
39907 </row>
39908 <row>
39909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39910 \begin_inset Text
39911
39912 \begin_layout Plain Layout
39913 LaTeX
39914 \end_layout
39915
39916 \end_inset
39917 </cell>
39918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39919 \begin_inset Text
39920
39921 \begin_layout Plain Layout
39922 comme date
39923 \end_layout
39924
39925 \end_inset
39926 </cell>
39927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
39928 \begin_inset Text
39929
39930 \begin_layout Plain Layout
39931 comme date
39932 \end_layout
39933
39934 \end_inset
39935 </cell>
39936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
39937 \begin_inset Text
39938
39939 \begin_layout Plain Layout
39940 comme commande
39941 \end_layout
39942
39943 \end_inset
39944 </cell>
39945 </row>
39946 <row>
39947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
39948 \begin_inset Text
39949
39950 \begin_layout Plain Layout
39951 DVI, PDF, PS
39952 \end_layout
39953
39954 \end_inset
39955 </cell>
39956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
39957 \begin_inset Text
39958
39959 \begin_layout Plain Layout
39960 comme date
39961 \end_layout
39962
39963 \end_inset
39964 </cell>
39965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
39966 \begin_inset Text
39967
39968 \begin_layout Plain Layout
39969 comme date
39970 \end_layout
39971
39972 \end_inset
39973 </cell>
39974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
39975 \begin_inset Text
39976
39977 \begin_layout Plain Layout
39978 comme date date
39979 \end_layout
39980
39981 \end_inset
39982 </cell>
39983 </row>
39984 </lyxtabular>
39985
39986 \end_inset
39987
39988
39989 \end_layout
39990
39991 \end_inset
39992
39993
39994 \end_layout
39995
39996 \begin_layout Standard
39997 Quand vous activez l'option 
39998 \family sans
39999 Brouillon
40000 \family default
40001  de l'onglet 
40002 \family sans
40003 Fichier
40004 \family default
40005  de la fenêtre de dialogue 
40006 \family sans
40007 Objet
40008 \begin_inset space ~
40009 \end_inset
40010
40011 Externe
40012 \family default
40013 , seul le chemin vers le fichier inséré est affiché dans la sortie imprimée.
40014 \begin_inset Newline newline
40015 \end_inset
40016
40017 Les objets externes apparaissent dans LyX, soit comme une boîte comme celle-ci
40018  : 
40019 \begin_inset Graphics
40020         filename ../clipart/ExternalMaterialQt4.png
40021         scale 85
40022         scaleBeforeRotation
40023
40024 \end_inset
40025
40026  soit comme une image, selon que vous avez ou non activé l'option 
40027 \family sans
40028 Afficher
40029 \begin_inset space ~
40030 \end_inset
40031
40032 dans
40033 \begin_inset space ~
40034 \end_inset
40035
40036 LyX
40037 \family default
40038  de l'onglet 
40039 \family sans
40040 Options LaTeX et LyX
40041 \family default
40042  de la fenêtre de dialogue.
40043 \end_layout
40044
40045 \begin_layout Standard
40046 Le manuel 
40047 \family sans
40048 \emph on
40049 Personnalisation
40050 \family default
40051 \emph default
40052  explique comment vous pouvez créer vos propres modèles.
40053 \end_layout
40054
40055 \begin_layout Section
40056 Sous-documents
40057 \begin_inset CommandInset label
40058 LatexCommand label
40059 name "sec:Sous-documents"
40060
40061 \end_inset
40062
40063
40064 \begin_inset Index idx
40065 status collapsed
40066
40067 \begin_layout Plain Layout
40068 Trucs externes ! Sous-documents
40069 \end_layout
40070
40071 \end_inset
40072
40073
40074 \begin_inset Index idx
40075 status collapsed
40076
40077 \begin_layout Plain Layout
40078 Fichiers ! Insertion
40079 \end_layout
40080
40081 \end_inset
40082
40083
40084 \end_layout
40085
40086 \begin_layout Standard
40087 Les sous-documents sont utilisés quand on a un document très long qui peut
40088  être décomposé en plusieurs parties ou sections plus petites.
40089  Pour des raisons de maintenance il est souvent utile et parfois obligatoire
40090  de découper le document en plusieurs fichiers qui peuvent être relus séparément.
40091  Les différents documents sont ce que l'on appelle les sous-documents et
40092  un document maître les relie pour imprimer le document complet ou seulement
40093  une partie de celui-ci.
40094  Un sous-document hérite du contenu de son maître, par exemple le préambule
40095  LaTeX, la bibliographie, et les étiquettes pour les références croisées.
40096 \end_layout
40097
40098 \begin_layout Standard
40099 Pour pouvoir travailler sur un sous-document sans avoir à ouvrir le document
40100  maître, précisez dans le sous-document le document maître dans le menu
40101  
40102 \family sans
40103 Document\SpecialChar \menuseparator
40104 Paramètres\SpecialChar \menuseparator
40105 Classe de document
40106 \family default
40107 .
40108  Ce document maître sera par la suite utilisé de façon cachée par LyX à
40109  chaque fois que vous modifierez le sous-document.
40110 \end_layout
40111
40112 \begin_layout Standard
40113 Les documents inclus sont visualisés dans LyX sous la forme d'une boîte
40114  comme celle-ci : 
40115 \begin_inset Graphics
40116         filename clipart/ChildDocumentQt4.png
40117         lyxscale 70
40118         scale 60
40119         scaleBeforeRotation
40120
40121 \end_inset
40122
40123  Pour inclure des sous-documents dans un document maître , on utilise le
40124  menu 
40125 \family sans
40126 Insertion\SpecialChar \menuseparator
40127 Fichier\SpecialChar \menuseparator
40128 Sous-document
40129 \family default
40130 .
40131  Une fenêtre de dialogue s'ouvre pour que vous puissiez choisir entre l'une
40132  des quatre méthodes d'inclusion :
40133 \end_layout
40134
40135 \begin_layout Description
40136 Inclus
40137 \begin_inset space ~
40138 \end_inset
40139
40140 (include) Vous pouvez inclure des documents LyX et LaTeX.
40141  Quand vous cliquez sur le bouton 
40142 \family sans
40143 Modifier
40144 \family default
40145  dans la fenêtre de dialogue 
40146 \family sans
40147 Sous-document
40148 \family default
40149 , le document inclus est ouvert dans LyX dans un nouvel onglet pour que
40150  vous puissiez le modifier.
40151 \begin_inset Newline newline
40152 \end_inset
40153
40154
40155 \end_layout
40156
40157 \begin_layout Standard
40158 Voici un sous-document inséré avec la méthode 
40159 \family sans
40160 Inclus
40161 \family default
40162  : 
40163 \begin_inset CommandInset include
40164 LatexCommand include
40165 filename "DocumentBidon1.lyx"
40166
40167 \end_inset
40168
40169
40170 \end_layout
40171
40172 \begin_layout Standard
40173 La numérotation des sections va prendre en compte les sections des fichiers
40174  incorporés dans l'ordre où ils sont insérés dans le document maître.
40175  Le document qui est inclus comme exemple possède une sous-section qui sera
40176  numérotée comme sous-section de la section actuelle.
40177  Les étiquettes présentes dans le fichier inclus peuvent être référencées
40178  : la sous-section
40179 \begin_inset space ~
40180 \end_inset
40181
40182
40183 \begin_inset CommandInset ref
40184 LatexCommand ref
40185 reference "sub:Sous-section-externe-1"
40186
40187 \end_inset
40188
40189  est dans le fichier inclus.
40190 \end_layout
40191
40192 \begin_layout Standard
40193 Le préambule du sous-document est tout simplement ignoré, seul le préambule
40194  du document maître est utilisé.
40195  Les branches présentes dans le sous-document seront ignorées par le document
40196  maître si celui-ci ne possède pas une branche avec le même nom.
40197  Les documents inclus sont insérés en commençant une nouvelle page et sont
40198  suivis par un saut de page.
40199 \end_layout
40200
40201 \begin_layout Standard
40202 \begin_inset Note Greyedout
40203 status open
40204
40205 \begin_layout Plain Layout
40206
40207 \series bold
40208 Note:
40209 \series default
40210  Quand vous avez inclus un fichier LyX ou LaTeX, et que ce dernier utilise
40211  une classe de document différente de celle du document maître, vous recevez
40212  un avertissement quand vous tentez de le visionner ou de l'exporter, vu
40213  que cela peut produire des résultats inattendus sur la sortie imprimée.
40214 \end_layout
40215
40216 \end_inset
40217
40218
40219 \end_layout
40220
40221 \begin_layout Description
40222 Incorporé
40223 \begin_inset space ~
40224 \end_inset
40225
40226 (input) Cette méthode est très semblable à la méthode Inclus, les différences
40227  sont :
40228 \end_layout
40229
40230 \begin_deeper
40231 \begin_layout Itemize
40232 Les fichiers incorporés ne commencent pas une nouvelle page ni ne sont suivis
40233  par un saut de page.
40234 \end_layout
40235
40236 \begin_layout Itemize
40237 Les fichiers incorporés peuvent être prévisualisés dans LyX quand l'option
40238  
40239 \family sans
40240 Aperçu
40241 \begin_inset space ~
40242 \end_inset
40243
40244 sur
40245 \begin_inset space ~
40246 \end_inset
40247
40248 le
40249 \begin_inset space ~
40250 \end_inset
40251
40252 vif
40253 \family default
40254  est activée dans les préférences dans la rubrique 
40255 \family sans
40256 Apparence\SpecialChar \menuseparator
40257 Graphique
40258 \family default
40259 .
40260 \end_layout
40261
40262 \begin_layout Itemize
40263 Vous ne pouvez pas exclure des fichiers incorporés via le menu 
40264 \family sans
40265 Document\SpecialChar \menuseparator
40266 Paramètres\SpecialChar \menuseparator
40267 Sous-documents
40268 \family default
40269 .
40270 \end_layout
40271
40272 \end_deeper
40273 \begin_layout Standard
40274 Voici un sous document inséré en utilisant la méthode 
40275 \family sans
40276 Incorporé
40277 \family default
40278  : 
40279 \begin_inset CommandInset include
40280 LatexCommand input
40281 preview true
40282 filename "DocumentBidon2.lyx"
40283
40284 \end_inset
40285
40286
40287 \end_layout
40288
40289 \begin_layout Description
40290 Verbatim Avec cette méthodes tous les fichiers textes peuvent être inclus.
40291  Si c'est un fichier LyX ou LaTeX, le contenu sera affiché dans la sortie
40292  sous forme de code source et aucune des commandes éventuellement présentes
40293  ne sera exécutée.
40294  Vous pouvez utiliser l'option 
40295 \family sans
40296 Marquer
40297 \begin_inset space ~
40298 \end_inset
40299
40300 les
40301 \begin_inset space ~
40302 \end_inset
40303
40304 espaces
40305 \family default
40306  qui matérialise chaque espace présente dans le code source par un caractère
40307  
40308 \begin_inset Quotes eld
40309 \end_inset
40310
40311
40312 \begin_inset ERT
40313 status collapsed
40314
40315 \begin_layout Plain Layout
40316
40317
40318 \backslash
40319 textvisiblespace 
40320 \end_layout
40321
40322 \end_inset
40323
40324
40325 \begin_inset Quotes erd
40326 \end_inset
40327
40328  .
40329  La différence avec la méthode qui consiste à utiliser le menu 
40330 \family sans
40331 Insertion\SpecialChar \menuseparator
40332 Fichier\SpecialChar \menuseparator
40333 Texte
40334 \begin_inset space ~
40335 \end_inset
40336
40337 brut
40338 \family default
40339  est que le contenu du document n'apparaît pas dans LyX.
40340 \end_layout
40341
40342 \begin_layout Standard
40343 Voici un sous-document inclus en utilisant la méthode 
40344 \family sans
40345 verbatim
40346 \family default
40347  : 
40348 \begin_inset CommandInset include
40349 LatexCommand verbatiminput
40350 filename "DocumentTexteBidon.txt"
40351
40352 \end_inset
40353
40354
40355 \begin_inset VSpace bigskip
40356 \end_inset
40357
40358 Voici un autre sous-document incorporé par la méthode verbatim en utilisant
40359  l'option 
40360 \family sans
40361 Marquer
40362 \begin_inset space ~
40363 \end_inset
40364
40365 les
40366 \begin_inset space ~
40367 \end_inset
40368
40369 espaces :
40370 \family default
40371  
40372 \begin_inset CommandInset include
40373 LatexCommand verbatiminput*
40374 filename "DocumentTexteBidon.txt"
40375
40376 \end_inset
40377
40378
40379 \end_layout
40380
40381 \begin_layout Standard
40382 \begin_inset VSpace bigskip
40383 \end_inset
40384
40385
40386 \end_layout
40387
40388 \begin_layout Standard
40389 \begin_inset Note Greyedout
40390 status open
40391
40392 \begin_layout Plain Layout
40393
40394 \series bold
40395 Note:
40396 \series default
40397  Comme vous pouvez le voir avec les exemples ci-dessus, le texte des documents
40398  inclus avec la méthode verbatim n'est pas découpé à la fin des lignes.
40399 \end_layout
40400
40401 \end_inset
40402
40403
40404 \end_layout
40405
40406 \begin_layout Description
40407 Listings Ce type d'inclusion est décrit dans le chapitre
40408 \begin_inset space ~
40409 \end_inset
40410
40411
40412 \begin_inset CommandInset ref
40413 LatexCommand ref
40414 reference "cha:Program-Code-Listings"
40415
40416 \end_inset
40417
40418 .
40419 \end_layout
40420
40421 \begin_layout Standard
40422 \begin_inset Note Greyedout
40423 status open
40424
40425 \begin_layout Plain Layout
40426
40427 \series bold
40428 Note:
40429 \series default
40430  Inclure le même document deux fois dans un même document peut poser des
40431  problèmes avec LaTeX.
40432 \end_layout
40433
40434 \end_inset
40435
40436
40437 \end_layout
40438
40439 \begin_layout Standard
40440 Si vous ne voulez visualiser ou exporter que certains des sous-documents
40441  de votre document maître, que ce soit pour diminuer les temps de compilation
40442  ou parceque vous voulez distribuer des chapitres isolés d'un livre que
40443  vous êtes en train d'écrire, vous pouvez exclure des sous-documents de
40444  la sortie en utilisant le menu 
40445 \family sans
40446 Document\SpecialChar \menuseparator
40447 Paramètres\SpecialChar \menuseparator
40448 Sous-documents
40449 \family default
40450 .
40451  Vous pouvez exclure ou inclure un sous-document donné en double-cliquant
40452  sur la ligne correspondant dans la colonne 
40453 \family sans
40454 Inclus dans le résultat
40455 \family default
40456  de la liste (
40457 \begin_inset space ~
40458 \end_inset
40459
40460 notez que cela ne fonctionne que pour les documents inclus avec la méthode
40461  
40462 \begin_inset Quotes fld
40463 \end_inset
40464
40465 inclus
40466 \begin_inset Quotes frd
40467 \end_inset
40468
40469  et pas la méthode 
40470 \begin_inset Quotes fld
40471 \end_inset
40472
40473 incorporé
40474 \begin_inset Quotes frd
40475 \end_inset
40476
40477
40478 \begin_inset space ~
40479 \end_inset
40480
40481 ).
40482  Si on active l'option 
40483 \family sans
40484 Assurer la cohérence des compteurs et des références
40485 \family default
40486 , LyX va s'assurer que tous les numéros de pages, références etc...
40487  sont corrects comme si tous le document avait été traité.
40488  C'est utile si vous voulez que les sous-documents choisis aient exactement
40489  le même aspect que s'il étaient dans le document complet.
40490  Pour réaliser cette condition, il faut que LyX traite de façon silencieuse
40491  la totalité du document.
40492  Ce qui fait que si vous voulez diminuer les temps de compilation, et que
40493  les compteurs et autres références n'ont pas à être à tout prix valides,
40494  vous devez impérativement désactiver cette option.
40495  
40496 \end_layout
40497
40498 \begin_layout Standard
40499 Une autre solution consiste à inclure chaque fichier dans une branche
40500 \begin_inset Foot
40501 status collapsed
40502
40503 \begin_layout Plain Layout
40504 Les branches sont décrites dans la section 
40505 \emph on
40506 Branches
40507 \emph default
40508  du 
40509 \emph on
40510 Guide de l'utilisateur
40511 \emph default
40512  de LyX.
40513 \end_layout
40514
40515 \end_inset
40516
40517 .
40518  En activant ou désactivant une branche, vous pouvez décider les fichiers
40519  inclus qui doivent apparaître dans la sortie imprimée.
40520  Cette méthode à l'avantage qu'elle peut aussi s’appliquer aux sous documents
40521  
40522 \begin_inset Quotes fld
40523 \end_inset
40524
40525 incorporés
40526 \begin_inset Quotes frd
40527 \end_inset
40528
40529 .
40530  Le défaut est que les compteurs et autres références ne sont pas conservés
40531  avec cette approche.
40532 \end_layout
40533
40534 \begin_layout Chapter
40535 Listings de code source
40536 \begin_inset CommandInset label
40537 LatexCommand label
40538 name "cha:Program-Code-Listings"
40539
40540 \end_inset
40541
40542
40543 \begin_inset Index idx
40544 status collapsed
40545
40546 \begin_layout Plain Layout
40547 Listings
40548 \end_layout
40549
40550 \end_inset
40551
40552
40553 \begin_inset Index idx
40554 status collapsed
40555
40556 \begin_layout Plain Layout
40557 Code Source
40558 \end_layout
40559
40560 \end_inset
40561
40562
40563 \begin_inset Index idx
40564 status collapsed
40565
40566 \begin_layout Plain Layout
40567 Flottants ! Listings
40568 \end_layout
40569
40570 \end_inset
40571
40572
40573 \end_layout
40574
40575 \begin_layout Standard
40576 Pour inclure et mettre en forme un listing de code source, vous pouvez utiliser
40577  un insert 
40578 \family sans
40579 Listings
40580 \family default
40581  qui peut être créé grâce au menu 
40582 \family sans
40583 Insertion
40584 \family default
40585 \SpecialChar \menuseparator
40586
40587 \family sans
40588 Listing
40589 \begin_inset space ~
40590 \end_inset
40591
40592 de
40593 \begin_inset space ~
40594 \end_inset
40595
40596 Code
40597 \begin_inset space ~
40598 \end_inset
40599
40600 Source
40601 \family default
40602 .
40603  Le paquetage LaTeX 
40604 \series bold
40605 listings
40606 \series default
40607
40608 \begin_inset Index idx
40609 status collapsed
40610
40611 \begin_layout Plain Layout
40612 Paquetages LaTeX ! listings
40613 \end_layout
40614
40615 \end_inset
40616
40617  fournit un moyen puissant et flexible d'insérer des listings de code source
40618  dans votre document.
40619  
40620 \end_layout
40621
40622 \begin_layout Standard
40623 Quand vous cliquez avec le bouton droit sur un insert de listings, un menu
40624  contextuel s'ouvre pour vous permettre de modifier le format du listing.
40625 \end_layout
40626
40627 \begin_layout Standard
40628 Implicitement, un listing commence un nouveau paragraphe dans la sortie
40629  imprimée.
40630  L'option d'emplacement 
40631 \family sans
40632 Listing
40633 \begin_inset space ~
40634 \end_inset
40635
40636 en
40637 \begin_inset space ~
40638 \end_inset
40639
40640 Ligne
40641 \family default
40642  imprime le listing dans la ligne comme ceci : 
40643 \begin_inset listings
40644 lstparams "language={C++}"
40645 inline true
40646 status open
40647
40648 \begin_layout Plain Layout
40649
40650 int a=5;
40651 \end_layout
40652
40653 \end_inset
40654
40655
40656 \begin_inset Newline newline
40657 \end_inset
40658
40659 L'option 
40660 \family sans
40661 Flottant
40662 \family default
40663  crée un flottant de listing pour lequel vous pouvez préciser les options
40664  classiques d'emplacement : 
40665 \begin_inset Quotes eld
40666 \end_inset
40667
40668
40669 \family sans
40670 h
40671 \family default
40672
40673 \begin_inset Quotes erd
40674 \end_inset
40675
40676
40677 \begin_inset Quotes eld
40678 \end_inset
40679
40680
40681 \family sans
40682 t
40683 \family default
40684
40685 \begin_inset Quotes erd
40686 \end_inset
40687
40688
40689 \begin_inset Quotes eld
40690 \end_inset
40691
40692
40693 \family sans
40694 b
40695 \family default
40696
40697 \begin_inset Quotes erd
40698 \end_inset
40699
40700 , et 
40701 \begin_inset Quotes eld
40702 \end_inset
40703
40704
40705 \family sans
40706 p
40707 \family default
40708
40709 \begin_inset Quotes erd
40710 \end_inset
40711
40712  correspondant aux emplacement décrits dans la section
40713 \begin_inset space ~
40714 \end_inset
40715
40716
40717 \begin_inset CommandInset ref
40718 LatexCommand ref
40719 reference "sec:Placement-flottants"
40720
40721 \end_inset
40722
40723 .
40724  Les options de positionnement peuvent être mélangées et doivent être saisies
40725  sans séparation, par exemple, on peut taper 
40726 \begin_inset Quotes eld
40727 \end_inset
40728
40729
40730 \family sans
40731 htbp
40732 \family default
40733
40734 \begin_inset Quotes erd
40735 \end_inset
40736
40737 .
40738  L' option 
40739 \begin_inset Quotes eld
40740 \end_inset
40741
40742 h
40743 \begin_inset Quotes erd
40744 \end_inset
40745
40746  a parfois aucun effet, mais vous n'avez pas besoin d'utiliser l'option
40747  
40748 \family sans
40749 Flottant
40750 \family default
40751  dans ce cas, vu que les listings non flottants peuvent aussi avoir une
40752  légende et être référencés.
40753 \end_layout
40754
40755 \begin_layout Standard
40756 Vous pouvez ajouter une légende à un listing avec le menu 
40757 \family sans
40758 Insertion\SpecialChar \menuseparator
40759 Légende
40760 \family default
40761 .
40762  On peut référencer les listings de la même façon que les flottants :Voir
40763  le listing
40764 \begin_inset space ~
40765 \end_inset
40766
40767
40768 \begin_inset CommandInset ref
40769 LatexCommand ref
40770 reference "lst:Listing-exemple"
40771
40772 \end_inset
40773
40774
40775 \end_layout
40776
40777 \begin_layout Standard
40778 \begin_inset listings
40779 lstparams "language=Python"
40780 inline false
40781 status open
40782
40783 \begin_layout Plain Layout
40784
40785 \begin_inset Caption Standard
40786
40787 \begin_layout Plain Layout
40788 \begin_inset CommandInset label
40789 LatexCommand label
40790 name "lst:Listing-exemple"
40791
40792 \end_inset
40793
40794 Exemple de listing flottant
40795 \end_layout
40796
40797 \end_inset
40798
40799 # Exemple de listing flottant
40800 \end_layout
40801
40802 \begin_layout Plain Layout
40803
40804 def func(param):
40805 \end_layout
40806
40807 \begin_layout Plain Layout
40808
40809     'ceci est une fonction python'
40810 \end_layout
40811
40812 \begin_layout Plain Layout
40813
40814     pass
40815 \end_layout
40816
40817 \end_inset
40818
40819
40820 \end_layout
40821
40822 \begin_layout Standard
40823 Quand vous avez choisi un langage de programmation dans la fenêtre de dialogue
40824  de listing, les mots-clés de ce langage seront reconnus et mis en forme
40825  de manière particulière dans la sortie imprimée.
40826  Dans l'exemple de listing, le mot clé Python 
40827 \begin_inset Quotes eld
40828 \end_inset
40829
40830 def
40831 \begin_inset Quotes erd
40832 \end_inset
40833
40834  est reconnu et imprimé en caractères gras dans la sortie.
40835 \end_layout
40836
40837 \begin_layout Standard
40838 \begin_inset Note Greyedout
40839 status open
40840
40841 \begin_layout Plain Layout
40842
40843 \series bold
40844 Note:
40845 \series default
40846  Si vous n'obtenez pas des mots-clés en caractères gras quand vous utilisez
40847  une police de caractères à 
40848 \family typewriter
40849 chasse fixe
40850 \family default
40851 , c'est que votre police ne contient probablement pas de série grasse.
40852  Dans ce cas choisissez une police différente dans le menu 
40853 \family sans
40854 Document\SpecialChar \menuseparator
40855 Paramètres\SpecialChar \menuseparator
40856 Polices
40857 \family default
40858 .
40859  (Les polices 
40860 \emph on
40861 LuxiMono, BeraMono
40862 \emph default
40863  et 
40864 \emph on
40865 Courier
40866 \emph default
40867  contiennent une série grasse.)
40868 \end_layout
40869
40870 \end_inset
40871
40872
40873 \end_layout
40874
40875 \begin_layout Standard
40876 Dans la rubrique 
40877 \family sans
40878 Numérotation
40879 \begin_inset space ~
40880 \end_inset
40881
40882 des
40883 \begin_inset space ~
40884 \end_inset
40885
40886 Lignes
40887 \family default
40888  de la fenêtre de dialogue listings, vous pouvez choisir le style de numérotatio
40889 n des lignes.
40890  Vous pouvez mettre un nombre dans le champ 
40891 \family sans
40892 Pas
40893 \family default
40894  pour désigner les lignes qui seront numérotées.
40895  Par exemple, si vous mettez 
40896 \begin_inset Quotes eld
40897 \end_inset
40898
40899 3
40900 \begin_inset Quotes erd
40901 \end_inset
40902
40903 , seule une ligne sur trois sera numérotée.
40904 \end_layout
40905
40906 \begin_layout Standard
40907 En plus vous pouvez préciser un intervalle de lignes et seules ces lignes
40908  apparaîtront dans la sortie.
40909  Vous devez utiliser l'option 
40910 \family sans
40911 Table
40912 \begin_inset space ~
40913 \end_inset
40914
40915 de
40916 \begin_inset space ~
40917 \end_inset
40918
40919 Caractères
40920 \begin_inset space ~
40921 \end_inset
40922
40923 Étendue
40924 \family default
40925  quand vous employez des caractères spécifiques à une langue donnée comme
40926  les umlauts Allemands dans votre listing.
40927 \begin_inset Newline newline
40928 \end_inset
40929
40930 Voici un exemple de listing avec la numérotation des lignes à gauche par
40931  pas de 3, en langage Python, avec les options 
40932 \begin_inset Quotes eld
40933 \end_inset
40934
40935 Table
40936 \begin_inset space ~
40937 \end_inset
40938
40939 de
40940 \begin_inset space ~
40941 \end_inset
40942
40943 caractères
40944 \begin_inset space ~
40945 \end_inset
40946
40947 étendue
40948 \begin_inset Quotes erd
40949 \end_inset
40950
40951  et 
40952 \begin_inset Quotes eld
40953 \end_inset
40954
40955 Espace
40956 \begin_inset space ~
40957 \end_inset
40958
40959 représenté
40960 \begin_inset space ~
40961 \end_inset
40962
40963 par
40964 \begin_inset space ~
40965 \end_inset
40966
40967 un
40968 \begin_inset space ~
40969 \end_inset
40970
40971 symbole
40972 \begin_inset Quotes erd
40973 \end_inset
40974
40975 , l'intervalle de ligne étant 3
40976 \begin_inset space \thinspace{}
40977 \end_inset
40978
40979 -
40980 \begin_inset space \thinspace{}
40981 \end_inset
40982
40983 8:
40984 \end_layout
40985
40986 \begin_layout Standard
40987 \begin_inset listings
40988 lstparams "extendedchars=true,firstline=3,language=Python,lastline=8,numbers=left,showspaces=true,stepnumber=3"
40989 inline false
40990 status open
40991
40992 \begin_layout Plain Layout
40993
40994 def func(param):
40995 \end_layout
40996
40997 \begin_layout Plain Layout
40998
40999     'ceci est une fonction Python'
41000 \end_layout
41001
41002 \begin_layout Plain Layout
41003
41004     pass
41005 \end_layout
41006
41007 \begin_layout Plain Layout
41008
41009 def func(param):
41010 \end_layout
41011
41012 \begin_layout Plain Layout
41013
41014 'Ça, c'est un mot Allemand : Tschüß'
41015 \end_layout
41016
41017 \begin_layout Plain Layout
41018
41019 pass
41020 \end_layout
41021
41022 \begin_layout Plain Layout
41023
41024 def func(param):
41025 \end_layout
41026
41027 \begin_layout Plain Layout
41028
41029 'ceci est une fonction Python'
41030 \end_layout
41031
41032 \begin_layout Plain Layout
41033
41034 pass
41035 \end_layout
41036
41037 \end_inset
41038
41039
41040 \end_layout
41041
41042 \begin_layout Standard
41043 Si vous avez des tabulations dans votre listing, vous pouvez préciser le
41044  nombre de caractères que doit représenter une tabulation dans le champ
41045  
41046 \family sans
41047 Taille du tabulateur
41048 \family default
41049 .
41050 \end_layout
41051
41052 \begin_layout Standard
41053 \begin_inset Note Greyedout
41054 status open
41055
41056 \begin_layout Plain Layout
41057
41058 \series bold
41059 Note:
41060 \series default
41061  À cause d'un bug dans le paquetage 
41062 \series bold
41063 listings
41064 \series default
41065  la numérotation des lignes se trouve décalée d'une ligne à chaque nouveau
41066  listing.
41067  C'est la raison pour laquelle les lignes 2 et 5 sont numérotées et pas
41068  les lignes 3 et 6.
41069 \end_layout
41070
41071 \end_inset
41072
41073
41074 \end_layout
41075
41076 \begin_layout Standard
41077 \begin_inset VSpace bigskip
41078 \end_inset
41079
41080
41081 \end_layout
41082
41083 \begin_layout Standard
41084 Il est aussi possible d'imprimer les lignes d'un fichier sous la forme d'un
41085  listing.
41086  Pour le faire, il suffit d'utiliser le menu 
41087 \family sans
41088 Insertion\SpecialChar \menuseparator
41089 Fichier\SpecialChar \menuseparator
41090 Sous-document
41091 \family default
41092  et de choisir le type 
41093 \family sans
41094 Listing
41095 \family default
41096
41097 \begin_inset space ~
41098 \end_inset
41099
41100
41101 \family sans
41102 de
41103 \begin_inset space ~
41104 \end_inset
41105
41106 Code
41107 \begin_inset space ~
41108 \end_inset
41109
41110 source
41111 \family default
41112 .
41113 \begin_inset Foot
41114 status collapsed
41115
41116 \begin_layout Plain Layout
41117 Les autres types de sous-documents sont décrits dans la section
41118 \begin_inset space ~
41119 \end_inset
41120
41121
41122 \begin_inset CommandInset ref
41123 LatexCommand ref
41124 reference "sec:Sous-documents"
41125
41126 \end_inset
41127
41128 .
41129 \end_layout
41130
41131 \end_inset
41132
41133  Dans la fenêtre de dialogue du sous-document vous pouvez donner les paramètres
41134  à utiliser pour le listing dans une zone de texte.
41135  Pour avoir une liste des paramètres disponibles, tapez un point d'interrogation
41136  
41137 \begin_inset Quotes eld
41138 \end_inset
41139
41140 ?
41141 \begin_inset Quotes erd
41142 \end_inset
41143
41144  dans la zone de texte.
41145 \end_layout
41146
41147 \begin_layout Standard
41148 Pour faire référence à un sous-document de type listing, tapez une étiquette
41149  dans le champ correspondant de la fenêtre de dialogue.
41150  On peut alors faire référence à cette étiquette en utilisant le menu 
41151 \family sans
41152 Insertion\SpecialChar \menuseparator
41153 Référence
41154 \begin_inset space ~
41155 \end_inset
41156
41157 Croisée
41158 \family default
41159 .
41160 \end_layout
41161
41162 \begin_layout Standard
41163 Le listing
41164 \begin_inset space ~
41165 \end_inset
41166
41167
41168 \begin_inset CommandInset ref
41169 LatexCommand ref
41170 reference "lst:listing-fichier"
41171
41172 \end_inset
41173
41174  est une exemple de listing issu d'un fichier ; ici les lignes 10
41175 \begin_inset space \thinspace{}
41176 \end_inset
41177
41178 -
41179 \begin_inset space \thinspace{}
41180 \end_inset
41181
41182 15 de ce fichier LyX sont listées.
41183 \end_layout
41184
41185 \begin_layout Standard
41186 \begin_inset CommandInset include
41187 LatexCommand lstinputlisting
41188 filename "EmbeddedObjects.lyx"
41189 lstparams "breaklines=true,caption={Lignes 10 - 15 de ce fichier LyX},extendedchars=true,firstline=10,label={lst:listing-fichier},language={[LaTeX]TeX},lastline=15"
41190
41191 \end_inset
41192
41193
41194 \end_layout
41195
41196 \begin_layout Standard
41197 \begin_inset VSpace bigskip
41198 \end_inset
41199
41200
41201 \end_layout
41202
41203 \begin_layout Standard
41204 L'insertion d'une formule dans un listing peut se faire de la façon suivante
41205 \begin_inset space ~
41206 \end_inset
41207
41208 :
41209 \end_layout
41210
41211 \begin_layout Enumerate
41212 Ouvrez la fenêtre de dialogue listings et ajoutez
41213 \begin_inset Newline newline
41214 \end_inset
41215
41216
41217 \family sans
41218 mathescape=true
41219 \family default
41220
41221 \begin_inset Newline newline
41222 \end_inset
41223
41224 dans le champ de l'onglet 
41225 \family sans
41226 Avancé
41227 \family default
41228 .
41229 \end_layout
41230
41231 \begin_layout Enumerate
41232 Créez la formule en dehors du listing.
41233 \end_layout
41234
41235 \begin_layout Enumerate
41236 Copiez le contenu de la formule (pas l'insert de formule) vers le presse-papier
41237  (raccourci 
41238 \begin_inset Info
41239 type  "shortcut"
41240 arg   "copy"
41241 \end_inset
41242
41243 )
41244 \end_layout
41245
41246 \begin_layout Enumerate
41247 Dans le listing écrivez 
41248 \begin_inset Quotes eld
41249 \end_inset
41250
41251
41252 \family sans
41253 $$
41254 \family default
41255
41256 \begin_inset Quotes erd
41257 \end_inset
41258
41259  et copiez le contenu du presse-papier entre les deux signes dollar (raccourci
41260  
41261 \begin_inset Info
41262 type  "shortcut"
41263 arg   "paste"
41264 \end_inset
41265
41266 )
41267 \end_layout
41268
41269 \begin_layout Standard
41270 \begin_inset listings
41271 lstparams "language=Python,mathescape=true"
41272 inline false
41273 status open
41274
41275 \begin_layout Plain Layout
41276
41277 \begin_inset Caption Standard
41278
41279 \begin_layout Plain Layout
41280 Exemple de listing flottant contenant une formule
41281 \end_layout
41282
41283 \end_inset
41284
41285 # Exemple de listing flottant
41286 \end_layout
41287
41288 \begin_layout Plain Layout
41289
41290 def func(param):
41291 \end_layout
41292
41293 \begin_layout Plain Layout
41294
41295     # $
41296 \backslash
41297 prod_{n=1}^{
41298 \backslash
41299 infty}
41300 \backslash
41301 ,
41302 \backslash
41303 frac{1}{x^{2}}$
41304 \end_layout
41305
41306 \begin_layout Plain Layout
41307
41308     pass
41309 \end_layout
41310
41311 \end_inset
41312
41313
41314 \end_layout
41315
41316 \begin_layout Standard
41317 \begin_inset VSpace bigskip
41318 \end_inset
41319
41320
41321 \end_layout
41322
41323 \begin_layout Standard
41324 Les paramètres globaux pour les listings peuvent être modifiés avec la fenêtre
41325  de dialogue 
41326 \family sans
41327 Document\SpecialChar \menuseparator
41328 Paramètres\SpecialChar \menuseparator
41329 Listings
41330 \family default
41331 .
41332  Pour avoir la liste des options disponibles, tapez un point d'interrogation
41333  
41334 \begin_inset Quotes eld
41335 \end_inset
41336
41337 ?
41338 \begin_inset Quotes erd
41339 \end_inset
41340
41341  dans le champ.
41342 \end_layout
41343
41344 \begin_layout Standard
41345 Pour plus d'information sur le paquetage 
41346 \series bold
41347 listings
41348 \series default
41349 , nous vous renvoyons à sa documentation 
41350 \begin_inset CommandInset citation
41351 LatexCommand cite
41352 key "listings"
41353
41354 \end_inset
41355
41356 .
41357 \end_layout
41358
41359 \begin_layout Standard
41360 \begin_inset Newpage newpage
41361 \end_inset
41362
41363
41364 \end_layout
41365
41366 \begin_layout Chapter
41367 \start_of_appendix
41368 Unités de longueur utilisables avec LyX
41369 \begin_inset Argument 1
41370 status collapsed
41371
41372 \begin_layout Plain Layout
41373 Unités de longueur
41374 \end_layout
41375
41376 \end_inset
41377
41378
41379 \begin_inset Index idx
41380 status collapsed
41381
41382 \begin_layout Plain Layout
41383 Unités
41384 \end_layout
41385
41386 \end_inset
41387
41388
41389 \begin_inset CommandInset label
41390 LatexCommand label
41391 name "cha:Unités-de-longueur"
41392
41393 \end_inset
41394
41395
41396 \end_layout
41397
41398 \begin_layout Standard
41399 Pour comprendre les unités de longueur utilisées dans cette documentation,
41400  le tableau
41401 \begin_inset space ~
41402 \end_inset
41403
41404
41405 \begin_inset CommandInset ref
41406 LatexCommand ref
41407 reference "tab:Unités"
41408
41409 \end_inset
41410
41411 décrit les unités utilisées par LyX.
41412 \begin_inset Float table
41413 placement h
41414 wide false
41415 sideways false
41416 status open
41417
41418 \begin_layout Plain Layout
41419 \begin_inset Caption Standard
41420
41421 \begin_layout Plain Layout
41422 \begin_inset CommandInset label
41423 LatexCommand label
41424 name "tab:Unités"
41425
41426 \end_inset
41427
41428 Unités de longueur
41429 \end_layout
41430
41431 \end_inset
41432
41433
41434 \end_layout
41435
41436 \begin_layout Plain Layout
41437 \begin_inset VSpace medskip
41438 \end_inset
41439
41440
41441 \end_layout
41442
41443 \begin_layout Plain Layout
41444 \align center
41445 \begin_inset Tabular
41446 <lyxtabular version="3" rows="20" columns="2">
41447 <features rotate="0" tabularvalignment="middle">
41448 <column alignment="center" valignment="top" width="0">
41449 <column alignment="center" valignment="top" width="0">
41450 <row>
41451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
41452 \begin_inset Text
41453
41454 \begin_layout Plain Layout
41455 unité
41456 \end_layout
41457
41458 \end_inset
41459 </cell>
41460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
41461 \begin_inset Text
41462
41463 \begin_layout Plain Layout
41464 nom/description
41465 \end_layout
41466
41467 \end_inset
41468 </cell>
41469 </row>
41470 <row>
41471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41472 \begin_inset Text
41473
41474 \begin_layout Plain Layout
41475 mm
41476 \end_layout
41477
41478 \end_inset
41479 </cell>
41480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41481 \begin_inset Text
41482
41483 \begin_layout Plain Layout
41484 millimètre
41485 \end_layout
41486
41487 \end_inset
41488 </cell>
41489 </row>
41490 <row>
41491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41492 \begin_inset Text
41493
41494 \begin_layout Plain Layout
41495 cm
41496 \end_layout
41497
41498 \end_inset
41499 </cell>
41500 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41501 \begin_inset Text
41502
41503 \begin_layout Plain Layout
41504 centimètre
41505 \end_layout
41506
41507 \end_inset
41508 </cell>
41509 </row>
41510 <row>
41511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41512 \begin_inset Text
41513
41514 \begin_layout Plain Layout
41515 in
41516 \end_layout
41517
41518 \end_inset
41519 </cell>
41520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41521 \begin_inset Text
41522
41523 \begin_layout Plain Layout
41524 pouce (inch)
41525 \end_layout
41526
41527 \end_inset
41528 </cell>
41529 </row>
41530 <row>
41531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41532 \begin_inset Text
41533
41534 \begin_layout Plain Layout
41535 pt
41536 \end_layout
41537
41538 \end_inset
41539 </cell>
41540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41541 \begin_inset Text
41542
41543 \begin_layout Plain Layout
41544 point (72.27
41545 \begin_inset space \thinspace{}
41546 \end_inset
41547
41548 pt = 1
41549 \begin_inset space \thinspace{}
41550 \end_inset
41551
41552 in)
41553 \end_layout
41554
41555 \end_inset
41556 </cell>
41557 </row>
41558 <row>
41559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41560 \begin_inset Text
41561
41562 \begin_layout Plain Layout
41563 pc
41564 \end_layout
41565
41566 \end_inset
41567 </cell>
41568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41569 \begin_inset Text
41570
41571 \begin_layout Plain Layout
41572 pica (1
41573 \begin_inset space \thinspace{}
41574 \end_inset
41575
41576 pc = 12
41577 \begin_inset space \thinspace{}
41578 \end_inset
41579
41580 pt)
41581 \end_layout
41582
41583 \end_inset
41584 </cell>
41585 </row>
41586 <row>
41587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41588 \begin_inset Text
41589
41590 \begin_layout Plain Layout
41591 sp
41592 \end_layout
41593
41594 \end_inset
41595 </cell>
41596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41597 \begin_inset Text
41598
41599 \begin_layout Plain Layout
41600 scaled point (65536
41601 \begin_inset space \thinspace{}
41602 \end_inset
41603
41604 sp = 1
41605 \begin_inset space \thinspace{}
41606 \end_inset
41607
41608 pt)
41609 \end_layout
41610
41611 \end_inset
41612 </cell>
41613 </row>
41614 <row>
41615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41616 \begin_inset Text
41617
41618 \begin_layout Plain Layout
41619 bp
41620 \end_layout
41621
41622 \end_inset
41623 </cell>
41624 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41625 \begin_inset Text
41626
41627 \begin_layout Plain Layout
41628 gros point (72
41629 \begin_inset space \thinspace{}
41630 \end_inset
41631
41632 bp = 1
41633 \begin_inset space \thinspace{}
41634 \end_inset
41635
41636 in)
41637 \end_layout
41638
41639 \end_inset
41640 </cell>
41641 </row>
41642 <row>
41643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41644 \begin_inset Text
41645
41646 \begin_layout Plain Layout
41647 dd
41648 \end_layout
41649
41650 \end_inset
41651 </cell>
41652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41653 \begin_inset Text
41654
41655 \begin_layout Plain Layout
41656 didot (72
41657 \begin_inset space \thinspace{}
41658 \end_inset
41659
41660 dd 
41661 \begin_inset Formula $\approx$
41662 \end_inset
41663
41664  37.6
41665 \begin_inset space \thinspace{}
41666 \end_inset
41667
41668 mm)
41669 \end_layout
41670
41671 \end_inset
41672 </cell>
41673 </row>
41674 <row>
41675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41676 \begin_inset Text
41677
41678 \begin_layout Plain Layout
41679 cc
41680 \end_layout
41681
41682 \end_inset
41683 </cell>
41684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41685 \begin_inset Text
41686
41687 \begin_layout Plain Layout
41688 cicero (1
41689 \begin_inset space \thinspace{}
41690 \end_inset
41691
41692 cc = 12
41693 \begin_inset space \thinspace{}
41694 \end_inset
41695
41696 dd)
41697 \end_layout
41698
41699 \end_inset
41700 </cell>
41701 </row>
41702 <row>
41703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41704 \begin_inset Text
41705
41706 \begin_layout Plain Layout
41707 Scale%
41708 \end_layout
41709
41710 \end_inset
41711 </cell>
41712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41713 \begin_inset Text
41714
41715 \begin_layout Plain Layout
41716 % de la largeur originale de l'image
41717 \end_layout
41718
41719 \end_inset
41720 </cell>
41721 </row>
41722 <row>
41723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41724 \begin_inset Text
41725
41726 \begin_layout Plain Layout
41727 text%
41728 \end_layout
41729
41730 \end_inset
41731 </cell>
41732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41733 \begin_inset Text
41734
41735 \begin_layout Plain Layout
41736 % de la largeur du texte
41737 \end_layout
41738
41739 \end_inset
41740 </cell>
41741 </row>
41742 <row>
41743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41744 \begin_inset Text
41745
41746 \begin_layout Plain Layout
41747 col%
41748 \end_layout
41749
41750 \end_inset
41751 </cell>
41752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41753 \begin_inset Text
41754
41755 \begin_layout Plain Layout
41756 % de la largeur de la colonne
41757 \end_layout
41758
41759 \end_inset
41760 </cell>
41761 </row>
41762 <row>
41763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41764 \begin_inset Text
41765
41766 \begin_layout Plain Layout
41767 page%
41768 \end_layout
41769
41770 \end_inset
41771 </cell>
41772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41773 \begin_inset Text
41774
41775 \begin_layout Plain Layout
41776 % de la largeur du papier
41777 \end_layout
41778
41779 \end_inset
41780 </cell>
41781 </row>
41782 <row>
41783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41784 \begin_inset Text
41785
41786 \begin_layout Plain Layout
41787 line%
41788 \end_layout
41789
41790 \end_inset
41791 </cell>
41792 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41793 \begin_inset Text
41794
41795 \begin_layout Plain Layout
41796 % de la largeur de la ligne
41797 \end_layout
41798
41799 \end_inset
41800 </cell>
41801 </row>
41802 <row>
41803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41804 \begin_inset Text
41805
41806 \begin_layout Plain Layout
41807 theight%
41808 \end_layout
41809
41810 \end_inset
41811 </cell>
41812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41813 \begin_inset Text
41814
41815 \begin_layout Plain Layout
41816 % la hauteur du texte
41817 \end_layout
41818
41819 \end_inset
41820 </cell>
41821 </row>
41822 <row>
41823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41824 \begin_inset Text
41825
41826 \begin_layout Plain Layout
41827 pheight%
41828 \end_layout
41829
41830 \end_inset
41831 </cell>
41832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41833 \begin_inset Text
41834
41835 \begin_layout Plain Layout
41836 % hauteur du papier
41837 \end_layout
41838
41839 \end_inset
41840 </cell>
41841 </row>
41842 <row>
41843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41844 \begin_inset Text
41845
41846 \begin_layout Plain Layout
41847 ex
41848 \end_layout
41849
41850 \end_inset
41851 </cell>
41852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41853 \begin_inset Text
41854
41855 \begin_layout Plain Layout
41856 hauteur de la lettre 
41857 \emph on
41858 x
41859 \emph default
41860  dans la police courante
41861 \end_layout
41862
41863 \end_inset
41864 </cell>
41865 </row>
41866 <row>
41867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
41868 \begin_inset Text
41869
41870 \begin_layout Plain Layout
41871 em
41872 \end_layout
41873
41874 \end_inset
41875 </cell>
41876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
41877 \begin_inset Text
41878
41879 \begin_layout Plain Layout
41880 largeur de la lettre
41881 \emph on
41882  M
41883 \emph default
41884  dans la police courante
41885 \end_layout
41886
41887 \end_inset
41888 </cell>
41889 </row>
41890 <row>
41891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
41892 \begin_inset Text
41893
41894 \begin_layout Plain Layout
41895 mu
41896 \end_layout
41897
41898 \end_inset
41899 </cell>
41900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
41901 \begin_inset Text
41902
41903 \begin_layout Plain Layout
41904 unité mathématique (1
41905 \begin_inset space \thinspace{}
41906 \end_inset
41907
41908 mu = 1/18
41909 \begin_inset space \thinspace{}
41910 \end_inset
41911
41912 em)
41913 \end_layout
41914
41915 \end_inset
41916 </cell>
41917 </row>
41918 </lyxtabular>
41919
41920 \end_inset
41921
41922
41923 \end_layout
41924
41925 \end_inset
41926
41927
41928 \end_layout
41929
41930 \begin_layout Chapter
41931 Formats des fichiers de sortie graphiques
41932 \begin_inset CommandInset label
41933 LatexCommand label
41934 name "cha:Formats-fichiers-graphiques"
41935
41936 \end_inset
41937
41938
41939 \end_layout
41940
41941 \begin_layout Section
41942 DVI
41943 \begin_inset Index idx
41944 status collapsed
41945
41946 \begin_layout Plain Layout
41947 Formats de Fichiers! DVI
41948 \end_layout
41949
41950 \end_inset
41951
41952
41953 \begin_inset Index idx
41954 status collapsed
41955
41956 \begin_layout Plain Layout
41957 DVI|see
41958 \begin_inset ERT
41959 status collapsed
41960
41961 \begin_layout Plain Layout
41962
41963 {
41964 \end_layout
41965
41966 \end_inset
41967
41968 Formats de Fichiers
41969 \begin_inset ERT
41970 status collapsed
41971
41972 \begin_layout Plain Layout
41973
41974 }
41975 \end_layout
41976
41977 \end_inset
41978
41979
41980 \end_layout
41981
41982 \end_inset
41983
41984
41985 \end_layout
41986
41987 \begin_layout Standard
41988 Ce type de fichiers a l'extension 
41989 \begin_inset Quotes fld
41990 \end_inset
41991
41992
41993 \family typewriter
41994 .dvi
41995 \family default
41996
41997 \begin_inset Quotes frd
41998 \end_inset
41999
42000 .
42001  Il est appelé 
42002 \emph on
42003 indépendant de l'appareil
42004 \emph default
42005  ou 
42006 \begin_inset Quotes fld
42007 \end_inset
42008
42009 device independent (DVI)
42010 \begin_inset Quotes frd
42011 \end_inset
42012
42013 , car il est complètement portable ; vous pouvez les recopier d'une machine
42014  à l'autre sans avoir à faire de conversion.
42015  À l'époque où ce format a été développé, c'était loin d'être évident.
42016  Les fichiers DVI sont utilisés pour un visionnement rapide et comme une
42017  étape préliminaire avant la conversion vers un autre format comme le PostScript.
42018 \end_layout
42019
42020 \begin_layout Standard
42021 \begin_inset Note Greyedout
42022 status open
42023
42024 \begin_layout Plain Layout
42025
42026 \series bold
42027 Note:
42028 \series default
42029  Les fichiers DVI ne contiennent pas d'images, elles sont seulement liées
42030  au fichier.
42031  
42032 \end_layout
42033
42034 \end_inset
42035
42036  N'oubliez donc pas de fournir vos images en même temps que vos fichiers
42037  
42038 \family typewriter
42039 .dvi
42040 \family default
42041 .
42042  Cette caractéristique peut aussi ralentir votre ordinateur quand vous visualise
42043 z le DVI puisque la visionneuse doit convertir les images en tâche de fond
42044  pour les rendre visibles quand vous faites défiler votre document.
42045  C'est pourquoi nous recommandons d'utiliser des fichiers PDF pour les documents
42046  avec de nombreuses images.
42047 \end_layout
42048
42049 \begin_layout Standard
42050 Vous pouvez exporter votre document comme un fichier DVI en utilisant le
42051  menu 
42052 \family sans
42053 Fichier\SpecialChar \menuseparator
42054 Exporter\SpecialChar \menuseparator
42055 DVI.
42056
42057 \family default
42058  Vous pouvez visionner votre document sous forme de DVI grâce au menu 
42059 \family sans
42060 Visualiser
42061 \family default
42062 .
42063 \end_layout
42064
42065 \begin_layout Section
42066 PostScript
42067 \begin_inset CommandInset label
42068 LatexCommand label
42069 name "sec:PostScript"
42070
42071 \end_inset
42072
42073
42074 \begin_inset Index idx
42075 status collapsed
42076
42077 \begin_layout Plain Layout
42078 Formats de Fichiers ! PostScript
42079 \end_layout
42080
42081 \end_inset
42082
42083
42084 \begin_inset Index idx
42085 status collapsed
42086
42087 \begin_layout Plain Layout
42088 PostScript|see
42089 \begin_inset ERT
42090 status collapsed
42091
42092 \begin_layout Plain Layout
42093
42094 {
42095 \end_layout
42096
42097 \end_inset
42098
42099 Formats de Fichiers
42100 \begin_inset ERT
42101 status collapsed
42102
42103 \begin_layout Plain Layout
42104
42105 }
42106 \end_layout
42107
42108 \end_inset
42109
42110
42111 \end_layout
42112
42113 \end_inset
42114
42115
42116 \end_layout
42117
42118 \begin_layout Standard
42119 Ce type de fichiers a l'extension 
42120 \begin_inset Quotes fld
42121 \end_inset
42122
42123
42124 \family typewriter
42125 .ps
42126 \family default
42127
42128 \begin_inset Quotes frd
42129 \end_inset
42130
42131 .
42132  PostScript a été développé par la société 
42133 \series bold
42134 Adobe
42135 \series default
42136  comme un langage pour les imprimantes.
42137  De ce fait le fichier contient toutes les commandes utilisées par l'imprimante
42138  pour imprimer le document.
42139  PostScript peut être considéré comme un 
42140 \begin_inset Quotes fld
42141 \end_inset
42142
42143 langage de programmation
42144 \begin_inset Quotes frd
42145 \end_inset
42146
42147  ; vous pouvez en effet faire des calculs  ou tracer des diagrammes ou des
42148  images
42149 \begin_inset Foot
42150 status collapsed
42151
42152 \begin_layout Plain Layout
42153 Si vous souhaitez en apprendre plus à ce sujet, jetez un coup d'œil au paquetage
42154  LaTeX 
42155 \series bold
42156 pstricks
42157 \series default
42158
42159 \begin_inset CommandInset citation
42160 LatexCommand cite
42161 key "pstricks"
42162
42163 \end_inset
42164
42165 .
42166 \end_layout
42167
42168 \end_inset
42169
42170 .
42171  En partie à cause de toutes ces possibilités un fichier PostScript est
42172  souvent plus gros qu'un PDF.
42173 \end_layout
42174
42175 \begin_layout Standard
42176 En partie à cause de toutes ces possibilités un fichier PostScript est souvent
42177  plus gros qu'un PDF.
42178 \end_layout
42179
42180 \begin_layout Standard
42181 PostScript ne peut contenir que des images au format 
42182 \begin_inset Quotes fld
42183 \end_inset
42184
42185 PostScript Encapsulé
42186 \begin_inset Quotes frd
42187 \end_inset
42188
42189  (encapsulated PostScript ou EPS, d'extension 
42190 \family typewriter
42191 .eps
42192 \family default
42193 ).
42194  Comme LyX vous permet n'importe quel format d'image connu dans votre document,
42195  il doit les convertir en interne en EPS.
42196  Si vous avez par exemple 50 images dans votre document, LyX doit faire
42197  50 conversions à chaque fois que vous visualisez ou que vous exportez votre
42198  document.
42199  Cela risque de ralentir de façon importante votre rythme de travail.
42200  En conclusion, si vous prévoyez d'utiliser PostScript, vous pouvez insérer
42201  vos images directement en EPS pour éviter ce problème.
42202 \end_layout
42203
42204 \begin_layout Standard
42205 Vous pouvez exporter votre document comme un fichier PostScript en utilisant
42206  le menu 
42207 \family sans
42208 Fichier\SpecialChar \menuseparator
42209 Exporter\SpecialChar \menuseparator
42210 PostScript.
42211
42212 \family default
42213  Vous pouvez visionner votre document sous forme PostScript grâce au menu
42214  
42215 \family sans
42216 Visualiser
42217 \family default
42218 .
42219 \end_layout
42220
42221 \begin_layout Section
42222 PDF
42223 \begin_inset Index idx
42224 status collapsed
42225
42226 \begin_layout Plain Layout
42227 Formats de Fichiers ! PDF
42228 \end_layout
42229
42230 \end_inset
42231
42232
42233 \begin_inset Index idx
42234 status collapsed
42235
42236 \begin_layout Plain Layout
42237 PDF
42238 \end_layout
42239
42240 \end_inset
42241
42242
42243 \end_layout
42244
42245 \begin_layout Standard
42246 Ce type de fichiers a l'extension 
42247 \begin_inset Quotes fld
42248 \end_inset
42249
42250
42251 \family typewriter
42252 .pdf
42253 \family default
42254
42255 \begin_inset Quotes frd
42256 \end_inset
42257
42258 .
42259  Ce 
42260 \begin_inset Quotes fld
42261 \end_inset
42262
42263 format de document portable
42264 \begin_inset Quotes frd
42265 \end_inset
42266
42267  (portable document format ou PDF) est développé par 
42268 \family typewriter
42269 Adobe
42270 \family default
42271  comme une évolution de PostScript.
42272  Il est plus comprimé et utilise moins de commandes que PostScript.
42273  Comme son nom l'indique, il est 
42274 \begin_inset Quotes fld
42275 \end_inset
42276
42277 portable
42278 \begin_inset Quotes frd
42279 \end_inset
42280
42281  et peut donc être traité par n'importe quel ordinateur et la sortie imprimée
42282  aura exactement le même aspect.
42283 \end_layout
42284
42285 \begin_layout Standard
42286 PDF peut contenir des images dans son propre format PDF et dans les formats
42287  JPG (format du 
42288 \begin_inset Quotes fld
42289 \end_inset
42290
42291 Joint Photographic Expert Group
42292 \begin_inset Quotes frd
42293 \end_inset
42294
42295  avec comme extension 
42296 \family typewriter
42297 .jpg
42298 \family default
42299  ou 
42300 \family typewriter
42301 .jpeg
42302 \family default
42303 ) et PNG (
42304 \begin_inset Quotes fld
42305 \end_inset
42306
42307 Portable Network Graphics
42308 \begin_inset Quotes frd
42309 \end_inset
42310
42311  avec l'extension 
42312 \family typewriter
42313 .png
42314 \family default
42315 ).
42316  Vous pouvez quand même utiliser d'autres formats puisque LyX les convertit
42317  dans un de ces formats.
42318  Mais comme il est dit dans la section sur PostScript, les conversions d'images
42319  vont ralentir votre travail.
42320  Nous recommandons donc l'utilisation de l'un des trois formats cités.
42321 \end_layout
42322
42323 \begin_layout Standard
42324 Vous pouvez exporter votre document comme un fichier PDF en utilisant le
42325  menu 
42326 \family sans
42327 Fichier\SpecialChar \menuseparator
42328 Exporter 
42329 \family default
42330 de trois façons différentes:
42331 \end_layout
42332
42333 \begin_layout Description
42334 PDF
42335 \begin_inset space ~
42336 \end_inset
42337
42338 (ps2pdf) Ceci utilise le programme 
42339 \family typewriter
42340 ps2pdf
42341 \family default
42342  qui créé un PDF à partir de la version PostScript de votre fichier.
42343  Cette dernière est produite par le programme 
42344 \family typewriter
42345 dvips
42346 \family default
42347  qui utilise une version DVI comme étape intermédiaire.
42348  Cette variante consiste donc en trois conversions.
42349 \end_layout
42350
42351 \begin_layout Description
42352 PDF
42353 \begin_inset space ~
42354 \end_inset
42355
42356 (dvipdfm) Ceci utilise le programme 
42357 \family typewriter
42358 dvipdfm
42359 \family default
42360  qui convertit votre fichier en DVI avant de le convertir en PDF.
42361 \end_layout
42362
42363 \begin_layout Description
42364 PDF
42365 \begin_inset space ~
42366 \end_inset
42367
42368 (pdflatex) Ceci utilise le programme 
42369 \family typewriter
42370 pdftex
42371 \family default
42372  qui convertit directement votre fichier en PDF.
42373 \end_layout
42374
42375 \begin_layout Standard
42376 Nous recommandons d'utiliser l'option 
42377 \family sans
42378 PDF
42379 \begin_inset space ~
42380 \end_inset
42381
42382 (pdflatex)
42383 \family default
42384  car 
42385 \family typewriter
42386 pdftex
42387 \family default
42388  accepte toutes les fonctionnalités des versions actuelles de PDF.
42389  Il est en plus rapide et stable.
42390  Le programme 
42391 \family typewriter
42392 dvipdfm
42393 \family default
42394  n'est plus développé est est donc un peu dépassé.
42395 \end_layout
42396
42397 \begin_layout Standard
42398 Vous pouvez visionner votre document sous forme PDF grâce au menu 
42399 \family sans
42400 Visualiser
42401 \family default
42402  ou en utilisant un bouton de la barre d'outils.
42403 \end_layout
42404
42405 \begin_layout Chapter
42406 Liste de noms de couleur pour dvips
42407 \begin_inset CommandInset label
42408 LatexCommand label
42409 name "chap:Liste-de-noms-de-couleur-dvips"
42410
42411 \end_inset
42412
42413
42414 \end_layout
42415
42416 \begin_layout Standard
42417 \begin_inset Tabular
42418 <lyxtabular version="3" rows="17" columns="4">
42419 <features rotate="0" tabularvalignment="middle">
42420 <column alignment="left" valignment="top" width="0pt">
42421 <column alignment="left" valignment="top" width="0pt">
42422 <column alignment="left" valignment="top" width="0pt">
42423 <column alignment="left" valignment="top" width="0pt">
42424 <row>
42425 <cell alignment="left" valignment="top" usebox="none">
42426 \begin_inset Text
42427
42428 \begin_layout Plain Layout
42429 \begin_inset ERT
42430 status collapsed
42431
42432 \begin_layout Plain Layout
42433
42434
42435 \backslash
42436 fcolorbox{black}{
42437 \end_layout
42438
42439 \end_inset
42440
42441 white
42442 \begin_inset ERT
42443 status collapsed
42444
42445 \begin_layout Plain Layout
42446
42447 }{
42448 \end_layout
42449
42450 \end_inset
42451
42452 Couleur
42453 \begin_inset ERT
42454 status collapsed
42455
42456 \begin_layout Plain Layout
42457
42458 }
42459 \end_layout
42460
42461 \end_inset
42462
42463  Nom
42464 \end_layout
42465
42466 \end_inset
42467 </cell>
42468 <cell alignment="left" valignment="top" usebox="none">
42469 \begin_inset Text
42470
42471 \begin_layout Plain Layout
42472 \begin_inset ERT
42473 status collapsed
42474
42475 \begin_layout Plain Layout
42476
42477
42478 \backslash
42479 fcolorbox{black}{
42480 \end_layout
42481
42482 \end_inset
42483
42484 white
42485 \begin_inset ERT
42486 status collapsed
42487
42488 \begin_layout Plain Layout
42489
42490 }{
42491 \end_layout
42492
42493 \end_inset
42494
42495 Couleur
42496 \begin_inset ERT
42497 status collapsed
42498
42499 \begin_layout Plain Layout
42500
42501 }
42502 \end_layout
42503
42504 \end_inset
42505
42506  Nom
42507 \end_layout
42508
42509 \end_inset
42510 </cell>
42511 <cell alignment="left" valignment="top" usebox="none">
42512 \begin_inset Text
42513
42514 \begin_layout Plain Layout
42515 \begin_inset ERT
42516 status collapsed
42517
42518 \begin_layout Plain Layout
42519
42520
42521 \backslash
42522 fcolorbox{black}{
42523 \end_layout
42524
42525 \end_inset
42526
42527 white
42528 \begin_inset ERT
42529 status collapsed
42530
42531 \begin_layout Plain Layout
42532
42533 }{
42534 \end_layout
42535
42536 \end_inset
42537
42538 Couleur
42539 \begin_inset ERT
42540 status collapsed
42541
42542 \begin_layout Plain Layout
42543
42544 }
42545 \end_layout
42546
42547 \end_inset
42548
42549  Nom
42550 \end_layout
42551
42552 \end_inset
42553 </cell>
42554 <cell alignment="left" valignment="top" usebox="none">
42555 \begin_inset Text
42556
42557 \begin_layout Plain Layout
42558 \begin_inset ERT
42559 status collapsed
42560
42561 \begin_layout Plain Layout
42562
42563
42564 \backslash
42565 fcolorbox{black}{
42566 \end_layout
42567
42568 \end_inset
42569
42570 white
42571 \begin_inset ERT
42572 status collapsed
42573
42574 \begin_layout Plain Layout
42575
42576 }{
42577 \end_layout
42578
42579 \end_inset
42580
42581 Couleur
42582 \begin_inset ERT
42583 status collapsed
42584
42585 \begin_layout Plain Layout
42586
42587 }
42588 \end_layout
42589
42590 \end_inset
42591
42592  Nom
42593 \end_layout
42594
42595 \end_inset
42596 </cell>
42597 </row>
42598 <row>
42599 <cell alignment="center" valignment="top" usebox="none">
42600 \begin_inset Text
42601
42602 \begin_layout Plain Layout
42603 \begin_inset ERT
42604 status collapsed
42605
42606 \begin_layout Plain Layout
42607
42608
42609 \backslash
42610 fcolorbox{black}{
42611 \end_layout
42612
42613 \end_inset
42614
42615 Apricot
42616 \begin_inset ERT
42617 status collapsed
42618
42619 \begin_layout Plain Layout
42620
42621 }{
42622 \end_layout
42623
42624 \end_inset
42625
42626
42627 \begin_inset Phantom Phantom
42628 status open
42629
42630 \begin_layout Plain Layout
42631 W
42632 \end_layout
42633
42634 \end_inset
42635
42636
42637 \begin_inset ERT
42638 status collapsed
42639
42640 \begin_layout Plain Layout
42641
42642 }
42643 \end_layout
42644
42645 \end_inset
42646
42647  Apricot
42648 \end_layout
42649
42650 \end_inset
42651 </cell>
42652 <cell alignment="center" valignment="top" usebox="none">
42653 \begin_inset Text
42654
42655 \begin_layout Plain Layout
42656 \begin_inset ERT
42657 status collapsed
42658
42659 \begin_layout Plain Layout
42660
42661
42662 \backslash
42663 fcolorbox{black}{
42664 \end_layout
42665
42666 \end_inset
42667
42668 Aquamarine
42669 \begin_inset ERT
42670 status collapsed
42671
42672 \begin_layout Plain Layout
42673
42674 }{
42675 \end_layout
42676
42677 \end_inset
42678
42679
42680 \begin_inset Phantom Phantom
42681 status open
42682
42683 \begin_layout Plain Layout
42684 W
42685 \end_layout
42686
42687 \end_inset
42688
42689
42690 \begin_inset ERT
42691 status collapsed
42692
42693 \begin_layout Plain Layout
42694
42695 }
42696 \end_layout
42697
42698 \end_inset
42699
42700  Aquamarine
42701 \end_layout
42702
42703 \end_inset
42704 </cell>
42705 <cell alignment="center" valignment="top" usebox="none">
42706 \begin_inset Text
42707
42708 \begin_layout Plain Layout
42709 \begin_inset ERT
42710 status collapsed
42711
42712 \begin_layout Plain Layout
42713
42714
42715 \backslash
42716 fcolorbox{black}{
42717 \end_layout
42718
42719 \end_inset
42720
42721 Bittersweet
42722 \begin_inset ERT
42723 status collapsed
42724
42725 \begin_layout Plain Layout
42726
42727 }{
42728 \end_layout
42729
42730 \end_inset
42731
42732
42733 \begin_inset Phantom Phantom
42734 status open
42735
42736 \begin_layout Plain Layout
42737 W
42738 \end_layout
42739
42740 \end_inset
42741
42742
42743 \begin_inset ERT
42744 status collapsed
42745
42746 \begin_layout Plain Layout
42747
42748 }
42749 \end_layout
42750
42751 \end_inset
42752
42753  Bittersweet
42754 \end_layout
42755
42756 \end_inset
42757 </cell>
42758 <cell alignment="center" valignment="top" usebox="none">
42759 \begin_inset Text
42760
42761 \begin_layout Plain Layout
42762 \begin_inset ERT
42763 status collapsed
42764
42765 \begin_layout Plain Layout
42766
42767
42768 \backslash
42769 fcolorbox{black}{
42770 \end_layout
42771
42772 \end_inset
42773
42774 BlueGreen
42775 \begin_inset ERT
42776 status collapsed
42777
42778 \begin_layout Plain Layout
42779
42780 }{
42781 \end_layout
42782
42783 \end_inset
42784
42785
42786 \begin_inset Phantom Phantom
42787 status open
42788
42789 \begin_layout Plain Layout
42790 W
42791 \end_layout
42792
42793 \end_inset
42794
42795
42796 \begin_inset ERT
42797 status collapsed
42798
42799 \begin_layout Plain Layout
42800
42801 }
42802 \end_layout
42803
42804 \end_inset
42805
42806  BlueGreen
42807 \end_layout
42808
42809 \end_inset
42810 </cell>
42811 </row>
42812 <row>
42813 <cell alignment="left" valignment="top" usebox="none">
42814 \begin_inset Text
42815
42816 \begin_layout Plain Layout
42817 \begin_inset ERT
42818 status collapsed
42819
42820 \begin_layout Plain Layout
42821
42822
42823 \backslash
42824 fcolorbox{black}{
42825 \end_layout
42826
42827 \end_inset
42828
42829 BlueViolet
42830 \begin_inset ERT
42831 status collapsed
42832
42833 \begin_layout Plain Layout
42834
42835 }{
42836 \end_layout
42837
42838 \end_inset
42839
42840
42841 \begin_inset Phantom Phantom
42842 status open
42843
42844 \begin_layout Plain Layout
42845 W
42846 \end_layout
42847
42848 \end_inset
42849
42850
42851 \begin_inset ERT
42852 status collapsed
42853
42854 \begin_layout Plain Layout
42855
42856 }
42857 \end_layout
42858
42859 \end_inset
42860
42861  BlueViolet
42862 \end_layout
42863
42864 \end_inset
42865 </cell>
42866 <cell alignment="left" valignment="top" usebox="none">
42867 \begin_inset Text
42868
42869 \begin_layout Plain Layout
42870 \begin_inset ERT
42871 status collapsed
42872
42873 \begin_layout Plain Layout
42874
42875
42876 \backslash
42877 fcolorbox{black}{
42878 \end_layout
42879
42880 \end_inset
42881
42882 BrickRed
42883 \begin_inset ERT
42884 status collapsed
42885
42886 \begin_layout Plain Layout
42887
42888 }{
42889 \end_layout
42890
42891 \end_inset
42892
42893
42894 \begin_inset Phantom Phantom
42895 status open
42896
42897 \begin_layout Plain Layout
42898 W
42899 \end_layout
42900
42901 \end_inset
42902
42903
42904 \begin_inset ERT
42905 status collapsed
42906
42907 \begin_layout Plain Layout
42908
42909 }
42910 \end_layout
42911
42912 \end_inset
42913
42914  BrickRed
42915 \end_layout
42916
42917 \end_inset
42918 </cell>
42919 <cell alignment="left" valignment="top" usebox="none">
42920 \begin_inset Text
42921
42922 \begin_layout Plain Layout
42923 \begin_inset ERT
42924 status collapsed
42925
42926 \begin_layout Plain Layout
42927
42928
42929 \backslash
42930 fcolorbox{black}{
42931 \end_layout
42932
42933 \end_inset
42934
42935 Brown
42936 \begin_inset ERT
42937 status collapsed
42938
42939 \begin_layout Plain Layout
42940
42941 }{
42942 \end_layout
42943
42944 \end_inset
42945
42946
42947 \begin_inset Phantom Phantom
42948 status open
42949
42950 \begin_layout Plain Layout
42951 W
42952 \end_layout
42953
42954 \end_inset
42955
42956
42957 \begin_inset ERT
42958 status collapsed
42959
42960 \begin_layout Plain Layout
42961
42962 }
42963 \end_layout
42964
42965 \end_inset
42966
42967  Brown
42968 \end_layout
42969
42970 \end_inset
42971 </cell>
42972 <cell alignment="left" valignment="top" usebox="none">
42973 \begin_inset Text
42974
42975 \begin_layout Plain Layout
42976 \begin_inset ERT
42977 status collapsed
42978
42979 \begin_layout Plain Layout
42980
42981
42982 \backslash
42983 fcolorbox{black}{
42984 \end_layout
42985
42986 \end_inset
42987
42988 BurntOrange
42989 \begin_inset ERT
42990 status collapsed
42991
42992 \begin_layout Plain Layout
42993
42994 }{
42995 \end_layout
42996
42997 \end_inset
42998
42999
43000 \begin_inset Phantom Phantom
43001 status open
43002
43003 \begin_layout Plain Layout
43004 W
43005 \end_layout
43006
43007 \end_inset
43008
43009
43010 \begin_inset ERT
43011 status collapsed
43012
43013 \begin_layout Plain Layout
43014
43015 }
43016 \end_layout
43017
43018 \end_inset
43019
43020  BurntOrange
43021 \end_layout
43022
43023 \end_inset
43024 </cell>
43025 </row>
43026 <row>
43027 <cell alignment="left" valignment="top" usebox="none">
43028 \begin_inset Text
43029
43030 \begin_layout Plain Layout
43031 \begin_inset ERT
43032 status collapsed
43033
43034 \begin_layout Plain Layout
43035
43036
43037 \backslash
43038 fcolorbox{black}{
43039 \end_layout
43040
43041 \end_inset
43042
43043 CadetBlue
43044 \begin_inset ERT
43045 status collapsed
43046
43047 \begin_layout Plain Layout
43048
43049 }{
43050 \end_layout
43051
43052 \end_inset
43053
43054
43055 \begin_inset Phantom Phantom
43056 status open
43057
43058 \begin_layout Plain Layout
43059 W
43060 \end_layout
43061
43062 \end_inset
43063
43064
43065 \begin_inset ERT
43066 status collapsed
43067
43068 \begin_layout Plain Layout
43069
43070 }
43071 \end_layout
43072
43073 \end_inset
43074
43075  CadetBlue
43076 \end_layout
43077
43078 \end_inset
43079 </cell>
43080 <cell alignment="left" valignment="top" usebox="none">
43081 \begin_inset Text
43082
43083 \begin_layout Plain Layout
43084 \begin_inset ERT
43085 status collapsed
43086
43087 \begin_layout Plain Layout
43088
43089
43090 \backslash
43091 fcolorbox{black}{
43092 \end_layout
43093
43094 \end_inset
43095
43096 CarnationPink
43097 \begin_inset ERT
43098 status collapsed
43099
43100 \begin_layout Plain Layout
43101
43102 }{
43103 \end_layout
43104
43105 \end_inset
43106
43107
43108 \begin_inset Phantom Phantom
43109 status open
43110
43111 \begin_layout Plain Layout
43112 W
43113 \end_layout
43114
43115 \end_inset
43116
43117
43118 \begin_inset ERT
43119 status collapsed
43120
43121 \begin_layout Plain Layout
43122
43123 }
43124 \end_layout
43125
43126 \end_inset
43127
43128  CarnationPink
43129 \end_layout
43130
43131 \end_inset
43132 </cell>
43133 <cell alignment="left" valignment="top" usebox="none">
43134 \begin_inset Text
43135
43136 \begin_layout Plain Layout
43137 \begin_inset ERT
43138 status collapsed
43139
43140 \begin_layout Plain Layout
43141
43142
43143 \backslash
43144 fcolorbox{black}{
43145 \end_layout
43146
43147 \end_inset
43148
43149 Cerulean
43150 \begin_inset ERT
43151 status collapsed
43152
43153 \begin_layout Plain Layout
43154
43155 }{
43156 \end_layout
43157
43158 \end_inset
43159
43160
43161 \begin_inset Phantom Phantom
43162 status open
43163
43164 \begin_layout Plain Layout
43165 W
43166 \end_layout
43167
43168 \end_inset
43169
43170
43171 \begin_inset ERT
43172 status collapsed
43173
43174 \begin_layout Plain Layout
43175
43176 }
43177 \end_layout
43178
43179 \end_inset
43180
43181  Cerulean
43182 \end_layout
43183
43184 \end_inset
43185 </cell>
43186 <cell alignment="left" valignment="top" usebox="none">
43187 \begin_inset Text
43188
43189 \begin_layout Plain Layout
43190 \begin_inset ERT
43191 status collapsed
43192
43193 \begin_layout Plain Layout
43194
43195
43196 \backslash
43197 fcolorbox{black}{
43198 \end_layout
43199
43200 \end_inset
43201
43202 CornflowerBlue
43203 \begin_inset ERT
43204 status collapsed
43205
43206 \begin_layout Plain Layout
43207
43208 }{
43209 \end_layout
43210
43211 \end_inset
43212
43213
43214 \begin_inset Phantom Phantom
43215 status open
43216
43217 \begin_layout Plain Layout
43218 W
43219 \end_layout
43220
43221 \end_inset
43222
43223
43224 \begin_inset ERT
43225 status collapsed
43226
43227 \begin_layout Plain Layout
43228
43229 }
43230 \end_layout
43231
43232 \end_inset
43233
43234  CornflowerBlue
43235 \end_layout
43236
43237 \end_inset
43238 </cell>
43239 </row>
43240 <row>
43241 <cell alignment="left" valignment="top" usebox="none">
43242 \begin_inset Text
43243
43244 \begin_layout Plain Layout
43245 \begin_inset ERT
43246 status collapsed
43247
43248 \begin_layout Plain Layout
43249
43250
43251 \backslash
43252 fcolorbox{black}{
43253 \end_layout
43254
43255 \end_inset
43256
43257 Dandelion
43258 \begin_inset ERT
43259 status collapsed
43260
43261 \begin_layout Plain Layout
43262
43263 }{
43264 \end_layout
43265
43266 \end_inset
43267
43268
43269 \begin_inset Phantom Phantom
43270 status open
43271
43272 \begin_layout Plain Layout
43273 W
43274 \end_layout
43275
43276 \end_inset
43277
43278
43279 \begin_inset ERT
43280 status collapsed
43281
43282 \begin_layout Plain Layout
43283
43284 }
43285 \end_layout
43286
43287 \end_inset
43288
43289  Dandelion
43290 \end_layout
43291
43292 \end_inset
43293 </cell>
43294 <cell alignment="left" valignment="top" usebox="none">
43295 \begin_inset Text
43296
43297 \begin_layout Plain Layout
43298 \begin_inset ERT
43299 status collapsed
43300
43301 \begin_layout Plain Layout
43302
43303
43304 \backslash
43305 fcolorbox{black}{
43306 \end_layout
43307
43308 \end_inset
43309
43310 DarkOrchid
43311 \begin_inset ERT
43312 status collapsed
43313
43314 \begin_layout Plain Layout
43315
43316 }{
43317 \end_layout
43318
43319 \end_inset
43320
43321
43322 \begin_inset Phantom Phantom
43323 status open
43324
43325 \begin_layout Plain Layout
43326 W
43327 \end_layout
43328
43329 \end_inset
43330
43331
43332 \begin_inset ERT
43333 status collapsed
43334
43335 \begin_layout Plain Layout
43336
43337 }
43338 \end_layout
43339
43340 \end_inset
43341
43342  DarkOrchid
43343 \end_layout
43344
43345 \end_inset
43346 </cell>
43347 <cell alignment="left" valignment="top" usebox="none">
43348 \begin_inset Text
43349
43350 \begin_layout Plain Layout
43351 \begin_inset ERT
43352 status collapsed
43353
43354 \begin_layout Plain Layout
43355
43356
43357 \backslash
43358 fcolorbox{black}{
43359 \end_layout
43360
43361 \end_inset
43362
43363 Emerald
43364 \begin_inset ERT
43365 status collapsed
43366
43367 \begin_layout Plain Layout
43368
43369 }{
43370 \end_layout
43371
43372 \end_inset
43373
43374
43375 \begin_inset Phantom Phantom
43376 status open
43377
43378 \begin_layout Plain Layout
43379 W
43380 \end_layout
43381
43382 \end_inset
43383
43384
43385 \begin_inset ERT
43386 status collapsed
43387
43388 \begin_layout Plain Layout
43389
43390 }
43391 \end_layout
43392
43393 \end_inset
43394
43395  Emerald
43396 \end_layout
43397
43398 \end_inset
43399 </cell>
43400 <cell alignment="left" valignment="top" usebox="none">
43401 \begin_inset Text
43402
43403 \begin_layout Plain Layout
43404 \begin_inset ERT
43405 status collapsed
43406
43407 \begin_layout Plain Layout
43408
43409
43410 \backslash
43411 fcolorbox{black}{
43412 \end_layout
43413
43414 \end_inset
43415
43416 ForestGreen
43417 \begin_inset ERT
43418 status collapsed
43419
43420 \begin_layout Plain Layout
43421
43422 }{
43423 \end_layout
43424
43425 \end_inset
43426
43427
43428 \begin_inset Phantom Phantom
43429 status open
43430
43431 \begin_layout Plain Layout
43432 W
43433 \end_layout
43434
43435 \end_inset
43436
43437
43438 \begin_inset ERT
43439 status collapsed
43440
43441 \begin_layout Plain Layout
43442
43443 }
43444 \end_layout
43445
43446 \end_inset
43447
43448  ForestGreen
43449 \end_layout
43450
43451 \end_inset
43452 </cell>
43453 </row>
43454 <row>
43455 <cell alignment="left" valignment="top" usebox="none">
43456 \begin_inset Text
43457
43458 \begin_layout Plain Layout
43459 \begin_inset ERT
43460 status collapsed
43461
43462 \begin_layout Plain Layout
43463
43464
43465 \backslash
43466 fcolorbox{black}{
43467 \end_layout
43468
43469 \end_inset
43470
43471 Fuchsia
43472 \begin_inset ERT
43473 status collapsed
43474
43475 \begin_layout Plain Layout
43476
43477 }{
43478 \end_layout
43479
43480 \end_inset
43481
43482
43483 \begin_inset Phantom Phantom
43484 status open
43485
43486 \begin_layout Plain Layout
43487 W
43488 \end_layout
43489
43490 \end_inset
43491
43492
43493 \begin_inset ERT
43494 status collapsed
43495
43496 \begin_layout Plain Layout
43497
43498 }
43499 \end_layout
43500
43501 \end_inset
43502
43503  Fuchsia
43504 \end_layout
43505
43506 \end_inset
43507 </cell>
43508 <cell alignment="left" valignment="top" usebox="none">
43509 \begin_inset Text
43510
43511 \begin_layout Plain Layout
43512 \begin_inset ERT
43513 status collapsed
43514
43515 \begin_layout Plain Layout
43516
43517
43518 \backslash
43519 fcolorbox{black}{
43520 \end_layout
43521
43522 \end_inset
43523
43524 Goldenrod
43525 \begin_inset ERT
43526 status collapsed
43527
43528 \begin_layout Plain Layout
43529
43530 }{
43531 \end_layout
43532
43533 \end_inset
43534
43535
43536 \begin_inset Phantom Phantom
43537 status open
43538
43539 \begin_layout Plain Layout
43540 W
43541 \end_layout
43542
43543 \end_inset
43544
43545
43546 \begin_inset ERT
43547 status collapsed
43548
43549 \begin_layout Plain Layout
43550
43551 }
43552 \end_layout
43553
43554 \end_inset
43555
43556  Goldenrod
43557 \end_layout
43558
43559 \end_inset
43560 </cell>
43561 <cell alignment="left" valignment="top" usebox="none">
43562 \begin_inset Text
43563
43564 \begin_layout Plain Layout
43565 \begin_inset ERT
43566 status collapsed
43567
43568 \begin_layout Plain Layout
43569
43570
43571 \backslash
43572 fcolorbox{black}{
43573 \end_layout
43574
43575 \end_inset
43576
43577 Gray
43578 \begin_inset ERT
43579 status collapsed
43580
43581 \begin_layout Plain Layout
43582
43583 }{
43584 \end_layout
43585
43586 \end_inset
43587
43588
43589 \begin_inset Phantom Phantom
43590 status open
43591
43592 \begin_layout Plain Layout
43593 W
43594 \end_layout
43595
43596 \end_inset
43597
43598
43599 \begin_inset ERT
43600 status collapsed
43601
43602 \begin_layout Plain Layout
43603
43604 }
43605 \end_layout
43606
43607 \end_inset
43608
43609  Gray
43610 \end_layout
43611
43612 \end_inset
43613 </cell>
43614 <cell alignment="left" valignment="top" usebox="none">
43615 \begin_inset Text
43616
43617 \begin_layout Plain Layout
43618 \begin_inset ERT
43619 status collapsed
43620
43621 \begin_layout Plain Layout
43622
43623
43624 \backslash
43625 fcolorbox{black}{
43626 \end_layout
43627
43628 \end_inset
43629
43630 GreenYellow
43631 \begin_inset ERT
43632 status collapsed
43633
43634 \begin_layout Plain Layout
43635
43636 }{
43637 \end_layout
43638
43639 \end_inset
43640
43641
43642 \begin_inset Phantom Phantom
43643 status open
43644
43645 \begin_layout Plain Layout
43646 W
43647 \end_layout
43648
43649 \end_inset
43650
43651
43652 \begin_inset ERT
43653 status collapsed
43654
43655 \begin_layout Plain Layout
43656
43657 }
43658 \end_layout
43659
43660 \end_inset
43661
43662  GreenYellow
43663 \end_layout
43664
43665 \end_inset
43666 </cell>
43667 </row>
43668 <row>
43669 <cell alignment="center" valignment="top" usebox="none">
43670 \begin_inset Text
43671
43672 \begin_layout Plain Layout
43673 \begin_inset ERT
43674 status collapsed
43675
43676 \begin_layout Plain Layout
43677
43678
43679 \backslash
43680 fcolorbox{black}{
43681 \end_layout
43682
43683 \end_inset
43684
43685 JungleGreen
43686 \begin_inset ERT
43687 status collapsed
43688
43689 \begin_layout Plain Layout
43690
43691 }{
43692 \end_layout
43693
43694 \end_inset
43695
43696
43697 \begin_inset Phantom Phantom
43698 status open
43699
43700 \begin_layout Plain Layout
43701 W
43702 \end_layout
43703
43704 \end_inset
43705
43706
43707 \begin_inset ERT
43708 status collapsed
43709
43710 \begin_layout Plain Layout
43711
43712 }
43713 \end_layout
43714
43715 \end_inset
43716
43717  JungleGreen
43718 \end_layout
43719
43720 \end_inset
43721 </cell>
43722 <cell alignment="center" valignment="top" usebox="none">
43723 \begin_inset Text
43724
43725 \begin_layout Plain Layout
43726 \begin_inset ERT
43727 status collapsed
43728
43729 \begin_layout Plain Layout
43730
43731
43732 \backslash
43733 fcolorbox{black}{
43734 \end_layout
43735
43736 \end_inset
43737
43738 Lavender
43739 \begin_inset ERT
43740 status collapsed
43741
43742 \begin_layout Plain Layout
43743
43744 }{
43745 \end_layout
43746
43747 \end_inset
43748
43749
43750 \begin_inset Phantom Phantom
43751 status open
43752
43753 \begin_layout Plain Layout
43754 W
43755 \end_layout
43756
43757 \end_inset
43758
43759
43760 \begin_inset ERT
43761 status collapsed
43762
43763 \begin_layout Plain Layout
43764
43765 }
43766 \end_layout
43767
43768 \end_inset
43769
43770  Lavender
43771 \end_layout
43772
43773 \end_inset
43774 </cell>
43775 <cell alignment="center" valignment="top" usebox="none">
43776 \begin_inset Text
43777
43778 \begin_layout Plain Layout
43779 \begin_inset ERT
43780 status collapsed
43781
43782 \begin_layout Plain Layout
43783
43784
43785 \backslash
43786 fcolorbox{black}{
43787 \end_layout
43788
43789 \end_inset
43790
43791 LimeGreen
43792 \begin_inset ERT
43793 status collapsed
43794
43795 \begin_layout Plain Layout
43796
43797 }{
43798 \end_layout
43799
43800 \end_inset
43801
43802
43803 \begin_inset Phantom Phantom
43804 status open
43805
43806 \begin_layout Plain Layout
43807 W
43808 \end_layout
43809
43810 \end_inset
43811
43812
43813 \begin_inset ERT
43814 status collapsed
43815
43816 \begin_layout Plain Layout
43817
43818 }
43819 \end_layout
43820
43821 \end_inset
43822
43823  LimeGreen
43824 \end_layout
43825
43826 \end_inset
43827 </cell>
43828 <cell alignment="center" valignment="top" usebox="none">
43829 \begin_inset Text
43830
43831 \begin_layout Plain Layout
43832 \begin_inset ERT
43833 status collapsed
43834
43835 \begin_layout Plain Layout
43836
43837
43838 \backslash
43839 fcolorbox{black}{
43840 \end_layout
43841
43842 \end_inset
43843
43844 Mahogany
43845 \begin_inset ERT
43846 status collapsed
43847
43848 \begin_layout Plain Layout
43849
43850 }{
43851 \end_layout
43852
43853 \end_inset
43854
43855
43856 \begin_inset Phantom Phantom
43857 status open
43858
43859 \begin_layout Plain Layout
43860 W
43861 \end_layout
43862
43863 \end_inset
43864
43865
43866 \begin_inset ERT
43867 status collapsed
43868
43869 \begin_layout Plain Layout
43870
43871 }
43872 \end_layout
43873
43874 \end_inset
43875
43876  Mahogany
43877 \end_layout
43878
43879 \end_inset
43880 </cell>
43881 </row>
43882 <row>
43883 <cell alignment="left" valignment="top" usebox="none">
43884 \begin_inset Text
43885
43886 \begin_layout Plain Layout
43887 \begin_inset ERT
43888 status collapsed
43889
43890 \begin_layout Plain Layout
43891
43892
43893 \backslash
43894 fcolorbox{black}{
43895 \end_layout
43896
43897 \end_inset
43898
43899 Mahogany
43900 \begin_inset ERT
43901 status collapsed
43902
43903 \begin_layout Plain Layout
43904
43905 }{
43906 \end_layout
43907
43908 \end_inset
43909
43910
43911 \begin_inset Phantom Phantom
43912 status open
43913
43914 \begin_layout Plain Layout
43915 W
43916 \end_layout
43917
43918 \end_inset
43919
43920
43921 \begin_inset ERT
43922 status collapsed
43923
43924 \begin_layout Plain Layout
43925
43926 }
43927 \end_layout
43928
43929 \end_inset
43930
43931  Mahogany
43932 \end_layout
43933
43934 \end_inset
43935 </cell>
43936 <cell alignment="left" valignment="top" usebox="none">
43937 \begin_inset Text
43938
43939 \begin_layout Plain Layout
43940 \begin_inset ERT
43941 status collapsed
43942
43943 \begin_layout Plain Layout
43944
43945
43946 \backslash
43947 fcolorbox{black}{
43948 \end_layout
43949
43950 \end_inset
43951
43952 Maroon
43953 \begin_inset ERT
43954 status collapsed
43955
43956 \begin_layout Plain Layout
43957
43958 }{
43959 \end_layout
43960
43961 \end_inset
43962
43963
43964 \begin_inset Phantom Phantom
43965 status open
43966
43967 \begin_layout Plain Layout
43968 W
43969 \end_layout
43970
43971 \end_inset
43972
43973
43974 \begin_inset ERT
43975 status collapsed
43976
43977 \begin_layout Plain Layout
43978
43979 }
43980 \end_layout
43981
43982 \end_inset
43983
43984  Maroon
43985 \end_layout
43986
43987 \end_inset
43988 </cell>
43989 <cell alignment="left" valignment="top" usebox="none">
43990 \begin_inset Text
43991
43992 \begin_layout Plain Layout
43993 \begin_inset ERT
43994 status collapsed
43995
43996 \begin_layout Plain Layout
43997
43998
43999 \backslash
44000 fcolorbox{black}{
44001 \end_layout
44002
44003 \end_inset
44004
44005 Melon
44006 \begin_inset ERT
44007 status collapsed
44008
44009 \begin_layout Plain Layout
44010
44011 }{
44012 \end_layout
44013
44014 \end_inset
44015
44016
44017 \begin_inset Phantom Phantom
44018 status open
44019
44020 \begin_layout Plain Layout
44021 W
44022 \end_layout
44023
44024 \end_inset
44025
44026
44027 \begin_inset ERT
44028 status collapsed
44029
44030 \begin_layout Plain Layout
44031
44032 }
44033 \end_layout
44034
44035 \end_inset
44036
44037  Melon
44038 \end_layout
44039
44040 \end_inset
44041 </cell>
44042 <cell alignment="left" valignment="top" usebox="none">
44043 \begin_inset Text
44044
44045 \begin_layout Plain Layout
44046 \begin_inset ERT
44047 status collapsed
44048
44049 \begin_layout Plain Layout
44050
44051
44052 \backslash
44053 fcolorbox{black}{
44054 \end_layout
44055
44056 \end_inset
44057
44058 MidnightBlue
44059 \begin_inset ERT
44060 status collapsed
44061
44062 \begin_layout Plain Layout
44063
44064 }{
44065 \end_layout
44066
44067 \end_inset
44068
44069
44070 \begin_inset Phantom Phantom
44071 status open
44072
44073 \begin_layout Plain Layout
44074 W
44075 \end_layout
44076
44077 \end_inset
44078
44079
44080 \begin_inset ERT
44081 status collapsed
44082
44083 \begin_layout Plain Layout
44084
44085 }
44086 \end_layout
44087
44088 \end_inset
44089
44090  MidnightBlue
44091 \end_layout
44092
44093 \end_inset
44094 </cell>
44095 </row>
44096 <row>
44097 <cell alignment="left" valignment="top" usebox="none">
44098 \begin_inset Text
44099
44100 \begin_layout Plain Layout
44101 \begin_inset ERT
44102 status collapsed
44103
44104 \begin_layout Plain Layout
44105
44106
44107 \backslash
44108 fcolorbox{black}{
44109 \end_layout
44110
44111 \end_inset
44112
44113 Mulberry
44114 \begin_inset ERT
44115 status collapsed
44116
44117 \begin_layout Plain Layout
44118
44119 }{
44120 \end_layout
44121
44122 \end_inset
44123
44124
44125 \begin_inset Phantom Phantom
44126 status open
44127
44128 \begin_layout Plain Layout
44129 W
44130 \end_layout
44131
44132 \end_inset
44133
44134
44135 \begin_inset ERT
44136 status collapsed
44137
44138 \begin_layout Plain Layout
44139
44140 }
44141 \end_layout
44142
44143 \end_inset
44144
44145  Mulberry
44146 \end_layout
44147
44148 \end_inset
44149 </cell>
44150 <cell alignment="left" valignment="top" usebox="none">
44151 \begin_inset Text
44152
44153 \begin_layout Plain Layout
44154 \begin_inset ERT
44155 status collapsed
44156
44157 \begin_layout Plain Layout
44158
44159
44160 \backslash
44161 fcolorbox{black}{
44162 \end_layout
44163
44164 \end_inset
44165
44166 NavyBlue
44167 \begin_inset ERT
44168 status collapsed
44169
44170 \begin_layout Plain Layout
44171
44172 }{
44173 \end_layout
44174
44175 \end_inset
44176
44177
44178 \begin_inset Phantom Phantom
44179 status open
44180
44181 \begin_layout Plain Layout
44182 W
44183 \end_layout
44184
44185 \end_inset
44186
44187
44188 \begin_inset ERT
44189 status collapsed
44190
44191 \begin_layout Plain Layout
44192
44193 }
44194 \end_layout
44195
44196 \end_inset
44197
44198  NavyBlue
44199 \end_layout
44200
44201 \end_inset
44202 </cell>
44203 <cell alignment="left" valignment="top" usebox="none">
44204 \begin_inset Text
44205
44206 \begin_layout Plain Layout
44207 \begin_inset ERT
44208 status collapsed
44209
44210 \begin_layout Plain Layout
44211
44212
44213 \backslash
44214 fcolorbox{black}{
44215 \end_layout
44216
44217 \end_inset
44218
44219 OliveGreen
44220 \begin_inset ERT
44221 status collapsed
44222
44223 \begin_layout Plain Layout
44224
44225 }{
44226 \end_layout
44227
44228 \end_inset
44229
44230
44231 \begin_inset Phantom Phantom
44232 status open
44233
44234 \begin_layout Plain Layout
44235 W
44236 \end_layout
44237
44238 \end_inset
44239
44240
44241 \begin_inset ERT
44242 status collapsed
44243
44244 \begin_layout Plain Layout
44245
44246 }
44247 \end_layout
44248
44249 \end_inset
44250
44251  OliveGreen
44252 \end_layout
44253
44254 \end_inset
44255 </cell>
44256 <cell alignment="left" valignment="top" usebox="none">
44257 \begin_inset Text
44258
44259 \begin_layout Plain Layout
44260 \begin_inset ERT
44261 status collapsed
44262
44263 \begin_layout Plain Layout
44264
44265
44266 \backslash
44267 fcolorbox{black}{
44268 \end_layout
44269
44270 \end_inset
44271
44272 Orange
44273 \begin_inset ERT
44274 status collapsed
44275
44276 \begin_layout Plain Layout
44277
44278 }{
44279 \end_layout
44280
44281 \end_inset
44282
44283
44284 \begin_inset Phantom Phantom
44285 status open
44286
44287 \begin_layout Plain Layout
44288 W
44289 \end_layout
44290
44291 \end_inset
44292
44293
44294 \begin_inset ERT
44295 status collapsed
44296
44297 \begin_layout Plain Layout
44298
44299 }
44300 \end_layout
44301
44302 \end_inset
44303
44304  Orange
44305 \end_layout
44306
44307 \end_inset
44308 </cell>
44309 </row>
44310 <row>
44311 <cell alignment="left" valignment="top" usebox="none">
44312 \begin_inset Text
44313
44314 \begin_layout Plain Layout
44315 \begin_inset ERT
44316 status collapsed
44317
44318 \begin_layout Plain Layout
44319
44320
44321 \backslash
44322 fcolorbox{black}{
44323 \end_layout
44324
44325 \end_inset
44326
44327 OrangeRed
44328 \begin_inset ERT
44329 status collapsed
44330
44331 \begin_layout Plain Layout
44332
44333 }{
44334 \end_layout
44335
44336 \end_inset
44337
44338
44339 \begin_inset Phantom Phantom
44340 status open
44341
44342 \begin_layout Plain Layout
44343 W
44344 \end_layout
44345
44346 \end_inset
44347
44348
44349 \begin_inset ERT
44350 status collapsed
44351
44352 \begin_layout Plain Layout
44353
44354 }
44355 \end_layout
44356
44357 \end_inset
44358
44359  OrangeRed
44360 \end_layout
44361
44362 \end_inset
44363 </cell>
44364 <cell alignment="left" valignment="top" usebox="none">
44365 \begin_inset Text
44366
44367 \begin_layout Plain Layout
44368 \begin_inset ERT
44369 status collapsed
44370
44371 \begin_layout Plain Layout
44372
44373
44374 \backslash
44375 fcolorbox{black}{
44376 \end_layout
44377
44378 \end_inset
44379
44380 Orchid
44381 \begin_inset ERT
44382 status collapsed
44383
44384 \begin_layout Plain Layout
44385
44386 }{
44387 \end_layout
44388
44389 \end_inset
44390
44391
44392 \begin_inset Phantom Phantom
44393 status open
44394
44395 \begin_layout Plain Layout
44396 W
44397 \end_layout
44398
44399 \end_inset
44400
44401
44402 \begin_inset ERT
44403 status collapsed
44404
44405 \begin_layout Plain Layout
44406
44407 }
44408 \end_layout
44409
44410 \end_inset
44411
44412  Orchid
44413 \end_layout
44414
44415 \end_inset
44416 </cell>
44417 <cell alignment="left" valignment="top" usebox="none">
44418 \begin_inset Text
44419
44420 \begin_layout Plain Layout
44421 \begin_inset ERT
44422 status collapsed
44423
44424 \begin_layout Plain Layout
44425
44426
44427 \backslash
44428 fcolorbox{black}{
44429 \end_layout
44430
44431 \end_inset
44432
44433 Peach
44434 \begin_inset ERT
44435 status collapsed
44436
44437 \begin_layout Plain Layout
44438
44439 }{
44440 \end_layout
44441
44442 \end_inset
44443
44444
44445 \begin_inset Phantom Phantom
44446 status open
44447
44448 \begin_layout Plain Layout
44449 W
44450 \end_layout
44451
44452 \end_inset
44453
44454
44455 \begin_inset ERT
44456 status collapsed
44457
44458 \begin_layout Plain Layout
44459
44460 }
44461 \end_layout
44462
44463 \end_inset
44464
44465  Peach
44466 \end_layout
44467
44468 \end_inset
44469 </cell>
44470 <cell alignment="left" valignment="top" usebox="none">
44471 \begin_inset Text
44472
44473 \begin_layout Plain Layout
44474 \begin_inset ERT
44475 status collapsed
44476
44477 \begin_layout Plain Layout
44478
44479
44480 \backslash
44481 fcolorbox{black}{
44482 \end_layout
44483
44484 \end_inset
44485
44486 Periwinkle
44487 \begin_inset ERT
44488 status collapsed
44489
44490 \begin_layout Plain Layout
44491
44492 }{
44493 \end_layout
44494
44495 \end_inset
44496
44497
44498 \begin_inset Phantom Phantom
44499 status open
44500
44501 \begin_layout Plain Layout
44502 W
44503 \end_layout
44504
44505 \end_inset
44506
44507
44508 \begin_inset ERT
44509 status collapsed
44510
44511 \begin_layout Plain Layout
44512
44513 }
44514 \end_layout
44515
44516 \end_inset
44517
44518  Periwinkle
44519 \end_layout
44520
44521 \end_inset
44522 </cell>
44523 </row>
44524 <row>
44525 <cell alignment="left" valignment="top" usebox="none">
44526 \begin_inset Text
44527
44528 \begin_layout Plain Layout
44529 \begin_inset ERT
44530 status collapsed
44531
44532 \begin_layout Plain Layout
44533
44534
44535 \backslash
44536 fcolorbox{black}{
44537 \end_layout
44538
44539 \end_inset
44540
44541 PineGreen
44542 \begin_inset ERT
44543 status collapsed
44544
44545 \begin_layout Plain Layout
44546
44547 }{
44548 \end_layout
44549
44550 \end_inset
44551
44552
44553 \begin_inset Phantom Phantom
44554 status open
44555
44556 \begin_layout Plain Layout
44557 W
44558 \end_layout
44559
44560 \end_inset
44561
44562
44563 \begin_inset ERT
44564 status collapsed
44565
44566 \begin_layout Plain Layout
44567
44568 }
44569 \end_layout
44570
44571 \end_inset
44572
44573  PineGreen
44574 \end_layout
44575
44576 \end_inset
44577 </cell>
44578 <cell alignment="left" valignment="top" usebox="none">
44579 \begin_inset Text
44580
44581 \begin_layout Plain Layout
44582 \begin_inset ERT
44583 status collapsed
44584
44585 \begin_layout Plain Layout
44586
44587
44588 \backslash
44589 fcolorbox{black}{
44590 \end_layout
44591
44592 \end_inset
44593
44594 Plum
44595 \begin_inset ERT
44596 status collapsed
44597
44598 \begin_layout Plain Layout
44599
44600 }{
44601 \end_layout
44602
44603 \end_inset
44604
44605
44606 \begin_inset Phantom Phantom
44607 status open
44608
44609 \begin_layout Plain Layout
44610 W
44611 \end_layout
44612
44613 \end_inset
44614
44615
44616 \begin_inset ERT
44617 status collapsed
44618
44619 \begin_layout Plain Layout
44620
44621 }
44622 \end_layout
44623
44624 \end_inset
44625
44626  Plum
44627 \end_layout
44628
44629 \end_inset
44630 </cell>
44631 <cell alignment="left" valignment="top" usebox="none">
44632 \begin_inset Text
44633
44634 \begin_layout Plain Layout
44635 \begin_inset ERT
44636 status collapsed
44637
44638 \begin_layout Plain Layout
44639
44640
44641 \backslash
44642 fcolorbox{black}{
44643 \end_layout
44644
44645 \end_inset
44646
44647 ProcessBlue
44648 \begin_inset ERT
44649 status collapsed
44650
44651 \begin_layout Plain Layout
44652
44653 }{
44654 \end_layout
44655
44656 \end_inset
44657
44658
44659 \begin_inset Phantom Phantom
44660 status open
44661
44662 \begin_layout Plain Layout
44663 W
44664 \end_layout
44665
44666 \end_inset
44667
44668
44669 \begin_inset ERT
44670 status collapsed
44671
44672 \begin_layout Plain Layout
44673
44674 }
44675 \end_layout
44676
44677 \end_inset
44678
44679  ProcessBlue
44680 \end_layout
44681
44682 \end_inset
44683 </cell>
44684 <cell alignment="left" valignment="top" usebox="none">
44685 \begin_inset Text
44686
44687 \begin_layout Plain Layout
44688 \begin_inset ERT
44689 status collapsed
44690
44691 \begin_layout Plain Layout
44692
44693
44694 \backslash
44695 fcolorbox{black}{
44696 \end_layout
44697
44698 \end_inset
44699
44700 Purple
44701 \begin_inset ERT
44702 status collapsed
44703
44704 \begin_layout Plain Layout
44705
44706 }{
44707 \end_layout
44708
44709 \end_inset
44710
44711
44712 \begin_inset Phantom Phantom
44713 status open
44714
44715 \begin_layout Plain Layout
44716 W
44717 \end_layout
44718
44719 \end_inset
44720
44721
44722 \begin_inset ERT
44723 status collapsed
44724
44725 \begin_layout Plain Layout
44726
44727 }
44728 \end_layout
44729
44730 \end_inset
44731
44732  Purple
44733 \end_layout
44734
44735 \end_inset
44736 </cell>
44737 </row>
44738 <row>
44739 <cell alignment="left" valignment="top" usebox="none">
44740 \begin_inset Text
44741
44742 \begin_layout Plain Layout
44743 \begin_inset ERT
44744 status collapsed
44745
44746 \begin_layout Plain Layout
44747
44748
44749 \backslash
44750 fcolorbox{black}{
44751 \end_layout
44752
44753 \end_inset
44754
44755 RawSienna
44756 \begin_inset ERT
44757 status collapsed
44758
44759 \begin_layout Plain Layout
44760
44761 }{
44762 \end_layout
44763
44764 \end_inset
44765
44766
44767 \begin_inset Phantom Phantom
44768 status open
44769
44770 \begin_layout Plain Layout
44771 W
44772 \end_layout
44773
44774 \end_inset
44775
44776
44777 \begin_inset ERT
44778 status collapsed
44779
44780 \begin_layout Plain Layout
44781
44782 }
44783 \end_layout
44784
44785 \end_inset
44786
44787  RawSienna
44788 \end_layout
44789
44790 \end_inset
44791 </cell>
44792 <cell alignment="left" valignment="top" usebox="none">
44793 \begin_inset Text
44794
44795 \begin_layout Plain Layout
44796 \begin_inset ERT
44797 status collapsed
44798
44799 \begin_layout Plain Layout
44800
44801
44802 \backslash
44803 fcolorbox{black}{
44804 \end_layout
44805
44806 \end_inset
44807
44808 RedOrange
44809 \begin_inset ERT
44810 status collapsed
44811
44812 \begin_layout Plain Layout
44813
44814 }{
44815 \end_layout
44816
44817 \end_inset
44818
44819
44820 \begin_inset Phantom Phantom
44821 status open
44822
44823 \begin_layout Plain Layout
44824 W
44825 \end_layout
44826
44827 \end_inset
44828
44829
44830 \begin_inset ERT
44831 status collapsed
44832
44833 \begin_layout Plain Layout
44834
44835 }
44836 \end_layout
44837
44838 \end_inset
44839
44840  RedOrange
44841 \end_layout
44842
44843 \end_inset
44844 </cell>
44845 <cell alignment="left" valignment="top" usebox="none">
44846 \begin_inset Text
44847
44848 \begin_layout Plain Layout
44849 \begin_inset ERT
44850 status collapsed
44851
44852 \begin_layout Plain Layout
44853
44854
44855 \backslash
44856 fcolorbox{black}{
44857 \end_layout
44858
44859 \end_inset
44860
44861 RedViolet
44862 \begin_inset ERT
44863 status collapsed
44864
44865 \begin_layout Plain Layout
44866
44867 }{
44868 \end_layout
44869
44870 \end_inset
44871
44872
44873 \begin_inset Phantom Phantom
44874 status open
44875
44876 \begin_layout Plain Layout
44877 W
44878 \end_layout
44879
44880 \end_inset
44881
44882
44883 \begin_inset ERT
44884 status collapsed
44885
44886 \begin_layout Plain Layout
44887
44888 }
44889 \end_layout
44890
44891 \end_inset
44892
44893  RedViolet
44894 \end_layout
44895
44896 \end_inset
44897 </cell>
44898 <cell alignment="left" valignment="top" usebox="none">
44899 \begin_inset Text
44900
44901 \begin_layout Plain Layout
44902 \begin_inset ERT
44903 status collapsed
44904
44905 \begin_layout Plain Layout
44906
44907
44908 \backslash
44909 fcolorbox{black}{
44910 \end_layout
44911
44912 \end_inset
44913
44914 Rhodamine
44915 \begin_inset ERT
44916 status collapsed
44917
44918 \begin_layout Plain Layout
44919
44920 }{
44921 \end_layout
44922
44923 \end_inset
44924
44925
44926 \begin_inset Phantom Phantom
44927 status open
44928
44929 \begin_layout Plain Layout
44930 W
44931 \end_layout
44932
44933 \end_inset
44934
44935
44936 \begin_inset ERT
44937 status collapsed
44938
44939 \begin_layout Plain Layout
44940
44941 }
44942 \end_layout
44943
44944 \end_inset
44945
44946  Rhodamine
44947 \end_layout
44948
44949 \end_inset
44950 </cell>
44951 </row>
44952 <row>
44953 <cell alignment="left" valignment="top" usebox="none">
44954 \begin_inset Text
44955
44956 \begin_layout Plain Layout
44957 \begin_inset ERT
44958 status collapsed
44959
44960 \begin_layout Plain Layout
44961
44962
44963 \backslash
44964 fcolorbox{black}{
44965 \end_layout
44966
44967 \end_inset
44968
44969 RoyalBlue
44970 \begin_inset ERT
44971 status collapsed
44972
44973 \begin_layout Plain Layout
44974
44975 }{
44976 \end_layout
44977
44978 \end_inset
44979
44980
44981 \begin_inset Phantom Phantom
44982 status open
44983
44984 \begin_layout Plain Layout
44985 W
44986 \end_layout
44987
44988 \end_inset
44989
44990
44991 \begin_inset ERT
44992 status collapsed
44993
44994 \begin_layout Plain Layout
44995
44996 }
44997 \end_layout
44998
44999 \end_inset
45000
45001  RoyalBlue
45002 \end_layout
45003
45004 \end_inset
45005 </cell>
45006 <cell alignment="left" valignment="top" usebox="none">
45007 \begin_inset Text
45008
45009 \begin_layout Plain Layout
45010 \begin_inset ERT
45011 status collapsed
45012
45013 \begin_layout Plain Layout
45014
45015
45016 \backslash
45017 fcolorbox{black}{
45018 \end_layout
45019
45020 \end_inset
45021
45022 RoyalPurple
45023 \begin_inset ERT
45024 status collapsed
45025
45026 \begin_layout Plain Layout
45027
45028 }{
45029 \end_layout
45030
45031 \end_inset
45032
45033
45034 \begin_inset Phantom Phantom
45035 status open
45036
45037 \begin_layout Plain Layout
45038 W
45039 \end_layout
45040
45041 \end_inset
45042
45043
45044 \begin_inset ERT
45045 status collapsed
45046
45047 \begin_layout Plain Layout
45048
45049 }
45050 \end_layout
45051
45052 \end_inset
45053
45054  RoyalPurple
45055 \end_layout
45056
45057 \end_inset
45058 </cell>
45059 <cell alignment="left" valignment="top" usebox="none">
45060 \begin_inset Text
45061
45062 \begin_layout Plain Layout
45063 \begin_inset ERT
45064 status collapsed
45065
45066 \begin_layout Plain Layout
45067
45068
45069 \backslash
45070 fcolorbox{black}{
45071 \end_layout
45072
45073 \end_inset
45074
45075 RubineRed
45076 \begin_inset ERT
45077 status collapsed
45078
45079 \begin_layout Plain Layout
45080
45081 }{
45082 \end_layout
45083
45084 \end_inset
45085
45086
45087 \begin_inset Phantom Phantom
45088 status open
45089
45090 \begin_layout Plain Layout
45091 W
45092 \end_layout
45093
45094 \end_inset
45095
45096
45097 \begin_inset ERT
45098 status collapsed
45099
45100 \begin_layout Plain Layout
45101
45102 }
45103 \end_layout
45104
45105 \end_inset
45106
45107  RubineRed
45108 \end_layout
45109
45110 \end_inset
45111 </cell>
45112 <cell alignment="left" valignment="top" usebox="none">
45113 \begin_inset Text
45114
45115 \begin_layout Plain Layout
45116 \begin_inset ERT
45117 status collapsed
45118
45119 \begin_layout Plain Layout
45120
45121
45122 \backslash
45123 fcolorbox{black}{
45124 \end_layout
45125
45126 \end_inset
45127
45128 Salmon
45129 \begin_inset ERT
45130 status collapsed
45131
45132 \begin_layout Plain Layout
45133
45134 }{
45135 \end_layout
45136
45137 \end_inset
45138
45139
45140 \begin_inset Phantom Phantom
45141 status open
45142
45143 \begin_layout Plain Layout
45144 W
45145 \end_layout
45146
45147 \end_inset
45148
45149
45150 \begin_inset ERT
45151 status collapsed
45152
45153 \begin_layout Plain Layout
45154
45155 }
45156 \end_layout
45157
45158 \end_inset
45159
45160  Salmon
45161 \end_layout
45162
45163 \end_inset
45164 </cell>
45165 </row>
45166 <row>
45167 <cell alignment="left" valignment="top" usebox="none">
45168 \begin_inset Text
45169
45170 \begin_layout Plain Layout
45171 \begin_inset ERT
45172 status collapsed
45173
45174 \begin_layout Plain Layout
45175
45176
45177 \backslash
45178 fcolorbox{black}{
45179 \end_layout
45180
45181 \end_inset
45182
45183 SeaGreen
45184 \begin_inset ERT
45185 status collapsed
45186
45187 \begin_layout Plain Layout
45188
45189 }{
45190 \end_layout
45191
45192 \end_inset
45193
45194
45195 \begin_inset Phantom Phantom
45196 status open
45197
45198 \begin_layout Plain Layout
45199 W
45200 \end_layout
45201
45202 \end_inset
45203
45204
45205 \begin_inset ERT
45206 status collapsed
45207
45208 \begin_layout Plain Layout
45209
45210 }
45211 \end_layout
45212
45213 \end_inset
45214
45215  SeaGreen
45216 \end_layout
45217
45218 \end_inset
45219 </cell>
45220 <cell alignment="left" valignment="top" usebox="none">
45221 \begin_inset Text
45222
45223 \begin_layout Plain Layout
45224 \begin_inset ERT
45225 status collapsed
45226
45227 \begin_layout Plain Layout
45228
45229
45230 \backslash
45231 fcolorbox{black}{
45232 \end_layout
45233
45234 \end_inset
45235
45236 Sepia
45237 \begin_inset ERT
45238 status collapsed
45239
45240 \begin_layout Plain Layout
45241
45242 }{
45243 \end_layout
45244
45245 \end_inset
45246
45247
45248 \begin_inset Phantom Phantom
45249 status open
45250
45251 \begin_layout Plain Layout
45252 W
45253 \end_layout
45254
45255 \end_inset
45256
45257
45258 \begin_inset ERT
45259 status collapsed
45260
45261 \begin_layout Plain Layout
45262
45263 }
45264 \end_layout
45265
45266 \end_inset
45267
45268  Sepia
45269 \end_layout
45270
45271 \end_inset
45272 </cell>
45273 <cell alignment="left" valignment="top" usebox="none">
45274 \begin_inset Text
45275
45276 \begin_layout Plain Layout
45277 \begin_inset ERT
45278 status collapsed
45279
45280 \begin_layout Plain Layout
45281
45282
45283 \backslash
45284 fcolorbox{black}{
45285 \end_layout
45286
45287 \end_inset
45288
45289 SkyBlue
45290 \begin_inset ERT
45291 status collapsed
45292
45293 \begin_layout Plain Layout
45294
45295 }{
45296 \end_layout
45297
45298 \end_inset
45299
45300
45301 \begin_inset Phantom Phantom
45302 status open
45303
45304 \begin_layout Plain Layout
45305 W
45306 \end_layout
45307
45308 \end_inset
45309
45310
45311 \begin_inset ERT
45312 status collapsed
45313
45314 \begin_layout Plain Layout
45315
45316 }
45317 \end_layout
45318
45319 \end_inset
45320
45321  SkyBlue
45322 \end_layout
45323
45324 \end_inset
45325 </cell>
45326 <cell alignment="left" valignment="top" usebox="none">
45327 \begin_inset Text
45328
45329 \begin_layout Plain Layout
45330 \begin_inset ERT
45331 status collapsed
45332
45333 \begin_layout Plain Layout
45334
45335
45336 \backslash
45337 fcolorbox{black}{
45338 \end_layout
45339
45340 \end_inset
45341
45342 SpringGreen
45343 \begin_inset ERT
45344 status collapsed
45345
45346 \begin_layout Plain Layout
45347
45348 }{
45349 \end_layout
45350
45351 \end_inset
45352
45353
45354 \begin_inset Phantom Phantom
45355 status open
45356
45357 \begin_layout Plain Layout
45358 W
45359 \end_layout
45360
45361 \end_inset
45362
45363
45364 \begin_inset ERT
45365 status collapsed
45366
45367 \begin_layout Plain Layout
45368
45369 }
45370 \end_layout
45371
45372 \end_inset
45373
45374  SpringGreen
45375 \end_layout
45376
45377 \end_inset
45378 </cell>
45379 </row>
45380 <row>
45381 <cell alignment="left" valignment="top" usebox="none">
45382 \begin_inset Text
45383
45384 \begin_layout Plain Layout
45385 \begin_inset ERT
45386 status collapsed
45387
45388 \begin_layout Plain Layout
45389
45390
45391 \backslash
45392 fcolorbox{black}{
45393 \end_layout
45394
45395 \end_inset
45396
45397 Tan
45398 \begin_inset ERT
45399 status collapsed
45400
45401 \begin_layout Plain Layout
45402
45403 }{
45404 \end_layout
45405
45406 \end_inset
45407
45408
45409 \begin_inset Phantom Phantom
45410 status open
45411
45412 \begin_layout Plain Layout
45413 W
45414 \end_layout
45415
45416 \end_inset
45417
45418
45419 \begin_inset ERT
45420 status collapsed
45421
45422 \begin_layout Plain Layout
45423
45424 }
45425 \end_layout
45426
45427 \end_inset
45428
45429  Tan
45430 \end_layout
45431
45432 \end_inset
45433 </cell>
45434 <cell alignment="left" valignment="top" usebox="none">
45435 \begin_inset Text
45436
45437 \begin_layout Plain Layout
45438 \begin_inset ERT
45439 status collapsed
45440
45441 \begin_layout Plain Layout
45442
45443
45444 \backslash
45445 fcolorbox{black}{
45446 \end_layout
45447
45448 \end_inset
45449
45450 TealBlue
45451 \begin_inset ERT
45452 status collapsed
45453
45454 \begin_layout Plain Layout
45455
45456 }{
45457 \end_layout
45458
45459 \end_inset
45460
45461
45462 \begin_inset Phantom Phantom
45463 status open
45464
45465 \begin_layout Plain Layout
45466 W
45467 \end_layout
45468
45469 \end_inset
45470
45471
45472 \begin_inset ERT
45473 status collapsed
45474
45475 \begin_layout Plain Layout
45476
45477 }
45478 \end_layout
45479
45480 \end_inset
45481
45482  TealBlue
45483 \end_layout
45484
45485 \end_inset
45486 </cell>
45487 <cell alignment="left" valignment="top" usebox="none">
45488 \begin_inset Text
45489
45490 \begin_layout Plain Layout
45491 \begin_inset ERT
45492 status collapsed
45493
45494 \begin_layout Plain Layout
45495
45496
45497 \backslash
45498 fcolorbox{black}{
45499 \end_layout
45500
45501 \end_inset
45502
45503 Thistle
45504 \begin_inset ERT
45505 status collapsed
45506
45507 \begin_layout Plain Layout
45508
45509 }{
45510 \end_layout
45511
45512 \end_inset
45513
45514
45515 \begin_inset Phantom Phantom
45516 status open
45517
45518 \begin_layout Plain Layout
45519 W
45520 \end_layout
45521
45522 \end_inset
45523
45524
45525 \begin_inset ERT
45526 status collapsed
45527
45528 \begin_layout Plain Layout
45529
45530 }
45531 \end_layout
45532
45533 \end_inset
45534
45535  Thistle
45536 \end_layout
45537
45538 \end_inset
45539 </cell>
45540 <cell alignment="left" valignment="top" usebox="none">
45541 \begin_inset Text
45542
45543 \begin_layout Plain Layout
45544 \begin_inset ERT
45545 status collapsed
45546
45547 \begin_layout Plain Layout
45548
45549
45550 \backslash
45551 fcolorbox{black}{
45552 \end_layout
45553
45554 \end_inset
45555
45556 Turquoise
45557 \begin_inset ERT
45558 status collapsed
45559
45560 \begin_layout Plain Layout
45561
45562 }{
45563 \end_layout
45564
45565 \end_inset
45566
45567
45568 \begin_inset Phantom Phantom
45569 status open
45570
45571 \begin_layout Plain Layout
45572 W
45573 \end_layout
45574
45575 \end_inset
45576
45577
45578 \begin_inset ERT
45579 status collapsed
45580
45581 \begin_layout Plain Layout
45582
45583 }
45584 \end_layout
45585
45586 \end_inset
45587
45588  Turquoise
45589 \end_layout
45590
45591 \end_inset
45592 </cell>
45593 </row>
45594 <row>
45595 <cell alignment="left" valignment="top" usebox="none">
45596 \begin_inset Text
45597
45598 \begin_layout Plain Layout
45599 \begin_inset ERT
45600 status collapsed
45601
45602 \begin_layout Plain Layout
45603
45604
45605 \backslash
45606 fcolorbox{black}{
45607 \end_layout
45608
45609 \end_inset
45610
45611 Violet
45612 \begin_inset ERT
45613 status collapsed
45614
45615 \begin_layout Plain Layout
45616
45617 }{
45618 \end_layout
45619
45620 \end_inset
45621
45622
45623 \begin_inset Phantom Phantom
45624 status open
45625
45626 \begin_layout Plain Layout
45627 W
45628 \end_layout
45629
45630 \end_inset
45631
45632
45633 \begin_inset ERT
45634 status collapsed
45635
45636 \begin_layout Plain Layout
45637
45638 }
45639 \end_layout
45640
45641 \end_inset
45642
45643  Violet
45644 \end_layout
45645
45646 \end_inset
45647 </cell>
45648 <cell alignment="left" valignment="top" usebox="none">
45649 \begin_inset Text
45650
45651 \begin_layout Plain Layout
45652 \begin_inset ERT
45653 status collapsed
45654
45655 \begin_layout Plain Layout
45656
45657
45658 \backslash
45659 fcolorbox{black}{
45660 \end_layout
45661
45662 \end_inset
45663
45664 VioletRed
45665 \begin_inset ERT
45666 status collapsed
45667
45668 \begin_layout Plain Layout
45669
45670 }{
45671 \end_layout
45672
45673 \end_inset
45674
45675
45676 \begin_inset Phantom Phantom
45677 status open
45678
45679 \begin_layout Plain Layout
45680 W
45681 \end_layout
45682
45683 \end_inset
45684
45685
45686 \begin_inset ERT
45687 status collapsed
45688
45689 \begin_layout Plain Layout
45690
45691 }
45692 \end_layout
45693
45694 \end_inset
45695
45696  VioletRed
45697 \end_layout
45698
45699 \end_inset
45700 </cell>
45701 <cell alignment="left" valignment="top" usebox="none">
45702 \begin_inset Text
45703
45704 \begin_layout Plain Layout
45705 \begin_inset ERT
45706 status collapsed
45707
45708 \begin_layout Plain Layout
45709
45710
45711 \backslash
45712 fcolorbox{black}{
45713 \end_layout
45714
45715 \end_inset
45716
45717 WildStrawberry
45718 \begin_inset ERT
45719 status collapsed
45720
45721 \begin_layout Plain Layout
45722
45723 }{
45724 \end_layout
45725
45726 \end_inset
45727
45728
45729 \begin_inset Phantom Phantom
45730 status open
45731
45732 \begin_layout Plain Layout
45733 W
45734 \end_layout
45735
45736 \end_inset
45737
45738
45739 \begin_inset ERT
45740 status collapsed
45741
45742 \begin_layout Plain Layout
45743
45744 }
45745 \end_layout
45746
45747 \end_inset
45748
45749  WildStrawberry
45750 \end_layout
45751
45752 \end_inset
45753 </cell>
45754 <cell alignment="left" valignment="top" usebox="none">
45755 \begin_inset Text
45756
45757 \begin_layout Plain Layout
45758 \begin_inset ERT
45759 status collapsed
45760
45761 \begin_layout Plain Layout
45762
45763
45764 \backslash
45765 fcolorbox{black}{
45766 \end_layout
45767
45768 \end_inset
45769
45770 YellowGreen
45771 \begin_inset ERT
45772 status collapsed
45773
45774 \begin_layout Plain Layout
45775
45776 }{
45777 \end_layout
45778
45779 \end_inset
45780
45781
45782 \begin_inset Phantom Phantom
45783 status open
45784
45785 \begin_layout Plain Layout
45786 W
45787 \end_layout
45788
45789 \end_inset
45790
45791
45792 \begin_inset ERT
45793 status collapsed
45794
45795 \begin_layout Plain Layout
45796
45797 }
45798 \end_layout
45799
45800 \end_inset
45801
45802  YellowGreen
45803 \end_layout
45804
45805 \end_inset
45806 </cell>
45807 </row>
45808 <row>
45809 <cell alignment="left" valignment="top" usebox="none">
45810 \begin_inset Text
45811
45812 \begin_layout Plain Layout
45813 \begin_inset ERT
45814 status collapsed
45815
45816 \begin_layout Plain Layout
45817
45818
45819 \backslash
45820 fcolorbox{black}{
45821 \end_layout
45822
45823 \end_inset
45824
45825 YellowOrange
45826 \begin_inset ERT
45827 status collapsed
45828
45829 \begin_layout Plain Layout
45830
45831 }{
45832 \end_layout
45833
45834 \end_inset
45835
45836
45837 \begin_inset Phantom Phantom
45838 status open
45839
45840 \begin_layout Plain Layout
45841 W
45842 \end_layout
45843
45844 \end_inset
45845
45846
45847 \begin_inset ERT
45848 status collapsed
45849
45850 \begin_layout Plain Layout
45851
45852 }
45853 \end_layout
45854
45855 \end_inset
45856
45857  YellowOrange
45858 \end_layout
45859
45860 \end_inset
45861 </cell>
45862 <cell alignment="left" valignment="top" usebox="none">
45863 \begin_inset Text
45864
45865 \begin_layout Plain Layout
45866
45867 \end_layout
45868
45869 \end_inset
45870 </cell>
45871 <cell alignment="left" valignment="top" usebox="none">
45872 \begin_inset Text
45873
45874 \begin_layout Plain Layout
45875
45876 \end_layout
45877
45878 \end_inset
45879 </cell>
45880 <cell alignment="left" valignment="top" usebox="none">
45881 \begin_inset Text
45882
45883 \begin_layout Plain Layout
45884
45885 \end_layout
45886
45887 \end_inset
45888 </cell>
45889 </row>
45890 </lyxtabular>
45891
45892 \end_inset
45893
45894
45895 \end_layout
45896
45897 \begin_layout Chapter
45898 Explication de l' équation
45899 \begin_inset space ~
45900 \end_inset
45901
45902 (
45903 \begin_inset CommandInset ref
45904 LatexCommand ref
45905 reference "eq:Wgn"
45906
45907 \end_inset
45908
45909 )
45910 \begin_inset CommandInset label
45911 LatexCommand label
45912 name "cha:Explication-de-l'Equation"
45913
45914 \end_inset
45915
45916
45917 \end_layout
45918
45919 \begin_layout Standard
45920 La largeur totale de 
45921 \emph on
45922 n
45923 \emph default
45924  cellules de tableau 
45925 \begin_inset Formula $W_{\mathrm{tot\, n}}$
45926 \end_inset
45927
45928  peut être calculée avec
45929 \begin_inset Formula 
45930 \begin{equation}
45931 W_{\mathrm{tot}\, n}=n\cdot(W_{g\, n}+2\cdot\backslash\mbox{tabcolsep})+(n+1)\cdot\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}
45932 \end{equation}
45933
45934 \end_inset
45935
45936
45937 \end_layout
45938
45939 \begin_layout Standard
45940 Où 
45941 \begin_inset Formula $W_{g\, n}$
45942 \end_inset
45943
45944  est la largeur fixe de toutes les cellules.
45945  
45946 \series bold
45947
45948 \backslash
45949 tabcolsep
45950 \series default
45951  est la largeur utilisée par LaTeX entre le texte de la cellule et la bordure,
45952  sa valeur implicite est 6
45953 \begin_inset space \thinspace{}
45954 \end_inset
45955
45956 pt.
45957  
45958 \series bold
45959
45960 \backslash
45961 arrayrulewidth
45962 \series default
45963  est l'épaisseur de la bordure de la cellule, qui est implicitement de 0.4
45964 \begin_inset space \thinspace{}
45965 \end_inset
45966
45967 pt.
45968 \end_layout
45969
45970 \begin_layout Standard
45971 D'après l'équation
45972 \begin_inset space ~
45973 \end_inset
45974
45975
45976 \begin_inset CommandInset ref
45977 LatexCommand eqref
45978 reference "eq:Wtot_n"
45979
45980 \end_inset
45981
45982 , la largeur totale d'une multicolonne, 
45983 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
45984 \end_inset
45985
45986  est
45987 \begin_inset Formula 
45988 \begin{equation}
45989 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2\cdot\backslash\mbox{tabcolsep}+2\cdot\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}
45990 \end{equation}
45991
45992 \end_inset
45993
45994
45995 \end_layout
45996
45997 \begin_layout Standard
45998 En posant que les équations 
45999 \begin_inset space ~
46000 \end_inset
46001
46002
46003 \begin_inset CommandInset ref
46004 LatexCommand eqref
46005 reference "eq:Wtot_n"
46006
46007 \end_inset
46008
46009  et 
46010 \begin_inset CommandInset ref
46011 LatexCommand eqref
46012 reference "eq:Wtot_mult"
46013
46014 \end_inset
46015
46016  sont égales, on peut calculer la largeur nécessaire 
46017 \begin_inset Formula $W_{g\, n}$
46018 \end_inset
46019
46020  quand 
46021 \emph on
46022 n
46023 \emph default
46024  colonnes sont couvertes, de façon à ce que chaque colonne ait une largeur
46025  de 
46026 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
46027 \end_inset
46028
46029 :
46030 \begin_inset Formula 
46031 \begin{equation}
46032 W_{g\, n}=\frac{W_{g\,\mathrm{mult}}+(1-n)\cdot(2\cdot\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth})}{n}
46033 \end{equation}
46034
46035 \end_inset
46036
46037
46038 \end_layout
46039
46040 \begin_layout Bibliography
46041 \begin_inset CommandInset bibitem
46042 LatexCommand bibitem
46043 key "latexcompanion"
46044
46045 \end_inset
46046
46047 Frank Mittelbach and Michel Goossens: 
46048 \emph on
46049 The LaTeX Companion Second Edition.
46050
46051 \emph default
46052  Addison-Wesley, 2004
46053 \end_layout
46054
46055 \begin_layout Bibliography
46056 \begin_inset CommandInset bibitem
46057 LatexCommand bibitem
46058 key "latexguide"
46059
46060 \end_inset
46061
46062 Helmut Kopka and Patrick W.
46063  Daly: 
46064 \emph on
46065 A Guide to LaTeX Fourth Edition.
46066
46067 \emph default
46068  Addison-Wesley, 2003
46069 \end_layout
46070
46071 \begin_layout Bibliography
46072 \begin_inset CommandInset bibitem
46073 LatexCommand bibitem
46074 key "latexbook"
46075
46076 \end_inset
46077
46078 Leslie Lamport: 
46079 \emph on
46080 LaTeX: A Document Preparation System.
46081
46082 \emph default
46083  Addison-Wesley, second edition, 1994
46084 \end_layout
46085
46086 \begin_layout Bibliography
46087 \begin_inset CommandInset bibitem
46088 LatexCommand bibitem
46089 key "arydshln"
46090
46091 \end_inset
46092
46093 Documentation du paquetage LaTeX
46094 \series bold
46095  
46096 \begin_inset CommandInset href
46097 LatexCommand href
46098 name "arydshln"
46099 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/arydshln/arydshln.pdf"
46100
46101 \end_inset
46102
46103
46104 \series default
46105
46106 \begin_inset Index idx
46107 status collapsed
46108
46109 \begin_layout Plain Layout
46110 Paquetages LaTeX ! arydshln
46111 \end_layout
46112
46113 \end_inset
46114
46115
46116 \end_layout
46117
46118 \begin_layout Bibliography
46119 \begin_inset CommandInset bibitem
46120 LatexCommand bibitem
46121 key "booktabs"
46122
46123 \end_inset
46124
46125 Documentation du paquetage LaTeX 
46126 \series bold
46127
46128 \begin_inset CommandInset href
46129 LatexCommand href
46130 name "booktabs"
46131 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf"
46132
46133 \end_inset
46134
46135
46136 \series default
46137
46138 \begin_inset Index idx
46139 status collapsed
46140
46141 \begin_layout Plain Layout
46142 Paquetages LaTeX ! booktabs
46143 \end_layout
46144
46145 \end_inset
46146
46147
46148 \end_layout
46149
46150 \begin_layout Bibliography
46151 \begin_inset CommandInset bibitem
46152 LatexCommand bibitem
46153 key "caption"
46154
46155 \end_inset
46156
46157 Documentation du paquetage LaTeX 
46158 \series bold
46159
46160 \begin_inset CommandInset href
46161 LatexCommand href
46162 name "caption"
46163 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf"
46164
46165 \end_inset
46166
46167
46168 \series default
46169
46170 \begin_inset Index idx
46171 status collapsed
46172
46173 \begin_layout Plain Layout
46174 Paquetages LaTeX ! caption
46175 \end_layout
46176
46177 \end_inset
46178
46179
46180 \end_layout
46181
46182 \begin_layout Bibliography
46183 \begin_inset CommandInset bibitem
46184 LatexCommand bibitem
46185 key "diagbox"
46186
46187 \end_inset
46188
46189 Documentation du paquetage LaTeX 
46190 \series bold
46191
46192 \begin_inset CommandInset href
46193 LatexCommand href
46194 name "diagbox"
46195 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/diagbox/diagbox.pdf"
46196
46197 \end_inset
46198
46199
46200 \series default
46201
46202 \begin_inset Index idx
46203 status collapsed
46204
46205 \begin_layout Plain Layout
46206 Paquetages LaTeX ! diagbox
46207 \end_layout
46208
46209 \end_inset
46210
46211
46212 \end_layout
46213
46214 \begin_layout Bibliography
46215 \begin_inset CommandInset bibitem
46216 LatexCommand bibitem
46217 key "endfloat"
46218
46219 \end_inset
46220
46221 Documentation du paquetage LaTeX 
46222 \series bold
46223
46224 \begin_inset CommandInset href
46225 LatexCommand href
46226 name "endfloat"
46227 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf"
46228
46229 \end_inset
46230
46231
46232 \series default
46233
46234 \begin_inset Index idx
46235 status collapsed
46236
46237 \begin_layout Plain Layout
46238 Paquetages LaTeX ! endfloat
46239 \end_layout
46240
46241 \end_inset
46242
46243
46244 \end_layout
46245
46246 \begin_layout Bibliography
46247 \begin_inset CommandInset bibitem
46248 LatexCommand bibitem
46249 key "footmisc"
46250
46251 \end_inset
46252
46253 Documentation du paquetage LaTeX 
46254 \series bold
46255
46256 \begin_inset CommandInset href
46257 LatexCommand href
46258 name "footmisc"
46259 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf"
46260
46261 \end_inset
46262
46263
46264 \series default
46265
46266 \begin_inset Index idx
46267 status collapsed
46268
46269 \begin_layout Plain Layout
46270 Paquetages LaTeX ! footmisc
46271 \end_layout
46272
46273 \end_inset
46274
46275
46276 \end_layout
46277
46278 \begin_layout Bibliography
46279 \begin_inset CommandInset bibitem
46280 LatexCommand bibitem
46281 key "hypcap"
46282
46283 \end_inset
46284
46285 Documentation du paquetage LaTeX 
46286 \series bold
46287
46288 \begin_inset CommandInset href
46289 LatexCommand href
46290 name "hypcap"
46291 target "http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
46292
46293 \end_inset
46294
46295
46296 \series default
46297
46298 \begin_inset Index idx
46299 status collapsed
46300
46301 \begin_layout Plain Layout
46302 Paquetages LaTeX ! hyperref
46303 \end_layout
46304
46305 \end_inset
46306
46307
46308 \end_layout
46309
46310 \begin_layout Bibliography
46311 \begin_inset CommandInset bibitem
46312 LatexCommand bibitem
46313 key "hyperref"
46314
46315 \end_inset
46316
46317 Documentation du paquetage LaTeX 
46318 \series bold
46319
46320 \begin_inset CommandInset href
46321 LatexCommand href
46322 name "hyperref"
46323 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf"
46324
46325 \end_inset
46326
46327
46328 \series default
46329
46330 \begin_inset Index idx
46331 status collapsed
46332
46333 \begin_layout Plain Layout
46334 Paquetages LaTeX ! hyperref
46335 \end_layout
46336
46337 \end_inset
46338
46339
46340 \end_layout
46341
46342 \begin_layout Bibliography
46343 \begin_inset CommandInset bibitem
46344 LatexCommand bibitem
46345 key "KOMA-Script"
46346
46347 \end_inset
46348
46349 Documentation du paquetage LaTeX 
46350 \series bold
46351
46352 \begin_inset CommandInset href
46353 LatexCommand href
46354 name "KOMA-Script"
46355 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.pdf"
46356
46357 \end_inset
46358
46359
46360 \series default
46361
46362 \begin_inset Index idx
46363 status collapsed
46364
46365 \begin_layout Plain Layout
46366 Paquetages LaTeX ! KOMA-Script
46367 \end_layout
46368
46369 \end_inset
46370
46371
46372 \end_layout
46373
46374 \begin_layout Bibliography
46375 \begin_inset CommandInset bibitem
46376 LatexCommand bibitem
46377 key "lettrine"
46378
46379 \end_inset
46380
46381 Documentation du paquetage LaTeX 
46382 \series bold
46383
46384 \begin_inset CommandInset href
46385 LatexCommand href
46386 name "lettrine"
46387 target "http://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
46388
46389 \end_inset
46390
46391
46392 \series default
46393  et un 
46394 \begin_inset CommandInset href
46395 LatexCommand href
46396 name "exemple"
46397 target "http://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/demo.pdf"
46398
46399 \end_inset
46400
46401
46402 \begin_inset Index idx
46403 status collapsed
46404
46405 \begin_layout Plain Layout
46406 Paquetages LaTeX ! lettrine
46407 \end_layout
46408
46409 \end_inset
46410
46411
46412 \end_layout
46413
46414 \begin_layout Bibliography
46415 \begin_inset CommandInset bibitem
46416 LatexCommand bibitem
46417 key "listings"
46418
46419 \end_inset
46420
46421 Documentation du paquetage LaTeX 
46422 \series bold
46423
46424 \begin_inset CommandInset href
46425 LatexCommand href
46426 name "listings"
46427 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf"
46428
46429 \end_inset
46430
46431
46432 \series default
46433
46434 \begin_inset Index idx
46435 status collapsed
46436
46437 \begin_layout Plain Layout
46438 Paquetages LaTeX ! listings
46439 \end_layout
46440
46441 \end_inset
46442
46443
46444 \end_layout
46445
46446 \begin_layout Bibliography
46447 \begin_inset CommandInset bibitem
46448 LatexCommand bibitem
46449 key "marginnote"
46450
46451 \end_inset
46452
46453 Documentation du paquetage LaTeX 
46454 \series bold
46455
46456 \begin_inset CommandInset href
46457 LatexCommand href
46458 name "marginnote"
46459 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.pdf"
46460
46461 \end_inset
46462
46463
46464 \series default
46465
46466 \begin_inset Index idx
46467 status collapsed
46468
46469 \begin_layout Plain Layout
46470 Paquetages LaTeX ! marginnote
46471 \end_layout
46472
46473 \end_inset
46474
46475
46476 \end_layout
46477
46478 \begin_layout Bibliography
46479 \begin_inset CommandInset bibitem
46480 LatexCommand bibitem
46481 key "pdfpages"
46482
46483 \end_inset
46484
46485 Documentation du paquetage LaTeX 
46486 \series bold
46487
46488 \begin_inset CommandInset href
46489 LatexCommand href
46490 name "pdfpages"
46491 target "http://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
46492
46493 \end_inset
46494
46495
46496 \series default
46497
46498 \begin_inset Index idx
46499 status collapsed
46500
46501 \begin_layout Plain Layout
46502 Paquetages LaTeX ! pdfpages
46503 \end_layout
46504
46505 \end_inset
46506
46507
46508 \end_layout
46509
46510 \begin_layout Bibliography
46511 \begin_inset CommandInset bibitem
46512 LatexCommand bibitem
46513 key "prettyref"
46514
46515 \end_inset
46516
46517 Documentation du paquetage LaTeX
46518 \series bold
46519  
46520 \begin_inset CommandInset href
46521 LatexCommand href
46522 name "prettyref"
46523 target "http://www.ctan.org/tex-archive/macros/latex/contrib/prettyref/prettyref.pdf"
46524
46525 \end_inset
46526
46527
46528 \series default
46529
46530 \begin_inset Index idx
46531 status collapsed
46532
46533 \begin_layout Plain Layout
46534 Paquetages LaTeX ! prettyref
46535 \end_layout
46536
46537 \end_inset
46538
46539
46540 \end_layout
46541
46542 \begin_layout Bibliography
46543 \begin_inset CommandInset bibitem
46544 LatexCommand bibitem
46545 key "pstricks"
46546
46547 \end_inset
46548
46549 Page Web du paquetage LaTeX 
46550 \series bold
46551
46552 \begin_inset CommandInset href
46553 LatexCommand href
46554 name "PSTricks"
46555 target "http://tug.org/PSTricks/"
46556
46557 \end_inset
46558
46559
46560 \series default
46561
46562 \begin_inset Index idx
46563 status collapsed
46564
46565 \begin_layout Plain Layout
46566 Paquetages LaTeX ! PSTricks
46567 \end_layout
46568
46569 \end_inset
46570
46571
46572 \end_layout
46573
46574 \begin_layout Bibliography
46575 \begin_inset CommandInset bibitem
46576 LatexCommand bibitem
46577 key "refstyle"
46578
46579 \end_inset
46580
46581 Documentation du paquetage LaTeX
46582 \series bold
46583  
46584 \begin_inset CommandInset href
46585 LatexCommand href
46586 name "refstyle"
46587 target "http://mirrors.ctan.org/macros/latex/contrib/refstyle/refstyle.pdf"
46588
46589 \end_inset
46590
46591
46592 \series default
46593
46594 \begin_inset Index idx
46595 status collapsed
46596
46597 \begin_layout Plain Layout
46598 Paquetages LaTeX ! refstyle
46599 \end_layout
46600
46601 \end_inset
46602
46603
46604 \end_layout
46605
46606 \begin_layout Bibliography
46607 \begin_inset CommandInset bibitem
46608 LatexCommand bibitem
46609 key "sidecap"
46610
46611 \end_inset
46612
46613 Documentation du paquetage LaTeX 
46614 \series bold
46615
46616 \begin_inset CommandInset href
46617 LatexCommand href
46618 name "sidecap"
46619 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf"
46620
46621 \end_inset
46622
46623
46624 \series default
46625
46626 \begin_inset Index idx
46627 status collapsed
46628
46629 \begin_layout Plain Layout
46630 Paquetages LaTeX ! sidecap
46631 \end_layout
46632
46633 \end_inset
46634
46635
46636 \end_layout
46637
46638 \begin_layout Bibliography
46639 \begin_inset CommandInset bibitem
46640 LatexCommand bibitem
46641 key "NewInLyX20"
46642
46643 \end_inset
46644
46645
46646 \begin_inset CommandInset href
46647 LatexCommand href
46648 name "Page Wiki"
46649 target "http://wiki.lyx.org/LyX/NewInLyX20"
46650
46651 \end_inset
46652
46653  au sujet des nouveautés de 
46654 \family sans
46655 LyX 2.0
46656 \family default
46657 .
46658 \end_layout
46659
46660 \begin_layout Standard
46661 \begin_inset CommandInset index_print
46662 LatexCommand printindex
46663 type "idx"
46664
46665 \end_inset
46666
46667
46668 \end_layout
46669
46670 \end_body
46671 \end_document