From 03cd9f4ba38a70ecc4b3b3d2a84588a5b8369687 Mon Sep 17 00:00:00 2001 From: Jeff LANCE Date: Wed, 29 Mar 2017 22:23:16 +0200 Subject: [PATCH] Redirect all standard previously defined environments to their starred version as they don't display numbering. --- cours/cours_prof.cls | 93 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/cours/cours_prof.cls b/cours/cours_prof.cls index ab956ca..164f5ba 100644 --- a/cours/cours_prof.cls +++ b/cours/cours_prof.cls @@ -401,6 +401,99 @@ \mdtheorem[style=todo, theoremseparator={ -}, theoremspace={}]{exo}{Exercice} \mdtheorem[style=todo, theoremseparator={ -}, theoremspace={}]{app}{Application} \mdtheorem[style=method, theoremseparator={ -}, theoremspace={}]{met}{Méthode} + +% Redirect all standard previously defined environments to their starred version +% as they don't display numbering. +\RenewDocumentEnvironment{déf}{ o } {%begin + \IfNoValueTF {#1} { + \begin{déf*} + }{ + \begin{déf*}[#1] + } +}{%end + \end{déf*} +} + +\RenewDocumentEnvironment{thm}{ o } {%begin + \IfNoValueTF {#1} { + \begin{thm*} + }{ + \begin{thm*}[#1] + } +}{%end + \end{thm*} +} + +\RenewDocumentEnvironment{ppt}{ o } {%begin + \IfNoValueTF {#1} { + \begin{ppt*} + }{ + \begin{ppt*}[#1] + } +}{%end + \end{ppt*} +} + +\RenewDocumentEnvironment{exe}{ o } {%begin + \IfNoValueTF {#1} { + \begin{exe*} + }{ + \begin{exe*}[#1] + } +}{%end + \end{exe*} +} + +\RenewDocumentEnvironment{qte}{ o } {%begin + \IfNoValueTF {#1} { + \begin{qte*} + }{ + \begin{qte*}[#1] + } +}{%end + \end{qte*} +} + +\RenewDocumentEnvironment{rmq}{ o } {%begin + \IfNoValueTF {#1} { + \begin{rmq*} + }{ + \begin{rmq*}[#1] + } +}{%end + \end{rmq*} +} + +\RenewDocumentEnvironment{voc}{ o } {%begin + \IfNoValueTF {#1} { + \begin{voc*} + }{ + \begin{voc*}[#1] + } +}{%end + \end{voc*} +} + +\RenewDocumentEnvironment{app}{ o } {%begin + \IfNoValueTF {#1} { + \begin{app*} + }{ + \begin{app*}[#1] + } +}{%end + \end{app*} +} + +\RenewDocumentEnvironment{met}{ o } {%begin + \IfNoValueTF {#1} { + \begin{met*} + }{ + \begin{met*}[#1] + } +}{%end + \end{met*} +} + %--%