서로 닿는 플롯

서로 닿는 플롯

서로 닿는 세 개의 상자 그림을 만들고 싶습니다(상자 사이에 공백 없음). 문제는 눈금과 레이블의 여백(아무것도 없더라도)이라는 것을 알고 있으므로 이를 제거하는 방법을 모르겠습니다.

MWE:

\documentclass{minimal}
\usepackage{pgfplots}

\pgfplotsset{compat=1.16}

\begin{document}

\begin{tikzpicture}
\begin{axis}[width=5cm,height=4cm,xlabel=$t$,ylabel=$p$,ticks=none,at={(0,0)}]
\end{axis}

\begin{axis}[width=5cm,height=4cm,xlabel=$t$,ticks=none,at={(5cm,0)}]
\end{axis}

\begin{axis}[width=5cm,height=4cm,xlabel=$t$,ticks=none,at={(10cm,0)}]
\end{axis}
\end{tikzpicture}

\end{document}

이 문제에 대한 간단한 해결책이 있습니까?

답변1

scale only axis=true문제를 해결했습니다.

다른 사람도 같은 문제가 있는지 방금 게시했습니다. 관리자가 부적절하다고 판단하는 경우 해당 메시지를 삭제해 주시기 바랍니다.

답변2

나는 숫자를 가지고 놀고 있었고 이것을 얻었습니다. 괜찮으세요?

 \documentclass{minimal}
 \usepackage{pgfplots}

 \pgfplotsset{compat=1.16}

 \begin{document}
 \begin{center}


 \begin{tikzpicture}
 \begin{axis}[width=5cm,height=4cm,xlabel=$t$,ylabel=$p$,ticks=none,at={(0,0)}]
 \end{axis}

 \begin{axis}[width=5cm,height=4cm,xlabel=$t$,ticks=none,at={(3.4cm,0cm)}]
 \end{axis}

 \begin{axis}[width=5cm,height=4cm,xlabel=$t$,ticks=none,at={(6.8cm,0)}]
 \end{axis}
 \end{tikzpicture}
 \end{center}
 \end{document}

여기에 이미지 설명을 입력하세요

관련 정보