我嘗試使用命令 \hskip 放置兩個函數圖,但似乎不起作用。相反,當 i 在命令 \hskip (x) pt 中變化 (x) 時,兩個圖形開始垂直移動。有什麼簡單的方法可以將它們放在一邊? (我使用Texstudio)。這是代碼:
begin{tikzpicture}
\begin{axis}[
axis lines = middle,
xlabel = $x$,
ylabel = {$f(x)$},
]
\addplot[color=red,domain=-10:10,
samples=1263,
color=red,]{sin(deg(x))};
\end{axis}
\end{tikzpicture}
\hskip 2pt
\begin{tikzpicture}
\begin{axis}
\addplot3[
surf,
]
{exp(-x^2-y^2)*x};
\end{axis}
\end{tikzpicture}