乳胶中的内/外螺旋特征

乳胶中的内/外螺旋特征

我期望答案是“你不能这样做”,但我经常使用向内/向外螺旋作为表示“这个系列/序列收敛/发散”的简写:在此处输入图片描述

我正在尝试将公式表从手写表移至 Latex 格式,但我不知道该如何处理这个符号。Latex 中是否有表示向内/向外螺旋的符号?我还能做什么?

谢谢

答案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}

相关内容