achemso 中的粗体希腊字母

achemso 中的粗体希腊字母

我在使用阿赫姆索文档类。我唯一成功的是使用,\bm{\Pi}它产生了类似于“穷人的大胆”的丑陋结果。\pmb我想我已经把它缩小到阿赫姆索使用数学公式导致此问题的原因。下面是一个说明此问题的简单示例:

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{mathptmx}
\usepackage{bm}
\title{Title}
\author{Author}
\begin{document}
\maketitle
\begin{equation}
\begin{split}
&\text{normal:  } \Pi \\
&\text{mathbf:  } \mathbf{\Pi} \\
&\text{bm:  } \bm{\Pi}
\end{split}
\end{equation}
\end{document}

有没有办法制作一个干净的粗体大写“Pi”,并兼容阿赫姆索pdfLaTeX

答案1

Mathptmx 是一个较旧的软件包,缺少较新的 Times 兼容字体软件包提供的许多功能。Newtxtext 和 newtxmath 是很好的替代品。

尝试这个:

\documentclass[12pt]{article}
\usepackage{amsmath,achemso}
\usepackage{newtxmath}
\usepackage{newtxtext}
\usepackage{bm}
\title{Title}
\author{Author}
\begin{document}
\maketitle
\begin{equation}
\begin{split}
&\text{normal:  } \Pi \\
&\text{mathbf:  } \mathbf{\Pi} \\
&\text{bm:  } \bm{\Pi}
\end{split}
\end{equation}
\end{document}

在此处输入图片描述

相关内容