![diophantus 마이너스 기호를 얻는 방법](https://rvso.com/image/472301/diophantus%20%EB%A7%88%EC%9D%B4%EB%84%88%EC%8A%A4%20%EA%B8%B0%ED%98%B8%EB%A5%BC%20%EC%96%BB%EB%8A%94%20%EB%B0%A9%EB%B2%95.png)
diophantus 빼기 기호가 필요합니다(https://sites.math.rutgers.edu/~cherlin/History/Papers2000/kirshm.html)
답변1
기호를 찾을 수 없으면 언제든지 TikZ에서 그릴 수 있습니다.
\documentclass[margin=1mm]{standalone}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\DeclareMathOperator{\foo}{\tikz[
baseline={(0,0.02ex)},
line width=0.13ex,
looseness=1.5,
line cap=round
]{
\draw (0,0) -- (0,1.1ex);
\draw (-0.8ex,0.9ex) to[out=-60,in=180,in looseness=0.6] (0,1.1ex) to[out=0,in=-120,out looseness=0.6] (0.8ex,0.9ex);
}}
\begin{document}
$
a \foo b
$
\end{document}