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

의 서체가 마음에 들지 않으면 mathptmx이 패키지를 제거하거나 mathcal 글꼴을 다시 정의해야 합니다. 이는 다음과 같이 수행할 수 있습니다.

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

여기에 이미지 설명을 입력하세요

관련 정보