Tikz:参数曲线末端的箭头正确吗?

Tikz:参数曲线末端的箭头正确吗?
\documentclass[11pt]{amsart}
 \usepackage{tikz}
 \begin{document}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\end{document}

您好,参数曲线末端的箭头只会指向上方。有什么方法可以修复这个问题吗?

编辑:删除平滑选项即可解决问题。我认为我需要这个选项,原因很明显。谢谢,杰西!

答案1

经过大量测试表明,删除该smooth选项可以解决该问题。

在此处输入图片描述

代码

\documentclass[border=10pt]{standalone}%[11pt]{amsart}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\end{document}

相关内容