I have mathtime (not the new fancy MTPro2, but rather, the version from the early 1990's). I learned this summer how to use \DeclareMathVersion so that I could have some chapters in my document that load their fonts separately. (This helps us to overcome the 16 font maximum.) The original question was posted online here: LaTeX: Using attributes of one mathversion with another mathversion
Question: When I use \DeclareMathVersion to make "normal2", I find that the \mathcal font shows up in bold, and I do not want it to be bold. How can I get \mathcal to show up without being bold? Here is my MWE. Thank you (in advance) for your help.
\documentclass[letterpaper,12pt]{article}
\usepackage[margin=1in,vmargin=1in]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{mathtime}
\DeclareMathVersion{normal2}
\makeatletter
\SetSymbolFont{operators} {normal2}{\operator@encoding}{ptm}{m}{n}
\SetSymbolFont{letters} {normal2}{MY1}{mtt}{m}{it}
\SetSymbolFont{symbols} {normal2}{MY2}{mtt}{m}{n}
\SetSymbolFont{largesymbols}{normal2}{MY3}{mtt}{m}{n}
\makeatother
\begin{document}
$(a=b)$ $\mathcal{ABC}$ % \mathcal is not bold -- good!
\mathversion{normal2}
$(a=b)$ $\mathcal{ABC}$ % \mathcal is bold, why?
% I just want the regular (not bold) \mathcal here!
\end{document}
\showoutputwhat log do you get for the two ABC, the standard one will be.....\OMS/cmsy/m/n/12 Cwhat does the mathtime one say? – David Carlisle Nov 24 '19 at 19:46.\OMS/cmsy/b/n/12 Aso you are getting bold cm mathcal not mathtime at all – David Carlisle Nov 24 '19 at 19:54and the undesirable ones are: .....\OMS/cmsy/b/n/12 A .....\OMS/cmsy/b/n/12 B .....\kern0.27011 .....\OMS/cmsy/b/n/12 C
– mdw Nov 24 '19 at 19:55