乳膠中的向內/向外螺旋特徵

乳膠中的向內/向外螺旋特徵

我希望答案是“你不能這樣做”,但我經常使用向內/向外螺旋作為“這個級數/序列收斂/發散”的簡寫:在此輸入影像描述

我正在嘗試將我的公式表從手寫的公式表移至乳膠,但我不知道該怎麼處理這個符號。有向內/向外螺旋的乳膠符號嗎?我還有什麼可以做的嗎?

謝謝

答案1

我不確定用法,因此您可能希望將巨集包含在\mathbinor中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}

相關內容