
estoy usandoSVMultclass (paquete Springer para libros contribuidos). Por defecto el documento incluye los siguientes paquetes:
\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 estas configuraciones, al formatear la parte de matemáticas con \mathcal
, las fuentes son demasiado curvas y casi imposibles de leer de un vistazo; por ejemplo, tendría algo como esto:
¿Cómo es posible utilizarlo \mathcal
con mejores resultados y con cambios mínimos en la configuración? Espero un resultado similar al de ieeeconf
la clase.
Una pequeña 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}
Respuesta1
Si no le gustan las caligrafías de mathptmx
, tendrá que eliminar este paquete o redefinir su fuente mathcal. Esto se puede hacer de la siguiente manera:
% 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}