급진적/초급진적 가져오기의 상징?

급진적/초급진적 가져오기의 상징?

나는 다음과 같은 기호를 찾으려고 노력하고 있습니다.http://mathworld.wolfram.com/Ultraradical.html에 대한 해결책을 나타내며 $x^5+x-a=0$때로는 "급진적 가져오기" 또는 "초급진적"이라고도 합니다. 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}

여기에 이미지 설명을 입력하세요

관련 정보