我想平滑地连接两个点。我尝试使用以下代码来实现:
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw (0.7,0) -- (0.7,6);
\draw (0,6) -- (0,-0.8);
\draw (0.5,-1.2) -- (2.2,-1.2);
\draw plot [smooth] coordinates {(0,-0.8) (0.5,-1.2)};
\end{tikzpicture}
\end{center}
\end{document}
但我得到的是线性链接,而不是平滑链接。
提前非常感谢您。