p1 和 p2 是通过其 x 和 y 坐标给出的点。该线必须具有从左到右的方向。
我不知道该怎么做,我试过用类似的东西
\draw [dashed] plot [smooth, tension=2] coordinates { (-5,0) (-4, 1) (-3,3)};
但它不符合我的目的。
答案1
像这样?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (5,4);
\draw [dashed,thick] (A) to[out=90,in=180] (B);
\fill (A) circle [radius=1pt] (B) circle [radius=1pt];
\end{tikzpicture}
\end{document}
实际上,您可以直接使用坐标,而不必先用 指定它们\coordinate
。in
和out
选项以角度作为值。