[latexrefman-commits] [SCM] latexrefman updated: r771 - trunk
vincentb1 at gnu.org.ua
vincentb1 at gnu.org.ua
Sun Mar 29 16:00:17 CEST 2020
Author: vincentb1
Date: 2020-03-29 17:00:17 +0300 (Sun, 29 Mar 2020)
New Revision: 771
Modified:
trunk/latex2e-fr.texi
Log:
[fr] ?\194?\171?\194?\160Table of contents etc.?\194?\160?\194?\187, progress translation.
* latex2e-fr.texi (Table of contents etc.): Make some work to
align translation on [en], still some translation work to be
completed.
Modified: trunk/latex2e-fr.texi
===================================================================
--- trunk/latex2e-fr.texi 2020-03-29 13:56:01 UTC (rev 770)
+++ trunk/latex2e-fr.texi 2020-03-29 14:00:17 UTC (rev 771)
@@ -12622,25 +12622,140 @@
@node Table of contents etc.
- at section Tables des matières
+ at section Table des matières etc.
@cindex table des matière, création
@findex \tableofcontents
@findex .toc, @r{fichier}
-On produit une table des matières avec la commande
- at code{\tableofcontents}. Placez la commande à l'endroit même où vous
-voulez que la table des matière apparaisse ; @LaTeX{} fera le reste pour
-vous. Une seconde compilation est nécessaire pour qu'un fichier
- at file{.toc} ait été produit à la précédente.
+ at findex \listoffigures
+ at findex \listoftables
+ at findex .lof @r{fichier}
+ at findex .lot @r{fichier}
+Synopsis, l'un parmi ceux qui suivent :
+
+ at example
+\tableofcontents
+\listoffigures
+\listoftables
+ at end example
+
+Produit une table des matières, ou une liste des figures, ou une listes
+des tableaux. Placez la commande à l'endroit même où vous voulez que la
+table ou liste apparaisse. Vous n'avez pas à la renseigner ; par
+exemple, typiquement les entrées de la table des matières sont
+automatiquement générées à partir des commandes de rubricate
+ at code{\chapter}, etc.
+
+ at c xxx revoir la traduction
+ at c xxx ajouter que les fichier .lot et .lof sont renseignés par la commande \caption
+ at ignore
+This example illustrates the first command, @code{\tableofcontents}.
+ at LaTeX{} will produce a table of contents on the book's first page.
+
+ at example
+\documentclass@{book@}
+% \setcounter@{tocdepth@}@{1@}
+\begin@{document@}
+\tableofcontents\newpage
+ ...
+\chapter@{...@}
+ ...
+\section@{...@}
+ ...
+\subsection@{...@}
+ ...
+\end@{document@}
+ at end example
+
+ at noindent
+Uncommenting the second line would cause that table to contain chapter
+and section listings but not subsection listings, because the
+ at code{\section} command has level at tie{}1. @xref{Sectioning} for level
+numbers of the sectioning units. For more on the @code{tocdepth}
+ at pxref{Sectioning/tocdepth}.
+
+Another example of the use of @code{\tableofcontents} is in @ref{Larger
+book template}.
+
+If you want a page break after the table of contents, write a
+ at code{\newpage} command after the @code{\tableofcontents} command, as
+above.
+
+To make the table of contents @LaTeX{} stores the information in an
+auxiliary file named @file{@var{root-file}.toc} (@pxref{Splitting the
+input}). For example, this @LaTeX{} file @file{test.tex}
+
+ at example
+\documentclass@{article@}
+\begin@{document@}
+\tableofcontents\newpage
+\section@{First section@}
+\subsection@{First subsection@}
+ ...
+ at end example
+
+ at noindent
+writes the following line to @file{test.toc}.
+
+ at example
+\contentsline @{section@}@{\numberline @{1@}First section@}@{2@}
+\contentsline @{subsection@}@{\numberline @{1.1@}First subsection@}@{2@}
+ at end example
+
+ at noindent
+The @code{section} or @code{subsection} is the sectioning unit. The
+hook @code{\numberline} lets you to change how the information appears
+in the table of contents. Of its two arguments, @code{1} or @code{1.1}
+is the sectioning unit number and @code{First section} or @code{First
+subsection} is the title. Finally, @code{2} is the page number on which
+the sectioning units start.
+
+One consequence of this auxiliary file storage strategy is that to get the
+contents page correct you must run @LaTeX{} twice, once to store the
+information and once to get it. In particular, the first time that you
+run @LaTeX{} on a new document, the table of contents page will be empty
+except for its @samp{Contents} header. Just run it again.
+
+The commands @code{\listoffigures} and @code{\listoftables} produce a
+list of figures and a list of tables. They work the same way as the
+contents commands; for instance, these work with information stored in
+ at file{.lof} and @file{.lot} files.
+
+ at PkgIndex{babel}
+ at PkgIndex{polyglossia}
+To change the header for the table of contents page do something like
+the first line here.
+
+ at example
+\renewcommand@{\contentsname@}@{Table of contents@}
+\renewcommand@{\listfigurename@}@{Plots@}
+\renewcommand@{\listtablename@}@{Tables@}
+ at end example
+
+ at noindent
+Similarly, the other two lines will do the other two.
+Internationalization packages such as @file{babel} or @file{polyglossia}
+will change the headers depending on the chosen base language.
+
+ at PkgIndex{tocloft}
+ at PkgIndex{tocbibbind}
+CTAN has many packages for the table of contents and lists of figures
+and tables. One convenient one for adjusting some aspects of the
+default, such as spacing, is @file{tocloft}. And, @file{tocbibbind}
+will automatically add the bibliography, index, etc. to the table of
+contents.
+ at end ignore
+
+Une seconde compilation est nécessaire pour qu'un fichier @file{.toc}
+ait été produit à la précédente.
+
La commande @code{\tableofcontents} produit un titre, mais il ne produit
pas automatiquement un début de nouvelle page. Si vous voulez une
nouvelle page après la table des matières, mettez une commande
@code{\newpage} après la commande @code{\tableofcontents}.
- at findex \listoffigures
- at findex \listoftables
Les commandes analogues @code{\listoffigures} et @code{\listoftables}
produisent respectivement une liste des figures et une listes des
tableaux. Le fonctionnement est exactement le même que pour la table des matières.
More information about the latexrefman-commits
mailing list.