我想使用来自Matplotlib 在 Latex 中。特别是我正在寻找符号“1”、“2”、“3”和“4”的 Latex 等价物,用于图中的“两对”标签。我已经研究过这个收藏和这个在线工具,但没有找到类似的符号。
答案1
您可以(滥用)使用 Ti钾Z:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\newcommand\wye[1][]{%
\tikz\draw[thick, line cap=round,x=1ex,y=1ex,#1]
(0,0) -- ++(90:1)
(0,0) -- ++(-30:1)
(0,0) -- ++(-150:1);
}
\begin{document}
The symbol for ``two pairs'' is \wye,
which can rotate as \wye[rotate=90] and/or
change color as in \wye[color=red].
\end{document}