I am using MikTek 2.9 on Windows 7. When I try to use \cupdot, in math mode, I get an "Undefined control sequence" error message. Is there a package that I need to include to use \cupdot?
Asked
Active
Viewed 475 times
2 Answers
4
the symbol you want is defined in the MnSymbol package.
however, loading that entire package can cause problems. instead, arrange to access just the symbol(s) you need selectively.
see the question Importing a Single Symbol From a Different Font
the particular font that contains \cupdot can be found in the
MnSymbol documentation -- texdoc mnsymbol or view it from ctan.
barbara beeton
- 88,848
2
You need to load MnSymbol
\documentclass{article}
\usepackage{MnSymbol}
\begin{document}
$\cupdot$
\end{document}
TomM
- 1,694
- 1
- 19
- 31
amsmath. There are a couple of threads which provide help in this case, for example: http://tex.stackexchange.com/questions/110976/is-a-cupdot-symbol-available-in-amsmath – TomM Jan 08 '14 at 15:35