
使っています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}