答案1
一些软件包(例如txfonts
)会更改许多符号。一种可能性是使用软件包中的符号amssymb
并旋转。\blacksquare
\rotatebox
graphicx
根据您使用符号作为关系、运算还是普通符号,您可以使用以下内容:
\documentclass{article}
\usepackage{amssymb,graphicx}
\newcommand{\blackdiam}{\rotatebox[origin=c]{45}{$\blacksquare$}}
\begin{document}
$a\blackdiam b$
$a\mathbin{\blackdiam}b$
$a\mathrel{\blackdiam}b$
\end{document}
当然,你也可以在宏中包含\mathbin
或。你也可以\mathrel
使用\mathchoice
或\mathpalette
\scriptstyle
因此您的符号可以在或中使用\scriptscriptstyle
。