Feat: ajout environnement definition

This commit is contained in:
Bertrand Benjamin 2020-12-03 14:01:27 +01:00
parent ad8d413ffc
commit 322a0aa936
1 changed files with 17 additions and 3 deletions

View File

@ -351,10 +351,24 @@
}}
% Environnements théoreme, définition ...
\newenvironment{encadre}[1]
{
\begin{bclogo}[barre=none, arrondi=0.1, logo=]{#1}
}{
\end{bclogo}
}
\newcounter{doc}
\newenvironment{doc}[1]
{\refstepcounter{doc}
\begin{bclogo}[barre=none, arrondi=0.1, logo=]{Document \thedoc: #1}
}{
\end{bclogo}
\begin{encadre}{Document \thedoc: #1}
}{
\end{encadre}
}
\newenvironment{definition}
{
\begin{encadre}{Définition}
}{
\end{encadre}
}