带来激进/超激进的符号?

带来激进/超激进的符号?

我正在尝试寻找符号,例如http://mathworld.wolfram.com/Ultraradical.html表示 的解$x^5+x-a=0$,有时也被称为“Bring Radical”或“Ultraradical”。LaTeX 软件包中是否存在这样的内容?

答案1

另一个tikz答案:

\documentclass{article}
\usepackage{tikz}
\newcommand{\ultrarad}[1]{%
 \begin{tikzpicture}
   \node[inner ysep=0pt] (a) {\strut$#1$};
   \draw[rounded corners=0.5ex] ([shift={(-0.5ex,0.7ex)}]a.south west) --
             ([shift={(-0.5ex,0ex)}]a.south west)--
             ([shift={(0.5ex,0ex)}]a.south west) --
             ([shift={(0.5ex,1.3ex)}]a.south west) --
             (a.north west) ;
   \draw[shorten <= -0.04ex] (a.north west) -- (a.north east);
 \end{tikzpicture}
 }
\begin{document}
  \ultrarad{a} \ultrarad{abcdg}
\end{document}

在此处输入图片描述

相关内容