几何重合符号

几何重合符号

我的教授发明了一种符号,表示线和点在几何上重合。我添加了一张图片,想问一下有人知道如何在 LaTex 中写这个符号吗?它是一条中间有一个点的小线。

在此处输入图片描述

答案1

\documentclass{article}
\usepackage{tikz}

\newcommand{\incid}{%
\tikz{%
    \draw[line cap=round,line width=0.13ex] (0,0)--(3ex,0);
    \fill (1.5ex,0) circle (0.5ex);
}}

\begin{document}
$(P, G, \incid)$
\end{document}

在此处输入图片描述

答案2

这应该是一个关系符号。可以用序列获得

\relbar \joinrel \mathrel{\!\bullet\!} \joinrel \relbar

\relbar命令排版一个被视为关系符号的减号;\joinrel是一个被视为关系符号的小负空间。\bullet被制成一个关系符号,并减少了边距。

\documentclass{article}
\usepackage{amsmath}

\newcommand{\incidence}{\relbar\joinrel\mathrel{\!\bullet\!}\joinrel\relbar}

\begin{document}

$(\mathcal{P},\mathcal{G},\incidence)$

\end{document}

在此处输入图片描述

答案3

这是使用该方法的另一种解决方案这里用于叠加符号。

\documentclass{article}

\usepackage{amsmath}
\usepackage{amssymb}

\makeatletter
\newcommand{\superimpose}[2]{%
  {\ooalign{$#1\@firstoftwo#2$\cr\hfil$#1\@secondoftwo#2$\hfil\cr}}}
\makeatother

\newcommand{\incidentsymb}{%
    \mathpalette\superimpose{%
        {\rule[0.5ex]{1.2em}{0.5pt}}%
        {\text{\textbullet}}%
    }%
}


\begin{document}

$(\mathcal{P}, \mathcal{G}, \incidentsymb)$

\end{document}

发生符号

答案4

只是为了好玩,只有 才有效luatatex。使用之前xelatex 添加 有效,但使用也失败了。\ensuremath\bulletpdflatex

\documentclass{article}
\usepackage{graphicx}    
\newcommand\incidence{\mathrel{\rotatebox{90}{\bullet\kern-.4em|}}}
\begin{document}
$(\mathcal{P}, \mathcal{G}, \incidence )$
\end{document}

相关内容