以圆形显示外部图像

以圆形显示外部图像

我想将几张外部图像组织成圆形,并在其上方绘制 TikZ。我尝试使用\includegraphics命令在 TikZ 中使用范围选项,整个操作都包含在\foreach命令中,但\includegraphics没有考虑范围命令。

答案1

我不确定你会在图像中使用范围定义来做什么。不过,这是我在 TikZ 中以圆形排列(外部)图像的方法 - 使用节点:

\documentclass{article}
\usepackage{tikz,graphicx}
\begin{document}

\fbox{\begin{tikzpicture}
  \foreach \i in {1,...,8}
    \node at (\i*45:2) {\includegraphics[width=2cm]{texsx}};
\end{tikzpicture}}

\end{document}

tikz 图片中的圆形间隔节点

相关内容