Responder1
Não existe “normal” \mathcal
. Diferentes conjuntos de fontes fazem escolhas diferentes sobre isso.
Você deve estar ciente de que isso mathptmx
é essencialmente um erro. A fonte do texto é (uma variedade de) Times, os símbolos são desenhados aqui e ali com o objetivo principal de tornar os documentos tão pequenos e possíveis quando traduzidos para Postscript ou, nos anos mais recentes, para PDF.
Acontece que mathptmx
usa a fonte RSFS também carregada \usepackage{mathrsfs}
para seu \mathcal
alfabeto.
Existem alternativas melhores para mathptmx
hoje em dia.
mathptmx
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathptmx}
\usepackage{mathrsfs}
\begin{document}
Some text $A\cap B\in\mathscr{P}(X)\ne\mathcal{P}(X)$ and some text
\end{document}
mathptmx
comcmsy
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathptmx}
\usepackage{mathrsfs}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\begin{document}
Some text $A\cap B\in\mathscr{P}(X)\ne\mathcal{P}(X)$ and some text
\end{document}
newtxtext,newtxmath
\documentclass{article}
\usepackage{amsmath}
\usepackage{newtxtext,newtxmath}
\begin{document}
Some text $A\cap B\in\mathscr{P}(X)\ne\mathcal{P}(X)$ and some text
\end{document}
stix2
\documentclass{article}
\usepackage{amsmath}
\usepackage{stix2}
\usepackage{mathrsfs}
\begin{document}
Some text $A\cap B\in\mathscr{P}(X)\ne\mathcal{P}(X)$ and some text
\end{document}