- change the name of the "proof" environment of the amsthm package which displays "Démonstration" to the name "preuve" written in bold!
- enlarge the width of the part that contains the title in the image below!

here is the latex code :
Code: Select all
\documentclass[12pt,a4paper]{report}
\usepackage{amsfonts}
\usepackage{fourier}
\usepackage{amssymb}
\usepackage[francais]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsthm}
\renewcommand\qedsymbol{$\blacksquare$}
%==============================================================
\usepackage[usenames,dvipsnames]{color}
\usepackage[svgnames,dvipsnames]{xcolor}
%===============================================================
\usepackage{tcolorbox}
\tcbuselibrary{breakable}
% ===== Environment "théorème" ======================
\newtcolorbox[auto counter,number within=chapter]{thm}[1][]{%
colback=green!10!white,colframe=green!20!white,fonttitle=\bfseries,coltitle=black,
toprule=3pt,
leftrule=2pt,
rightrule=2pt,
titlerule=0pt,
title=Th\'eor\'eme.~\thetcbcounter,#1}
%======== Environment "Remarque " ====================
\newtcolorbox{rmk}[1][]{
breakable,
title=Remarque,
colback=white,
colbacktitle=green!20!white,
coltitle=Black,
fonttitle=\bfseries,
bottomrule=0pt,
toprule=0pt,
leftrule=2pt,
rightrule=0pt,
titlerule=0pt,
arc=0pt,
outer arc=0pt,
colframe=red }
%================================================================
\begin{document}
\chapter{}
\section{La fonction Gamma}
\begin{thm}
Pour tout $x\in \mathbb{R}^{+*}$
\begin{equation}
\Gamma(x)= \lim_{k\rightarrow +\infty} \frac{k^{x}k!}{x(x+1)\ldots(x+k)}.
\end{equation}
\end{thm}
\begin{proof}
on consid\'ere .... \\ par suite \\ d'o\`u le r\'esultat.
\end{proof}
\begin{rmk}
Le th\'eor\'eme pr\'ec\`edant est due aux deux math\'ematiciens Euler et Gauss.
\end{rmk}
\end{document}