I tried to create the following picture but I have not succeeded.
I just made it like this.
\documentclass[border=10pt]{standalone}
\usepackage[x11names]{xcolor}
\usepackage{tikz}
\usetikzlibrary{calc,intersections,patterns,knots}
\usepackage{adjustbox}
\begin{document}
\pagecolor{LightSkyBlue1!30}
\begin{tikzpicture}[line join=round,line cap=rounded]
\coordinate[label=left:] (A) at (0,2);
\coordinate[label=right:] (B) at (0,0);
\coordinate[label=left:] (O) at (0,1);
\fill[Cyan4] (-.175,-.175) rectangle (9.175,2.175);
\begin{knot}[clip width=2,clip radius=0cm]
\strand[white,line width=0.1cm,double=Cyan4,double distance=.15cm,even odd rule] (-.175,-.175)--(1,1)--(-.175,2.175)
(1,0)--(2,1)--(1,2)--(0,1)--cycle
(2,0)--(3,1)--(2,2)--(1,1)--cycle
(3,0)--(4,1)--(3,2)--(2,1)--cycle
(4,0)--(5,1)--(4,2)--(3,1)--cycle
(5,0)--(6,1)--(5,2)--(4,1)--cycle
(6,0)--(7,1)--(6,2)--(5,1)--cycle
(7,0)--(8,1)--(7,2)--(6,1)--cycle
(8,0)--(9,1)--(8,2)--(7,1)--cycle
(9.175,2.175)--(8,1)--(9.175,-.175);
\end{knot}
\draw[ultra thick,Cyan4] (-.2,-.2) rectangle (9.2,2.2);
\begin{scope}[even odd rule]
\path[pattern=crosshatch dots,pattern color=Cyan4]
(-.175,-.175) rectangle (9.175,2.175)
(-.5,-.5) rectangle (9.5,2.5) ;
\end{scope}
\end{tikzpicture}
\end{document}
How to create the original image?




