Les packages
Définition : Packages
Ce sont des outils permettant d'étendre le langage et d'ajouter des fonctionnalités.
Méthode : Utilisation
Pour insérer un package il faut utiliser la balise \usepackage[options]{nom du package}.
Exemple : Exemple de document
CTRL+C pour copier, CTRL+V pour coller
1
\documentclass[a4paper]{report}
2
3
\usepackage[francais]{babel} % adapt the document typography to the language
4
\usepackage[T1]{fontenc} % authorize all the keyboard characters
5
\usepackage[utf8]{inputenc} % authorize the accented characters
6
\usepackage{amsmath} % insertion of mathematical formulas
7
\usepackage{graphicx} % insertion of illustrations
8
9
\begin{document}
10
\end{document}
\documentclass[a4paper]{report} \usepackage[francais]{babel} % adapt the document typography to the language \usepackage[T1]{fontenc} % authorize all the keyboard characters \usepackage[utf8]{inputenc} % authorize the accented characters \usepackage{amsmath} % insertion of mathematical formulas \usepackage{graphicx} % insertion of illustrations \begin{document} \end{document}