I would like to replace the rather ugly mathptmx \sum operator with the equivalent Computer Modern one.
Asked
Active
Viewed 769 times
1
M.O.
- 551
-
Related/duplicate: Importing a single symbol from a different font – Werner Oct 26 '15 at 16:05
-
It's no different than done in http://tex.stackexchange.com/questions/85991/how-to-change-specific-symbols-in-math-mode – egreg Oct 26 '15 at 17:07
1 Answers
1
Here's a compilation of display-style \sum symbols provided by various font packages.
I'd say that the summation symbol provided by the mtpro2 package is closest to the one provided by the Computer Modern family, while still providing the genuine "Times Roman" look. Incidentally, the full mtpro2 package isn't free of charge. However, its lite subset, which is all that's needed to produce the good-looking \sum symbol, may indeed be downloaded free of charge.
Here's the code that generated the preceding four lines (run consecutively for each choice of font family).
\documentclass{article}
\usepackage{array}
%\usepackage{mathptmx}
%\usepackage{newtxmath}
\renewcommand{\rmdefault}{ptm} \usepackage[lite]{mtpro2}
\begin{document}
\begin{tabular}{@{}>{\ttfamily}p{4cm}>{$\displaystyle}l<{$}}
Times Roman, mtpro2 & \sum
\end{tabular}
\end{document}
Mico
- 506,678
-
Hey, do u think it is possible to use mtpro2's largesymbols with mathptmx? It kind of solves my problem. – M.O. Oct 26 '15 at 18:07
-



