答案1
在图片上绘画的一般方法如下:沃纳的链接。这专门针对如何绘制科赫薄片的问题。picture-mode
我建议不要使用 (因为问题标记为),而是使用 Ti钾Z,因为它的库中有科赫雪花decorations.fractals
(并且通常使这个任务更简单)。(我显然没有你的图像,所以我使用通用图像。)
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.fractals}
\begin{document}
\begin{figure}[htb]
\centering
\begin{tikzpicture}
\node{\includegraphics[width=\textwidth,height=\textheight,keepaspectratio]{example-image-duck}};
\begin{scope}[decoration=Koch snowflake,draw=blue,fill=blue!20,thick]
\filldraw decorate {decorate {(-150:1/2) -- ++ (60:1)
-- ++ (-60:1) -- cycle}};
\end{scope}
\end{tikzpicture}
\end{figure}
\end{document}