我想绘制一个以 为中心的多个圆的单位圆(cos(x),sin(x))
。
\begin{tikzpicture}
\draw (0,0) circle (2cm);
\coordinate (a) at (2;10);
\draw (a) circle (0.3cm);
\end{tikzpicture}
如何使用极坐标定义点来绘制圆(2cos(10),2sin(10))
?
答案1
答案2
和极坐标这也可以做到:)
\draw (\a:1) circle (0.2cm);
语法是(<angle>:<radius>)
。输出是
% arara: pdflatex
% !arara: indent: {overwrite: yes}
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \a in {0, 30, ..., 350 }
\draw (\a:1) circle (0.2cm);
\end{tikzpicture}
\end{document}
或者,使用该graphs
库,您可以使用
\graph[nodes={draw,circle,minimum width=.2cm},
clockwise,
radius=1cm,
empty nodes,
n=12]{subgraph I_n};
以下是完整的 MWE:
% arara: pdflatex
% !arara: indent: {overwrite: yes}
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{graphs}
\usetikzlibrary{graphs.standard}
\begin{document}
\begin{tikzpicture}
\graph[nodes={draw,circle,minimum width=.2cm},clockwise,radius=1cm,empty nodes,n=12]{subgraph I_n};
\end{tikzpicture}
\end{document}
如需参考,请参阅在哪里可以找到 tikz 提供的标准子图的完整列表?
答案3
\documentclass[pstricks]{standalone}
\usepackage{pst-plot}
\def\N{10}
\def\offsetAngle{19}
\def\radius{5mm}
\begin{document}
\begin{pspicture}(-4,-4)(4,4)
\curvepnodes[plotpoints=\N]{0}{360}{2 t \offsetAngle\space add PtoC}{X}
\foreach \i in {0,...,\the\numexpr\Xnodecount-1\relax}{\pscircle(X\i){\radius}}
\end{pspicture}
\end{document}
中的反直觉名称\Xnodecount
实际上是从零开始的节点数组的最后一个索引X
。如果曲线是封闭曲线,我们必须从中减去 1\Xnodecount
才能移除X9
(基于上面的例子),这实际上等于X0
。