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}

顯示上述程式碼結果的圖像

相關內容