2021-10-06 20:35:06 +02:00
|
|
|
__HEADER__(Easy aliasing for math style commands)
|
|
|
|
|
2021-10-07 10:06:23 +02:00
|
|
|
\RequirePackage{xkeyval}
|
|
|
|
|
2021-10-06 20:35:06 +02:00
|
|
|
__NEW_IF__(basic,false)
|
|
|
|
__NEW_IF__(extended,false)
|
|
|
|
|
2021-10-07 10:06:23 +02:00
|
|
|
\DeclareOptionX{basic}{__SET_IF__(basic,true)}
|
|
|
|
\DeclareOptionX{extended}{__SET_IF__(extended,true)__SET_IF__(basic,true)}
|
2021-10-06 20:35:06 +02:00
|
|
|
|
2021-10-07 10:06:23 +02:00
|
|
|
__END_OPTIONS_X__
|
2021-10-06 20:35:06 +02:00
|
|
|
|
|
|
|
%Usage: \makealiasesforwith\<mathcommand>{<prefix>}{<Set of letters>}
|
|
|
|
% to declare commands of form \<prefix><Letter> as \<mathcommand>{<Letter>} for each
|
|
|
|
% of the specfied letters
|
|
|
|
%
|
|
|
|
% E.g. \makealiasesforwith\mathcal{c}{ABC} will declare
|
|
|
|
% \cA \cB \cC \cD as \mathcal{A}, \mathcal{B}, \mathcal{C}
|
|
|
|
% This is also ensuring math context, so that
|
|
|
|
% \cA will be valid even in normal text.
|
|
|
|
|
|
|
|
\def\makealiasesforwith#1#2#3{
|
|
|
|
\def__PACKAGE_MACRO__(makealias)##1{
|
|
|
|
\expandafter\def\csname #2##1\endcsname{\ensuremath{#1{##1}}}
|
|
|
|
}
|
|
|
|
\def__PACKAGE_MACRO__(recurse)##1{
|
|
|
|
\ifx##1__PACKAGE_MACRO__(dummy)\else
|
|
|
|
__PACKAGE_MACRO__(makealias){##1}\expandafter__PACKAGE_MACRO__(recurse)\fi
|
|
|
|
}
|
|
|
|
__PACKAGE_MACRO__(recurse) #3__PACKAGE_MACRO__(dummy)
|
|
|
|
}
|
|
|
|
|
|
|
|
\def__PACKAGE_MACRO__(all){ABCDEFGHIJKLMNOPQRSTUVWXYZ}
|
|
|
|
|
|
|
|
__IF__(basic)
|
|
|
|
\RequirePackage{amsfonts}
|
|
|
|
\makealiasesforwith\mathbb{}{CFKNQRZ}
|
|
|
|
\fi
|
|
|
|
|
|
|
|
__IF__(extended)
|
|
|
|
\expandafter\makealiasesforwith\expandafter\mathcal\expandafter{\expandafter c\expandafter}\expandafter{__PACKAGE_MACRO__(all)}
|
|
|
|
\expandafter\makealiasesforwith\expandafter\mathfrak\expandafter{\expandafter f\expandafter}\expandafter{__PACKAGE_MACRO__(all)}
|
|
|
|
\fi
|