From d38126dfe4342c26de7f8944c6235d8c9f0e293b Mon Sep 17 00:00:00 2001 From: Jeff LANCE Date: Sat, 28 May 2016 23:33:38 +0200 Subject: [PATCH] clean code and add notes. --- shortcuts/shortcuts.sty | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/shortcuts/shortcuts.sty b/shortcuts/shortcuts.sty index a97a996..7ff2bb5 100644 --- a/shortcuts/shortcuts.sty +++ b/shortcuts/shortcuts.sty @@ -4,6 +4,9 @@ %%% Version : 1.0 %%% Date : 10/05/16 %%% Auteur : Jeff LANCE +%%% Notes : Cette extension peut demander l'ajout de certains packages. +%%% Il est conseillé de l'appeler dans un(e) classe/(package) appelant +%%% elle(lui)-même ces packages. %%% %%% @@ -13,7 +16,7 @@ -%-- Environments --% +%-- Environments % itemize \newcommand{\bi}{\begin{itemize}} \newcommand{\ei}{\end{itemize}} @@ -25,16 +28,21 @@ % questions \newcommand{\bq}{\begin{questions}} \newcommand{\eq}{\end{questions}} +%--% -%-- Texte --% + +%-- Texte % texte gras \newcommand{\tb}[1]{\textbf{#1}} % vecteurs i et j +% utilise la syntax du package xparse non déclaré dans le préambule de ce +% fichier. \NewDocumentCommand \veci { } { \vec{\imath} } \NewDocumentCommand \vecj { } { \vec{\jmath} } +%--%