在我的国家,相似三角形符号与\cong
或\sim
符号不同。我用 TikZ 包绘制符号,因此大小和颜色不兼容。请帮我用 TeX 命令创建符号。非常感谢。
PS 代码绘制了类似的符号。
\documentclass[tikz,border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[baseline=-7pt,scale=0.1,line width=0.65pt]
\draw (-2,0);
\draw (4,0);
\draw (0,0) arc (90:270:1)..controls +(0:1) and +(180:1).. (2,0) arc (90:-90:1);
\end{tikzpicture}
\end{document}
答案1
如果你喜欢你的 tikz 符号,还有另一个简单的选择。你可以将其包装在宏中并使用可扩展的单位。像这样:
\documentclass{article}
\usepackage {tikz}
\newcommand{\similar}
{%
\mathrel%
{%
\begin{tikzpicture}[baseline=(a.south),line width=0.15ex]
\node (a) {};
\draw (0,0.5ex) arc (90:270:0.5ex) .. controls +(0:0.5ex) and +(180:0.5ex) .. (1ex,0.5ex) arc (90:-90:0.5ex);
\end{tikzpicture}
}
}
\begin{document}
The red triangles {\color{red} $ABC \similar DEF$} are similar.
So are the big triangles {\large $A'B'C' \similar D'E'F'$}.
\end{document}
编辑:正如 Davislor 建议的那样,我将所有内容包裹起来\mathrel
以获得更好的间距。
答案2
∽ (U+223D)\backsim
在包裹中unicode-math
,stix
或stix2
。
\rotatebox
您也可以在from内放置一个无衬线的graphicx
S。
\mathrel
你也可以在里面放一个 tikzpicture在数学模式中将其用作关系符号。