latex-homework/algo/algo.sty

37 lines
687 B
TeX

%%%
%%%
%%% Extensions : algo.sty
%%% Version : 1.0
%%% Date : 01/01/17
%%%
%%% Auteur : Jeff LANCE
%%%
%%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{algo}[2017/01/01 Ajout d'environnement au package
algorithmicx, v1.0]
%-- extensions
% PERSONNELLES
% commun: contient des définitions et extensions de base pour tout.
% \RequirePackage{commun}
% ALGORITHMIE
\RequirePackage{algpseudocode,algorithm,algorithmicx}
%-- %
% AlgoBox
\NewDocumentEnvironment{code}{ G{algobox} }{%begin
\algnewcommand{\variables}{\State\textbf{VARIABLES}}
\algblock[algorithme]{DEBUT_ALGORITHME}{FIN_ALGORITHME}
\begin{algorithmic}
}{%end
\end{algorithmic}
}