‘mtpro2’ 中的大写 Theta

‘mtpro2’ 中的大写 Theta

我尝试在软件包中输入大写字母 theta 符号mtpro2lite,但它无法正常显示,取而代之的是一个黑框。我移动软件包times后它又出现了,但数字全都属于 Computer Modern 系列。有什么方法可以解决这个问题吗?

以下是 MWE:

\documentclass[fleqn]{book} % It's just the environment I'm working with, it shouldn't matter.
\usepackage{bbding}
\usepackage{times}
%\pdfmapfile{=mtpro2.map}
\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{titling}
\usepackage[dvipsnames]{xcolor}
\usepackage{makeidx}
\usepackage{tabularray}
\usepackage{emptypage}
\usepackage{graphicx}
\usepackage{algorithm}
\usepackage[noend]{algcompatible}
\usepackage{hvlogos}
\usepackage{csquotes}
\usepackage{caption}
\usepackage{mdframed}
\usepackage{breqn}

\begin{document}
Theta: $\Theta$.
\end{document}

答案1

mtpro这实际上与所示的大多数软件包没有关系,也根本没有关系。times是一个可以追溯到 1980 年代的过时软件包,用于newtxtext更完整的时代克隆。

在此处输入图片描述

\documentclass[fleqn]{book} % It's just the environment I'm working with, it shouldn't matter.
\usepackage{bbding}
\usepackage{newtxtext}
%\pdfmapfile{=mtpro2.map}
\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{titling}
\usepackage[dvipsnames]{xcolor}
\usepackage{makeidx}
\usepackage{tabularray}
\usepackage{emptypage}
\usepackage{graphicx}
\usepackage{algorithm}
\usepackage[noend]{algcompatible}
\usepackage{hvlogos}
\usepackage{csquotes}
\usepackage{caption}
\usepackage{mdframed}
\usepackage{breqn}

\showoutput
\begin{document}
Theta 123: $\Theta 123$.
\end{document}

相关内容