
답변1
사용법이 확실하지 않으므로 매크로를 \mathbin
또는mathrel
여기서 시작합니다.
이 scalerel*
명령은 화살표의 크기를 (
문자에 맞게 조정하는 데 사용되므로 아래 첨자에 사용되면 조정됩니다.
\documentclass{article}
\usepackage{tikz, scalerel}
\usetikzlibrary {arrows.meta, decorations.markings}
\newcommand{\divarrow}{\scalerel*{\tikz[xscale=-1]{\useasboundingbox(-.2,-.2)rectangle(.3,.3);
\draw [line width=.6, -{[length=2]>}, line cap=round, domain=90:465 ,variable=\t, smooth, samples=30] plot (\t: 0.0005*\t);}}{(}
}
\newcommand{\convarrow}{\scalerel*{\tikz[xscale=-1]{\useasboundingbox(-.2,-.2)rectangle(.3,.3);
\draw[line width=.6, line cap=round, domain=90:465 ,variable=\t, smooth, samples=30] plot (\t: 0.0005*\t);
\path[decorate, decoration={markings, mark=at position .1 with {\arrow{[line width=.6, length=2]>}}}, ](75:.045)--++(-15:.1);}}{(}
}
\begin{document}
$\{a_n\}\convarrow\divarrow$
\end{document}