找出符号的编号以访问它

找出符号的编号以访问它

http://www.logicmatters.net/latex-for-logicians/symbols/我读到\boxrighttxfonts 或 pxfonts 可以通过执行以下操作与其他字体一起使用:

\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
\DeclareMathSymbol{\boxright}{\mathrel}{symbolsC}{128}

txfonts 和 pxfonts 中还有另一个我想使用的符号。我如何获取它的编号,以便使用类似符号\DeclareMathSymbol来访问它?我在 txfonts 和 pxfonts 中想要的符号是\Diamondright

\钻石右

答案1

您可以使用fonttable包裹:

\documentclass{article}
\usepackage{fonttable}
\begin{document}
\fonttable{txsyc}
\end{document}

您可以看到它是 132。

字体表

相关内容