次の絵を描くのに助けが必要ですか?

次の絵を描くのに助けが必要ですか?

次の図を LaTeX で描画するにはどうすればいいでしょうか? 私は 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}

関連情報