我尝试了下面的代码,但没有产生我期望的结果。
\draw[-->] (have) [in=-90, out=-90, looseness=2.5] to (non);
答案1
您的代码无法编译:
- 未定义MWE(Minimal working Example),完整的小文档
- 未定义坐标˛
have
和non
- 错误使用的语法
因此,我猜测,您是在追求这样的事情:
\documentclass[margin=3mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[dotted, ->] (0,0) to [in=-90, out=-90, looseness=2.5] (3,0);
\end{tikzpicture}
\end{document}
但是,您可能更喜欢使用bbox
在图像周围定义“智能”边界框,以消除图像下方的空白:
\documentclass[margin=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{bbox}
\begin{document}
\begin{tikzpicture}[bezier bounding box] ]
\ \draw[dotted,->] (0,0) to [in=-90, out=-90, looseness=2.5] (3,0);
\end{tikzpicture}
\end{document}