다음 그림을 그리는 데 도움이 필요하십니까?

다음 그림을 그리는 데 도움이 필요하십니까?

라텍스로 다음 그림을 그리는 방법은 무엇입니까? 저는 tikz에 대한 경험이 많지 않습니다. 누구든지 친절하게 도와주실 수 있나요? 정말 감사합니다!

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

답변1

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

패키지 의 라이브러리를 pattern사용 하여 :positioningtikz

\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{patterns, positioning}

\begin{document}
\begin{tikzpicture}[
dot/.style = {circle, fill, inner sep=2pt, node contents={}}
                    ]
\path[pattern=north east lines] (0,-1) rectangle (1,1);
\draw   (-3,0) -- (-2,0) node (a) [dot] 
               -- ( 0,0) node     [dot]
               -- ( 2,0) node (b) [dot]
               -- (3,0);
\draw   (0,1)   -- (0,-1) coordinate (aux);
\path   (a |- aux) node[below] {$Z_{P\hat{N}}$}
        (aux)      node[below] {$Z_{P\hat{N}+1}$}
        (b |- aux) node[below] {$Z_{P\hat{N}+2}$};           
\end{tikzpicture}
\end{document}

관련 정보