![ツリー (tikz) 内のテキストを回転させる可能性はありますか?](https://rvso.com/image/327776/%E3%83%84%E3%83%AA%E3%83%BC%20(tikz)%20%E5%86%85%E3%81%AE%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%92%E5%9B%9E%E8%BB%A2%E3%81%95%E3%81%9B%E3%82%8B%E5%8F%AF%E8%83%BD%E6%80%A7%E3%81%AF%E3%81%82%E3%82%8A%E3%81%BE%E3%81%99%E3%81%8B%3F.png)
ツリーをもう少し整理整頓することはできますか? 現時点では、かなりごちゃごちゃしていて、どの説明がどの行を指しているかなど、よくわからないと思います。私の言っていることを理解していただければ幸いです。写真のように配置しようと思ったのですが、わかりません (テキストを回転させて行に合わせる方法)。誰か助けてくれる人はいませんか? ありがとうございます!!
\begin{document}
\begin{center}
\begin{tikzpicture}
[dot/.style={inner sep=0pt,minimum size=10pt,fill=black,circle}, ring/.style={inner sep=0pt,minimum size=10pt,draw,circle}]
\node[dot,label=90:{Spieler 1}] (n11) at (0,0) {};
\node[dot,label=135:{Spieler 2}] (n21) at (-4,-1) {};
\node[ring,label=:{}] (n22) at (4,-1) {};
\node[dot,label=-90:{$(0,0)$}] (n31) at (-6,-4) {};
\node[ring,label=:{}] (n32) at (-2,-4) {};
\node[dot,label=-90:{$(-1,1)$}] (n33) at (2,-4) {};
\node[dot,label=45:{Spieler 2}] (n34) at (6,-4) {};
\node[dot,label=-90:{$(1,-1)$}] (n41) at (-4,-7) {};
\node[dot,label=-90:{$(-2,2)$}] (n42) at (0,-7) {};
\node[ring,label=:{}] (n43) at (4,-7) {};
\node[dot,label=-90:{$(0.5,-0.5)$}] (n44) at (8,-7) {};
\node[dot,label=-90:{$(1,-1)$}] (n51) at (2,-10) {};
\node[dot,label=-90:{$(0,0)$}] (n52) at (6,-10) {};
\draw (n11) -- node[label=135:{passen}] {} (n21);
\draw (n11) -- node[label=45:{drehen}] {} (n22);
\draw (n21) -- node[label=135:{passen}:sloped] {} (n31);
\draw (n21) -- node[label=45:{drehen}] {} (n32);
\draw (n22) -- node[label=135:{Schuss}] {} (n33);
\draw (n22) -- node[label=45:{kein Schuss}] {} (n34);
\draw (n32) -- node[label=135:{Schuss}] {} (n41);
\draw (n32) -- node[label=45:{kein Schuss}] {} (n42);
\draw (n34) -- node[label=135:{passen}] {} (n43);
\draw (n34) -- node[label=45:{drehen}] {} (n44);
\draw (n43) -- node[label=135:{Schuss}] {} (n51);
\draw (n43) -- node[label=45:{kein Schuss}] {} (n52);
\end{tikzpicture}
\end{center}
\end{document}
答え1
ノードが必要です。たとえば、node[label=135:{passen}] {}
を変更しますnode[above,sloped] {passen}
。これにより、次のようになります。
完全なコードは次のとおりです。
\documentclass[border=3mm,
tikz,
preview
]{standalone}
\begin{document}
\begin{center}
\begin{tikzpicture}[
dot/.style={circle, fill=black, inner sep=0pt, minimum size=10pt},
ring/.style={circle, draw, inner sep=0pt, minimum size=10pt}
]
\node[dot,pin=90:{Spieler 1}] (n11) at (0,0) {};
\node[dot,label=135:{Spieler 2}] (n21) at (-4,-1) {};
\node[ring] (n22) at (4,-1) {};
\node[dot,label=-90:{$(0,0)$}] (n31) at (-6,-4) {};
\node[ring] (n32) at (-2,-4) {};
\node[dot,label=-90:{$(-1,1)$}] (n33) at (2,-4) {};
\node[dot,label=45:{Spieler 2}] (n34) at (6,-4) {};
\node[dot,label=-90:{$(1,-1)$}] (n41) at (-4,-7) {};
\node[dot,label=-90:{$(-2,2)$}] (n42) at (0,-7) {};
\node[ring] (n43) at (4,-7) {};
\node[dot,label=-90:{$(0.5,-0.5)$}] (n44) at (8,-7) {};
\node[dot,label=-90:{$(1,-1)$}] (n51) at (2,-10) {};
\node[dot,label=-90:{$(0,0)$}] (n52) at (6,-10) {};
\draw (n11) -- node[above,sloped] {passen} (n21);
\draw (n11) -- node[above,sloped] {drehen} (n22);
\draw (n21) -- node[above,sloped] {passen} (n31);
\draw (n21) -- node[above,sloped] {drehen} (n32);
\draw (n22) -- node[above,sloped] {Schuss} (n33);
\draw (n22) -- node[above,sloped] {kein Schuss} (n34);
\draw (n32) -- node[above,sloped] {Schuss} (n41);
\draw (n32) -- node[above,sloped] {kein Schuss} (n42);
\draw (n34) -- node[above,sloped] {passen} (n43);
\draw (n34) -- node[above,sloped] {drehen} (n44);
\draw (n43) -- node[above,sloped] {Schuss} (n51);
\draw (n43) -- node[above,sloped] {kein Schuss} (n52);
\end{tikzpicture}
\end{center}
\end{document}