使用命令 \hskip 将两个图表放在一边

使用命令 \hskip 将两个图表放在一边

我尝试使用命令 \hskip 来放置两个函数图,但似乎不起作用。相反,当我在命令 \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}

相关内容