使用 tikz 翻转和旋转图像

使用 tikz 翻转和旋转图像

我遇到了以下问题。我想模仿这个网页的饰带。\url{https://maa.org/sites/default/files/images/upload_library/4/vol1/architecture/Math/seven.html}

我被困在 F6 和 F7 图像上。

对于 F6 我尝试了以下代码:

\begin{figure}
\centering
\begin{tikzpicture}[decoration={footprints, foot length=40pt, foot of=gnome}]
\foreach \x in {1,3,...,9}
\draw [decorate] (\x,0) -- (\x+1,0);
\end{tikzpicture}
\begin{tikzpicture}
[xshift=-1 cm, yshift=-1 cm, rotate=180, decoration={footprints, foot length=40pt, foot of=gnome}]
\foreach \x in {1,3,...,9}
\fill [decorate] (\x+1,0) -- (\x,0);
\end{tikzpicture}
\end{figure}

有人能帮助我吗?

答案1

\pgf@lib@foot@of@gnome下面的答案使用了TikZ 库中的宏decorations.footprints

定义了一个命令\footstep,它有 4 个参数。前两个参数决定 和xscaleyscale后两个参数决定 位置。

在此处输入图片描述

\documentclass[border=6pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.footprints}
\makeatletter
\newcommand{\footstep}[4]{
  \begin{scope}[
    shift={(#3*1.2pt,#4*1.2pt)},
    xscale=#1,
    yscale=#2,
    shift={(-0.5pt,-0.5pt)}
  ]
    \pgf@lib@foot@of@gnome
    \pgfusepath{fill}
  \end{scope}
}
\makeatother
\begin{document}
\begin{tabular}{c}
\begin{tikzpicture}[scale=10]
\foreach\x in {1,2,3,4}{
  \footstep{1}{1}{\x}{0}
  \footstep{1}{-1}{\x}{-1}
}
\end{tikzpicture}\\\hline
\begin{tikzpicture}[scale=10]
\foreach\x in {1,3,5}{
  \footstep{1}{1}{\x}{0}
  \footstep{1}{-1}{\x}{-1}
}
\foreach\x in {2,4,6}{
  \footstep{-1}{1}{\x}{0}
  \footstep{-1}{-1}{\x}{-1}
}
\end{tikzpicture}
\end{tabular}
\end{document}

相关内容