答案1
这真的只是为了好玩(因为这被标记为 Ti钾Z)。尝试将圆的形状调整为平方根的尺寸。这个想法是使用 apath picture
来找出平方根的尺寸。幸运的是,它tikzmark
有一个很酷的功能可以检测我们所处的模式,所以我们不必担心这个问题。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{tikzmark,calc}
\newcounter{stuff}
\tikzset{oroot/.style={path picture={\draw
let \p1=($(path picture bounding box.north)-(path picture bounding box.south)$) in (path picture bounding box.west)
arc(180:-180:{0.25em+\y1/10} and \y1/3);}}}
\begin{document}
abc $\tikzmarknode[oroot]{1}{\sqrt{a+b}}$
\[\tikzmarknode[oroot]{2}{\sqrt{\frac{\frac{1}{12}}{\frac{a}{b}}}}\]
\end{document}