
The 'acmart' class includes a '\bigtimes' command from the 'newtxmath' package, if available. Scribble includes a '\bigtimes' command from the 'mathabx' package. These cannot co-exist. If `newtxmath` is available, this PR does not import `mathabx` in acmart documents. If `newtxmath` is not available, this PR includes `mathabx` like normal (same as all previous versions of `scribble/acmart`)
13 lines
583 B
TeX
13 lines
583 B
TeX
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% BEGIN acmart-load.tex
|
|
% Avoid package option conflict
|
|
\renewcommand\packageColor\relax
|
|
\renewcommand\packageTocstyle\relax
|
|
\renewcommand\packageMathabx{\ifx\bigtimes\undefined \usepackage{mathabx} \else \relax \fi}
|
|
% Both 'mathabx' and 'newtxmath' (required by the 'acmart' class) define a '\bigtimes' command.
|
|
\let\Footnote\undefined
|
|
\let\captionwidth\undefined
|
|
\renewcommand{\renewrmdefault}{}
|
|
% END acmart-load.tex
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|