Addplot3 连接端点

Addplot3 连接端点

下面的代码

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3[domain=0:10] (x, 25, {x^2});
\end{axis}
\end{tikzpicture}
\end{document}

生产

在此处输入图片描述

如何删除端点之间的线?

答案1

添加samples y=0会删除连接端点的线。

\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}
            \addplot3 [
                domain=0:10,
                % ----------
                % add `samples y=0' to remove the line connecting the endpoints
                samples y=0,
                % ----------
            ] (x, 25, {x^2});
        \end{axis}
    \end{tikzpicture}
\end{document}

该图显示了上述代码的结果

相关内容