SVMult 包中使用的字体 - `\mathcal` 存在问题

SVMult 包中使用的字体 - `\mathcal` 存在问题

我在用SVMult类(Springer 贡献书籍包)。默认情况下,文档包含以下包:

\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

使用这些设置,当用 格式化数学部分时\mathcal,字体太弯曲,几乎不可能一眼看清,例如我会得到这样的效果:

在此处输入图片描述

如何才能\mathcal在设置变化最小的情况下获得更好的效果。我期望结果与ieeeconf课堂上的结果相似。

在此处输入图片描述

一个小的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}

答案1

如果您不喜欢 中的 caligraphics mathptmx,则必须删除此包或重新定义其 mathcal-font。可以按如下方式完成:

% 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}

在此处输入图片描述

相关内容