答案1
\documentclass[tikz, border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}[auto]
\draw(0,0) to[out=60,in=120] node {x} (1,0);
\end{tikzpicture}
\end{document}
您可以在此处使用以下节点quotes
:
\documentclass[tikz, border=3mm]{standalone}
\usetikzlibrary{quotes}
\begin{document}
\begin{tikzpicture}
\draw(0,0) to [out=60,in=120, "x"] (1,0);
\end{tikzpicture}
\end{document}
结果和以前一样。