I'm not a computer expert, so when I simply include the lines
\include{mathabx, MnSymbol}
in a .tex file, compile it, and it gives me a bunch of errors, I don't know what to do... I'm running MikTeX in Windows.
I'm not a computer expert, so when I simply include the lines
\include{mathabx, MnSymbol}
in a .tex file, compile it, and it gives me a bunch of errors, I don't know what to do... I'm running MikTeX in Windows.
First of all, the correct way to load these two packages would be to write these lines in the preamble
\usepackage{mathabx}
\usepackage{MnSymbol}
and not
\include{mathabx, MnSymbol}
With the latter, LaTeX will try to include the file mathabx,.tex in your main file...
Anyway, these two packages are not compatible because MnSymbol automatically loads the amsmath package which isn't compatible with mathabx.
MnSymbol can be loaded with the option abx if you just need to use the calligraphic font from the mathabx fonts.
Instead, follow the link suggested by Barbara Beeton in her comment if you need to "access symbols selectively", using her words.
\include{mathabx, MnSymbol} and not \usepackage{mathabx, MnSymbol} in your question?
– karlkoeller
Jun 08 '13 at 14:18