答案1
STIX 字体中也有类似的符号,具有相同的直线切口。
请注意,建议使用newpxtext
和newpxmath
而不是。pxfonts
\documentclass{article}
\usepackage{newpxtext,newpxmath}
% alias for comparison; don't use the following three lines
\let\PXbowtie\bowtie
\let\PXltimes\ltimes
\let\PXrtimes\rtimes
\let\bowtie\relax \let\ltimes\relax \let\rtimes\relax
\DeclareFontEncoding{LS1}{}{}
\DeclareFontSubstitution{LS1}{stix}{m}{n}
\DeclareSymbolFont{STIXsymbols}{LS1}{stixscr}{m}{n}
\DeclareMathSymbol{\bowtie}{\mathrel}{STIXsymbols}{"0E}
\DeclareMathSymbol{\ltimes}{\mathbin}{STIXsymbols}{"0F}
\DeclareMathSymbol{\rtimes}{\mathbin}{STIXsymbols}{"10}
\begin{document}
\makebox[3em][l]{New:} $A\bowtie B\ltimes C\rtimes D$
\makebox[3em][l]{Old:} $A\PXbowtie B\PXltimes C\PXrtimes D$
\end{document}