tikzpicture でのラベルの配置

tikzpicture でのラベルの配置

私はポリゴンを作成しましたがtikz、下の図に示すようにポイントにラベルを付ける方法を知りたいです。

ここに画像の説明を入力してください

次のようにポリゴンを構築しました。

\documentclass{article}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
            \node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture} [scale = 0.2]
\coordinate (a) at (10,0);
\coordinate (b) at (8,5);
\coordinate (c) at (5,8);
\coordinate (d) at (0,10);
\coordinate (e) at (-5,8);
\coordinate (f) at (-8,5);
\coordinate (g) at (-10,0);
\coordinate (h) at (-8,-5);
\coordinate (i) at (-5,-8);
\coordinate (j) at (0,-10);
\coordinate (k) at (5,-8);
\coordinate (l) at (8,-5);
\draw (a) -- (b) --(c) -- (d) -- (e) -- (f) -- (g) -- (h) -- (i) -- (j) -- (k) -- (l) -- (a);
\draw[thick] (0,12) -- (0,-12);
\draw[thick] (12,0) -- (-12,0);
\node[above] at (7.5,0.2) {\circled{1}};
\node[above] at (12,0.2){(10,0)};
\end{tikzpicture}
\end{figure}
\end{document}

ラベルを追加するための正しい座標と、多面体上の対応する点の座標を見つけるのは本当に面倒です。ラベルは見栄えが悪く、配置も適切ではありません。プロセスを簡素化するために使用できる特定のコマンドはありますか?

ありがとう!

答え1

これによりコードの量は減りますが、結果はおそらくより良くなるでしょう。(もし誰かの魔法使いがもっと良い解決策を思いついたら、おそらくこの回答は削除するでしょう。)

ラベルは次のループで配置されます。

\foreach [count=\i] \x/\y in {10/0,8/5,5/8,0/10,-5/8,-8/5,-10/0,-8/-5,-5/-8,0/-10,5/-8,8/-5}
{
  \path (\x,\y) ++({atan2(\y,\x)}:3.5cm) node [fill=white,inner sep=0pt] {$(\x,\y)$};
  \path (\x,\y) ++({atan2(\y,\x)-180}:2cm) node [draw,circle,inner sep=2pt,fill=white]{\i};
}

ここで行われていることは、単に極座標を使用して配置することです。++({atan2(\y,\x)}:3.5cm)は、前の位置 (ここでは(\x,\y)) から、角度 によって指定された方向に 3.5cm 移動しatan2(\y,\x)、この位置を新しい「アクティブ」位置にすることを意味します。 次に、 でこの位置にノードが配置されますnode [fill=white,inner sep=0pt] {$(\x,\y)$}

2 番目については\path、角度が であることに注意してください。これはatan2(\y,\x)-180、原点から離れるのではなく、原点に近づくことを意味します。したがって、これらのノードはポリゴンの外側ではなく内側に配置されます。

よく考えてみると、\path実際には 1 つのコマンドで十分です。

\foreach [count=\i] \x/\y in {10/0,8/5,5/8,0/10,-5/8,-8/5,-10/0,-8/-5,-5/-8,0/-10,5/-8,8/-5}
{
  \path (\x,\y) +({atan2(\y,\x)}:3.5cm) node [fill=white,inner sep=0pt] {$(\x,\y)$}
                +({atan2(\y,\x)-180}:2cm) node [draw,circle,inner sep=2pt,fill=white]{\i};
}

ここでの違いは、 が 1 つの場合+、新しい位置がアクティブな位置にならないため、次の位置が計算されるときに、参照位置はまだ であるということです(\x,\y)

ここに画像の説明を入力してください

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture} [scale = 0.2]
\draw (10,0) 
  \foreach \x/\y in {8/5,5/8,0/10,-5/8,-8/5,-10/0,-8/-5,-5/-8,0/-10,5/-8,8/-5,10/0}
      { -- (\x,\y)};

\draw[thick] (0,12) -- (0,-12);
\draw[thick] (12,0) -- (-12,0);

\foreach [count=\i] \x/\y in {10/0,8/5,5/8,0/10,-5/8,-8/5,-10/0,-8/-5,-5/-8,0/-10,5/-8,8/-5}
{
  \path (\x,\y) ++({atan2(\y,\x)}:3.5cm) node [fill=white,inner sep=0pt] {$(\x,\y)$};
  \path (\x,\y) ++({atan2(\y,\x)-180}:2cm) node [draw,circle,inner sep=2pt,fill=white]{\i};
}
\end{tikzpicture}
\end{document}

答え2

これはどうですか?

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric} 
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture} 
\draw (-3,0) -- (3,0);
\draw (0,-3) -- (0,3);
\draw [blue, dashed] (0,0) circle(2.5cm);
\node[regular polygon, regular polygon sides=12, minimum size=5cm, rotate=-60, draw] at (0,0) (A) {};
\foreach \i in {1,...,12}  {
     \path  (0,0) -- node [draw, circle, inner sep=0mm, minimum size=3ex, pos=0.8]  {\i} (A.corner \i); 
     \path  let \p1=($(A.corner \i)-(0,0)$),
                \n1={\x1*0.0352777778},
                \n2={\y1*0.0352777778}
            in  
            \pgfextra{\edef\mya{\ifdim\x1<0pt left\else right\fi}}
            (0,0) -- node [pos=1.0, \mya,sloped,scale=0.8]  
    {$(
        \pgfmathprintnumber[fixed]{\csname strip@pt\endcsname\dimexpr\n1\relax},
        \pgfmathprintnumber[fixed]{\csname strip@pt\endcsname\dimexpr\n2\relax}
    )$} (\x1,\y1); 
}
\end{tikzpicture}
\end{document}

結果は…

結果の数字

関連情報