\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}
こんにちは。矢印はパラメトリック曲線の端でのみ上を向きます。これを修正する方法はありますか?
編集: スムーズ オプションを削除すると、問題は解決しました。明らかな理由から、これが必要だと思いました。ありがとう、Jesse!
答え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}