I'm interested in using the standard \cup, i.e.
and the one given by importing the mathabx \cup
in the same document.
Does anyone know how to do that?
Unlike @Herbert's solution, this solution does not change any math font. It just add an \abxcup we defined.
Some of the code is copied from mathabx.sty:
\documentclass{article}
\DeclareFontFamily{U}{matha}{\hyphenchar\font45}
\DeclareFontShape{U}{matha}{m}{n}{
<5> <6> <7> <8> <9> <10> gen * matha
<10.95> matha10 <12> <14.4> <17.28> <20.74> <24.88> matha12
}{}
\DeclareSymbolFont{matha}{U}{matha}{m}{n}
\DeclareFontSubstitution{U}{matha}{m}{n}
\DeclareMathSymbol{\abxcup}{\mathbin}{matha}{'131}
\begin{document}
$A\cup B \abxcup C$
\end{document}
And this code showed how to get the glyph slot:
\documentclass{article}
\usepackage{fonttable}
\begin{document}
\fonttable{matha10}
\end{document}
\documentclass{article}
\usepackage[T1]{fontenc}
\let\ltxcup\cup
\usepackage{mathabx}
\begin{document}
$\ltxcup \cup$
\end{document}
\cupfor union and the mathabx\cupfor cup product. – Marius Jan 31 '11 at 16:28\smilelooks better for a cup product, and is different enough from\cupthat the two shouldn't get confused. – John Palmieri Jan 31 '11 at 17:24\smileis of type\mathrelwhereas\cupis of type\mathbin, so, to get correct spacing, you should use something like\newcommand{\cupproduct}{\mathbin{\smile}}. – Philippe Goutet Jan 31 '11 at 22:53\smileis what worked for me, and it's simple, in that the\cupconflict is completely circumvented rather than resolved. – Karthik C Oct 24 '13 at 04:42