Estou tentando encontrar o símbolo, como é dado emhttp://mathworld.wolfram.com/Ultraradical.htmlque representa a solução para $x^5+x-a=0$
e que às vezes é chamado de "Traga radical" ou "ultraradical". Existe algo assim em algum pacote LaTeX?
Responder1
Outra tikz
resposta:
\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}