在我正在用 LaTeX 撰写的一篇论文中,我需要绘制一些双曲面图并将其合并到我的 LaTeX 文档中。是否有任何软件可以用来绘制双曲面(无论是封闭的还是有边界或穿孔的)?是否有任何可以免费下载的软件可以用来绘制此类图表?如果您知道,请告诉我。如果这篇文章偏离了主题,我深表歉意。谢谢!
答案1
当你用 LaTeX 写作时,基本上所有东西都有一个包。尤其是对于绘图,有一个漂亮的pgfplots
包:http://pgfplots.sourceforge.net/
以下是一个例子:
\begin{figure}[h!t]
\centering
%%% Declare tikspicture enviroment %%%
\begin{tikzpicture}
%%% Declare axes %%%
\begin{axis}[axis background/.style={fill=blue!10}]
%%% Declare 3D surface, work on samples to adjust the quality %%%
\addplot3[surf,domain=0:360,samples=40]
{sin(x)*sin(y)};
\end{axis}
\end{tikzpicture}
\end{figure}
结果是: