当前位置:   article > 正文

tikz-坐标平移_latex tikz 纵轴标签 平移

latex tikz 纵轴标签 平移

关键字:xshift,yshift,shift

要点:
- 如果xshift或yshift的偏移量值为0,则可以省略。
- 如果x或y方向上某个值为0,则shift可以用更易读的xshift或yshift代替。
- shfit后面的参数要用花括号括起来

这里以正六边形为例,代码:

\begin{tikzpicture}[scale=1]

\coordinate (P1) at (1,0);
\coordinate (P2) at ([shift={+(120:1cm)}] P1);
\coordinate (P3) at ([shift={+(-1,0)}] P2);
\coordinate (P4) at ([shift={+(240:1cm)}] P3);
\coordinate (P5) at ([shift={+(300:1cm)}] P4);
\coordinate (P6) at ([xshift=1cm, yshift=0] P5);

\draw (P1)node [right]{P1}
      --(P2)node [above right]{P2}
      --(P3)node [above left]{P3}
      --(P4)node [left]{P4}
      --(P5)node [below left]{P5}
      --(P6)node [below right]{P6}
      --cycle;

\end{tikzpicture}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

效果:

这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/238122?site
推荐阅读
相关标签
  

闽ICP备14008679号