如何写出像图片这样的标志

如何写出像图片这样的标志

请帮我

如何写像图片这样的标志

在此处输入图片描述

答案1

像这样?

在此处输入图片描述

该几何符号可以绘制为小图:pic并可以放置在地图线上的任何位置:

\documentclass[tikz, margin=3mm]{standalone}

\begin{document}
    \begin{tikzpicture}[
          dot/.style = {circle, draw, semithick, fill=white, outer sep=2mm,
                        node contents={}},
pics/progress/.style = {code = {\node[dot,above left];
                                \node[dot,above right];
                                \node[dot,below left];
                                \node[dot,below right];}
                        }
                        ]
\draw[very thick] (0,0) -- ++ (2,0) pic [pos=0.6] {progress};
    \end{tikzpicture}
\end{document}

答案2

这是有可能的。你应该更精确地说明这个符号的用途。

\documentclass{article}
\usepackage{amsmath}

\newcommand{\fourcircles}{%
  \mathrel{%
    \tfrac{\,{\circ}\,{\circ}\,}{\raisebox{0.25\height}{$\scriptstyle{\circ}\,{\circ}$}}%
  }%
}

\begin{document}

$a\fourcircles b$

\end{document}

在此处输入图片描述

使用较小的圆圈:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\fourcircles}{%
  \mathrel{%
    \tfrac{\scriptscriptstyle\,{\circ}\,{\circ}\,}
          {\raisebox{0.75\height}{$\scriptscriptstyle{\circ}\,{\circ}$}}%
  }%
}

\begin{document}

$a\fourcircles b$

\end{document}

在此处输入图片描述

答案3

我做到了\mathrel,但可以改变。自动跨数学样式工作。与+符号高度相同。

\documentclass{article}
\usepackage{scalerel,tabstackengine}
\newcommand\mysym{\mathrel{\scalerel*{\ensurestackMath{\setstackgap{S}{0pt}%
  \Shortstack{\circ\circ\\{-}\!\!{-}\!\!{-}\\\circ\circ}}}{+}}}
\begin{document}
$a\mysym b+c$

$\scriptstyle a\mysym b+c$

$\scriptscriptstyle a\mysym b+c$
\end{document}

在此处输入图片描述

这是与规则厚度更匹配的版本

\documentclass{article}
\usepackage{scalerel,tabstackengine}
\newcommand\mysym{\mathrel{\scalerel*{\ensurestackMath{\setstackgap{S}{3pt}%
  \Shortstack{\circ\,\circ\\\rule[.5pt]{1.7em}{1pt}\\\circ\,\circ}}}{+}}}
\begin{document}
$a\mysym b+c$

$\scriptstyle a\mysym b+c$

$\scriptscriptstyle a\mysym b+c$
\end{document}

在此处输入图片描述

答案4

还有另一种可能的方法来做到这一点:

\documentclass{article}
\usepackage{mathtools}
\usepackage{boldline}
\usepackage{booktabs}

\newcommand{\Fourcircles}{%
  \mathrel{%
\renewcommand{\arraystretch}{0.5}%\setlength{\jot}{0pt}
   \vcenter{\hbox{$\begin{array}{@{\mkern2mu}>{\scriptscriptstyle}c@{\mskip2mu}>{\scriptscriptstyle}c@{\mkern 2mu}}
          \circ & \circ\\
\noalign{\vskip-0.6pt}
\hlineB{1.2}
\noalign{\vskip-0.6pt}
          \circ & \circ
\end{array} $}}}%
}%

\begin{document}

$a \Fourcircles b$

\end{document} 

在此处输入图片描述

相关内容