
estou usandoSVMultclass (pacote Springer para livros contribuídos). Por padrão, o documento inclui os seguintes pacotes:
\usepackage{mathptmx} % selects Times Roman as basic font
\usepackage{helvet} % selects Helvetica as sans-serif font
\usepackage{courier} % selects Courier as typewriter font
\usepackage{type1cm} % activate if the above 3 fonts are
% not available on your system
Usando essas configurações, ao formatar a parte matemática com \mathcal
, as fontes ficam muito curvas e quase impossíveis de ler à primeira vista, por exemplo, eu teria algo assim:
Como é possível usar \mathcal
com melhores resultados, tendo o mínimo de alteração nas configurações. Espero resultado semelhante ao ieeeconf
da aula.
Um pequeno MWE:
\documentclass[graybox]{svmult}
\usepackage{mathptmx}
\usepackage{helvet}
\usepackage{courier}
\usepackage{type1cm}
\begin{document}
\title*{Title}
\author{Me}
\section{sect-1}
This is the math, $\mathcal{P},\mathcal{O},\mathcal{W},\mathcal{F}$.
\end{document}
Responder1
Se você não gostar dos caligráficos do mathptmx
, você terá que remover este pacote ou redefinir sua fonte matemática. Isso pode ser feito da seguinte forma:
% arara: pdflatex
\documentclass{article} % as your problem can be reproduced by a standard class, you should always give your MWE with such. Make it easier for us.
\usepackage{mathptmx}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\usepackage{mathtools} % for \text{}
\begin{document}
\section{sect-1}
This is the math, $\mathcal{P}_\text{Pick},\mathcal{O},\mathcal{W},\mathcal{F}$.
\end{document}