\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}