|
Posté par ffpower
Il te faudras du courage pour tout taper en tex..
Pour demarrer un document,a priori tu fais \documentclasse{article} \begin{document} \end{document} Et t écris entre le begin et le end Sinon je conseille Led,car quand tu compile ca ouvre pas une nouvelle fenetre^^(et ya 2 3 ptits trucs sympa) |
\documentclass[a4paper,10pt]{book} \usepackage[utf8]{inputenc} \usepackage{fontenc} \usepackage{amsfonts} \usepackage{amsmath} \usepackage{amssymb} \usepackage{amsthm} \usepackage[french]{babel} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{color} \usepackage{enumerate} \selectlanguage{francais} \setlength{\paperwidth}{21cm} \setlength{\paperheight}{29.7cm} \setlength{\evensidemargin}{0cm} \setlength{\oddsidemargin}{0cm} \setlength{\topmargin}{-2.5cm} \setlength{\headsep}{0.7cm} \setlength{\headheight}{1cm} \setlength{\textheight}{25cm} \setlength{\textwidth}{17cm} \author{Said Belmehdi \\ Rédigé en \LaTeX \, par Clément Boulonne} \title{\textsc{M210 : Calcul scientifique}} \date{2ème Année - 2ème Semestre \\ 2007-2008} \theoremstyle{plain}% default \newtheorem{thm}{Theorème}[section] \newtheorem{lem}[thm]{Lemme} \newtheorem{prop}[thm]{Proposition} \newtheorem*{cor}{Corollaire} \newtheorem{propr}[thm]{Propriété} \newtheorem{prob}{Problème}[section] \newtheorem*{gen}{\textbf{\underline{Généralisatio n}}} \theoremstyle{definition} \newtheorem{defn}{Définition}[section] \newtheorem{conj}{Conjecture}[section] \newtheorem{exmp}{Exemple}[section] \newtheorem{cexmp}{Contre-Exemple}[section] \newtheorem{app}{Application}[section] \newtheorem{exo}{Exercice}[section] \theoremstyle{remark} \newtheorem*{rap}{Rappel} \newtheorem*{att}{\textbf{Attention :}} \newtheorem*{rem}{Remarque} \newtheorem*{csq}{Conséquence} \newtheorem*{nota}{Notation} \newtheorem*{dem}{\textsc{Démonstration}} \newtheorem*{gener}{\textbf{\underline{Généralisat ion}}} \begin{document} ... \end{document}
-