📝 Code source du fichier LaTeX

📄 21matj2me2-exob.tex

↩ Retour 💾 Fichier tex 📦 Sur la Forge

% !TeX TXS-program:compile = txs:///pdflatex

\documentclass[margin=5mm]{standalone}
\usepackage[nonpgfplots]{tkz-grapheur}

\begin{document}

\begin{GraphiqueTikz}[x=1.25cm,y=1.25cm,Xmin=-2,Xmax=4,Ymin=-2,Ymax=4]
	%axes et grille
	\TracerAxesGrilles[Grille=false,Elargir=0mm,Police=\small,Origine]{-1,1,2,3}{-1,1,2,3}
	%tracés
	\TracerCourbe[Couleur=red]{(-x-1)*exp(-x)}
	%textes
	\draw[line width=1.25pt,fill=white] (0.5,1.75) rectangle (3.5,2.75) node[midway,font=\scriptsize] {\parbox{3.5cm}{Courbe représentant la \textbf{dérivée} $f'$ de la fonction $f$.}} ;
\end{GraphiqueTikz}

\end{document}