ラテックスの内向き/外向きの螺旋文字

ラテックスの内向き/外向きの螺旋文字

答えは「それはできない」だと予想しますが、私は「このシリーズ/シーケンスは収束/発散する」という表現の省略形として、内向き/外向きのスパイラルをよく使用します。ここに画像の説明を入力してください

手書きの数式シートを LaTex に移行しようとしているのですが、この記号をどうすればよいかわかりません。内向き/外向きの螺旋を表す LaTex 記号はありますか? 他に何かできることはありますか?

ありがとう

答え1

使い方がよくわからないので、マクロを または で囲む必要があるかもしれません\mathbinmathrel、まずはここから始めましょう。

この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}

関連情報