diff --git a/logiciels/latex/astuces.tml b/logiciels/latex/astuces.tml index dd4c644..6abf121 100644 --- a/logiciels/latex/astuces.tml +++ b/logiciels/latex/astuces.tml @@ -117,9 +117,9 @@ couper le mot <table class="tableau"> <tr> -<th>Commande</th> -<th>Fonction</th> -<th>Comment l'afficher</th> +<td>Commande</td> +<td>Fonction</td> +<td>Comment l'afficher</td> </tr> <tr> diff --git a/logiciels/latex/heading.jpg b/logiciels/latex/heading.jpg new file mode 100644 index 0000000..ebded99 Binary files /dev/null and b/logiciels/latex/heading.jpg differ diff --git a/logiciels/latex/latex.tml b/logiciels/latex/latex.tml index 5d1fcf4..eeda9a5 100644 --- a/logiciels/latex/latex.tml +++ b/logiciels/latex/latex.tml @@ -28,14 +28,14 @@ par mail... </p> <table class="tableau"> <tr> -<th>Fonction</th> -<th>Commande</th> -<th>Exemple</th> -<th>Astuces</th> +<td>Fonction</td> +<td>Commande</td> +<td>Exemple</td> +<td>Astuces</td> </tr> <tr> -<th>�crire</th> +<td>�crire</td> <td><code>�diteur <em>fichier.tex</em></code></td> <td><code>nano bla.tex</code></td> <td>Ne pas oublier de sauvegarder avant de compiler�! Sinon, les @@ -43,7 +43,7 @@ par mail... </p> </tr> <tr> -<th>Compiler</th> +<td>Compiler</td> <td><code>latex <em>fichier.tex</em></code></td> <td><code>latex bla.tex</code></td> <td>Plut�t que de retaper � chaque fois la @@ -52,7 +52,7 @@ commande, utilisez les fl </tr> <tr> -<th>R�sultat</th> +<td>R�sultat</td> <td><code>xdvi <em>fichier.dvi</em></code></td> <td><code>xdvi bla.dvi</code></td> <td>Mettez un <code>&</code> � la fin de la ligne pour garder la @@ -62,7 +62,7 @@ pour remettre </tr> <tr> -<th>Imprimer</th> +<td>Imprimer</td> <td><code>dvips <em>fichier.ps</em></code></td> <td><code>dvips bla.dvi</code></td> <td>V�rifier que personne n'est en train d'imprimer, avec la commande diff --git a/logiciels/latex/letter_skel.tex b/logiciels/latex/letter_skel.tex new file mode 100644 index 0000000..5489b1c --- /dev/null +++ b/logiciels/latex/letter_skel.tex @@ -0,0 +1,19 @@ +\documentclass[11pt]{letter} + + \name{}% Nom de l'exp�diteur + \address{}% Adresse de l'exp�diteur + \signature{}% Signature de l'exp�diteur + \date{} + + \begin{document} + \begin{letter}{}% Nom du destinataire + \opening{}% Formule de salutation : cher monsieur, etc. + +% Corps de la lettre + + \closing{}% Formule de politesse : veuillez agr�er, etc. + \ps{}% Post-scriptum + \cc{}% Autres destinataires de la lettre + \encl{}% Pi�ces jointes + \end{letter} + \end{document}