同时使用 newtxttext、txfonts 和 mathabx 包时出错

同时使用 newtxttext、txfonts 和 mathabx 包时出错

我有一个示例代码,想为文本和公式生成一个带有 Times 或 New Times Roman 字体的文件(因此我使用了两者newtxtext, txfonts)。另外,我喜欢包生成的符号形状mathabx。但是,似乎总体上会存在一些不一致之处。例如,在以下代码的输出中,如果使用三个以上的整数符号,则mathabx无法正常工作。这个问题有解决方案吗,或者我必须牺牲一件事来支持其他事情?

\documentclass{article}
\usepackage[a6paper]{geometry}
\usepackage{amsmath}
\usepackage{newtxtext,txfonts,mathabx}


\begin{document}

The text font should be either Times or New Times Roman.
\begin{align*}
x + y + z &= 0 \\
\psi (t) - \Psi (x, t) &= 1
\notag
\end{align*}






  The most important symbols:

  $$ \ast, \cdot, \dagger, \pm, \mp, \div, \star, \times, \approx, \equiv, 
  \doteq $$

  $$ \perp, \mid, \propto, \sim, \simeq, \geq, \gg, \leq, \ll, \neq $$ 

 $$ \int, \oint, \oint\!\oint, \prod, \sum $$

  $$\iint_V \mu(u,v) \,du\,dv $$


  $$\iiiint_V \mu(t,u,v,w) \,dt\,du\,dv\,dw$$

 $$\idotsint_V \mu(u_1,\dots,u_k) \,du_1 \dots du_k$$

 $$ \oint_V f(s) \,ds $$
 $$\idotsint $$





 \end{document}

相关内容