4

I use \usepackage[utopia]{mathdesign} for math numbers, symbols, etc. but I want to change the \sum symbol to default computer modern one. When I use

\DeclareSymbolFont{CMlargesymbols}{OMX}{cmex}{m}{n}
\DeclareMathSymbol{\‎‏‎sum‎}{\mathop}{CMlargesymbols}{"50}‎‎‎

it results an error: Command '\sum' already defined. How can I change the \sum symbol?

Stephen
  • 14,890
smh
  • 1,271

2 Answers2

4

The correct loading order should be

\documentclass{article}

\usepackage[utopia]{mathdesign}

\DeclareSymbolFont{CMlargesymbols}{OMX}{cmex}{m}{n}
\DeclareMathSymbol{\sum}{\mathop}{CMlargesymbols}{"50}

\usepackage{amsmath}                                       

\begin{document}

$\sum$

\end{document}

This is because amsmath patches some of the commands to become "dots-aware".

egreg
  • 1,121,712
0

How about if you try

\DeclareMathSymbol{\mysum}{\mathop}{CMlargesymbols}{"50}

and then at the end of the preamble

\renewcommand{\sum}{\mysum}
A.Ellett
  • 50,533