私は tikz 初心者です。下の図 (特に左上、右上、右下のチェーン) を再現しようとしています。最初は次のようにしました。
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\tikzstyle{tensor} = [circle, inner sep = 0pt, minimum size = 0.2cm]
\tikzstyle{QTensor} = [tensor, draw, fill=green!50, minimum size = 0.3cm]
\tikzstyle{delta} = [tensor, draw, fill=red!50, minimum size = 0.4cm]
\tikzstyle{ellipsisNode} = [tensor, minimum size = 0.7cm]
% Draw delta tensors
\foreach \x in {2, 4}
\foreach \y in {2, 4}
\node[delta] (\x-\y) at (\x, \y) {};
% Draw Q tensors
\foreach \x in {1, 3, 5}
\foreach \y in {2, 4}
{
\node[QTensor] (\x-\y) at (\x, \y) {};
\node[QTensor] (\y-\x) at (\y, \x) {};
}
% Draw ellipsis nodes
\foreach \x in {0, 6}
\foreach \y in {2, 4}
{
\node[ellipsisNode] (\x-\y) at (\x, \y) {$\cdots$};
\node[ellipsisNode, rotate = 90] (\y-\x) at (\y, \x) {$\dots$};
}
% Connections
\foreach \x in {0, ..., 5}
\foreach \y in {2, 4}
{
\pgfmathtruncatemacro{\neighbor}{\x + 1};
\draw (\x-\y) -- (\neighbor-\y);
\draw (\y-\x) -- (\y-\neighbor);
}
\end{tikzpicture}
\end{document}
この作業は大変だと思います。これほど多くの座標を追跡したくありません。位置決めライブラリを使用する必要がありますか? 異なるポイントを基準とした座標系を使用できますか? または、別々の tikz 画像を作成して矢印で結合できますか?
このタイプのイメージをさらにいくつか作成する必要があるため、最も保守しやすく慣用的なソリューションに興味があります。
これまでの私の成果:
答え1
頻繁に再利用される tikz コードの一部については、pics
スタイルを定義する価値があります。その後、を使用してコードを描画できます\draw (0,0) pic{<pics name>};
。これについては、tikz マニュアル (バージョン 3.0.1a) のセクション 18.2 で詳しく説明されています。ダイアグラムの繰り返しコンポーネントに pics を定義したら、ループを使用してそれらを必要な場所に配置するのは比較的簡単です\foreach
。
この方法を実行すると、次の2つの画像が生成されます。
次のコードを使用します:
\documentclass{article}
\usepackage{tikz}
\tikzset{% define pic styles
pics/array/.style={
code={\draw(-0.6,0)--+(1.2,0);
\draw(0,-0.6)--+(0,1.2);
\draw[fill=red!50] circle[red!50,radius=4pt](0,0);
\foreach \a in {0.5,-0.5} {
\draw[fill=green!50] (0,\a) circle[radius=2pt];
\draw[fill=green!50] (\a,0) circle[radius=2pt];
}
}
},
pics/semiarray/.style={
code={\draw[rounded corners, fill=yellow!20](-0.45,-0.45) rectangle +(0.9,0.9);
\draw(-0.6,0)--+(1.2,0); % draw the "axes" over the top of the shading
\draw(0,-0.6)--+(0,1.2);
\draw[fill=red!50] circle[red!50,radius=4pt](0,0);
\draw[fill=green!50](-0.35,-0.1) -- +(0,0.2) arc(90:-90:0.1) -- cycle; % semicircles
\draw[fill=green!50](0.35,0.1) -- +(0,-0.2) arc(270:90:0.1) -- cycle;
\draw[fill=green!50](-0.1,0.35) -- +(0.2,0) arc(0:-180:0.1) -- cycle;
\draw[fill=green!50](-0.1,-0.35) -- +(0.2,0) arc(0:180:0.1) -- cycle;
}
},
}
\begin{document}
\begin{tikzpicture}
\foreach \x in {0,...,4} {
\draw[dotted](-0.4,\x)--+(-0.5,0);
\draw[dotted](4.4,\x)--+(0.5,0);
\draw[dotted](\x,-0.4)--+(0,-0.5);
\draw[dotted](\x,4.4)--+(0,0.5);
}
\foreach \x in {0,...,4} {
\foreach \y in {0,...,4} {
\draw(\x,\y) pic{array};
}
}
\end{tikzpicture}
\begin{tikzpicture}
\foreach \x in {0,...,4} {
\draw[dotted](-0.4,\x)--+(-0.5,0);
\draw[dotted](4.4,\x)--+(0.5,0);
\draw[dotted](\x,-0.4)--+(0,-0.5);
\draw[dotted](\x,4.4)--+(0,0.5);
}
\foreach \x in {0,...,4} {
\foreach \y in {0,...,4} {
\draw(\x,\y) pic{semiarray};
}
}
\end{tikzpicture}
\end{document}
コマンド内の座標は が配置されているpics
場所を基準にしていることに注意してくださいpic
。pics
コマンドは引数を取ることもできます(たとえば、TikZを使った簡単な描画)。