與 MTPro Lite 和 breqn 軟體包不相容

與 MTPro Lite 和 breqn 軟體包不相容

MTPro Lite 和 breqn 軟體包不相容,從而破壞了 \implies 符號定義。

在我的範例程式碼中:

\documentclass{article}

\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}
\usepackage{mathtools}
\usepackage{fixmath}
\usepackage{breqn}

\begin{document}

Let $x\implies y$. Can you see the problem?

\end{document}

有什麼辦法可以解決嗎?

答案1

問題似乎在於使用了與標準代碼mtpro2不同的代碼。\Relbar

這是一個修復,但我不知道它是否會破壞其他東西。

\documentclass{article}

\usepackage[lite]{mtpro2}
\usepackage{amsmath}
\usepackage{breqn}

\AtBeginDocument{%
  \edef\Relbar{\mathord{\mathchar\the\numexpr\Relbar-"3000}}%
}

\begin{document}

$a \Longrightarrow b \Longleftarrow c$

$a \implies b \impliedby c$

\end{document}

在此輸入影像描述

相關內容