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}

위 코드의 결과를 보여주는 이미지

관련 정보