同じグラフィックを繰り返し含む図を生成しようとしています。以下のサンプル グラフィックを参照してください。
生成方法は次の通りです:
\documentclass[tikz, border=2px]{standalone}
\usetikzlibrary{shapes.misc, shapes.geometric}
\begin{document}
\tikzset{
line/.style={-, draw=black!30, line width=1pt},
}
\begin{tikzpicture}[node distance=2cm]
\node[draw=black!30, rectangle, minimum height=8mm, minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle corners={south west, south east},chamfered rectangle xsep=2pt, below] at (0, 0) (b1) {} ;
\node[draw=black!30, rectangle, minimum height=8mm, minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle corners={south west, south east},chamfered rectangle xsep=2pt, below] at (1, 1) (b2) {} ;
\node[draw=black!30, rectangle, minimum height=8mm, minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle corners={south west, south east},chamfered rectangle xsep=2pt, below] at (0, 2) (b3) {} ;
\draw[line] (b1) -- (b2) -- (b3);
\end{tikzpicture}
\end{document}
面取りされた長方形を .pic として定義して、後で\path
コマンドで使用できるようにします。
私は次のようなものを探しています:
\tikzset{
line/.style={-, draw=black!30, line width=1pt},
box/.pic={
\draw[draw=black!30, rectangle, minimum height=8mm, minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle corners={south west, south east},chamfered rectangle xsep=2pt, below] (0, 0);
},
}
\begin{tikzpicture}[node distance=2cm]
\path[line] (0, 0) pic {box} --
(1, 1) pic {box} --
(0, 2) pic {box};
\end{tikzpicture}
答え1
このようなものをお探しですか?
\documentclass[tikz, border=2px]{standalone}
\usetikzlibrary{shapes.misc, shapes.geometric}
\begin{document}
\tikzset{
line/.style={-, draw=black!30, line width=1pt},
}
\begin{tikzpicture}[mycham/.style={draw=black!30, rectangle, minimum height=8mm,
minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle
corners={south west, south east},chamfered rectangle
xsep=2pt},pics/champic/.style={code={\node[mycham] (-node){};}}]
\path (0, 0) pic (b1) {champic}
-- (1, 1) pic (b2){champic}
-- (0,2) pic (b3){champic};
\draw[line] (b1-node) -- (b2-node) -- (b3-node);
\end{tikzpicture}
\end{document}
定義できるのはpic
この場合も使用しますpics/champic/.style={code={\node[mycham] (-node){};}}
。しかし、私の知る限り、この構文は柔軟性に欠けます。picに複数の引数を渡したい場合を考えてみましょう。
\documentclass[tikz, border=2px]{standalone}
\usetikzlibrary{shapes.misc, shapes.geometric}
\begin{document}
\tikzset{
line/.style={-, draw=black!30, line width=1pt},
}
\begin{tikzpicture}[mycham/.style={draw=black!30, rectangle, minimum height=8mm,
minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle
corners={south west, south east},chamfered rectangle
xsep=2pt},pics/champic/.style n args={2}{code={\node[mycham,#2] (-node){#1};}}]
\path (0, 0) pic (b1) {champic={A}{blue}}
-- (1, 1) pic (b2){champic={B}{red}}
-- (0,2) pic (b3){champic={C}{green!70!black}};
\draw[line] (b1-node) -- (b2-node) -- (b3-node);
\end{tikzpicture}
\end{document}
ご覧のとおり、ここで選択した構文では問題ありませんが、構文では/.pic=
その方法がわかりません。
もちろん、パラメータがなく、パラメータが必要ないと確信している場合は、次のようにすることができます。
\documentclass[tikz, border=2px]{standalone}
\usetikzlibrary{shapes.misc, shapes.geometric}
\begin{document}
\tikzset{
line/.style={-, draw=black!30, line width=1pt},
}
\begin{tikzpicture}[mycham/.style={draw=black!30, rectangle, minimum height=8mm,
minimum width=8mm,line width=1pt, chamfered rectangle,chamfered rectangle
corners={south west, south east},chamfered rectangle
xsep=2pt},champic/.pic={\draw (0,0) node[mycham] (-node){};}]
\path (0, 0) pic (b1) {champic}
-- (1, 1) pic (b2){champic}
-- (0,2) pic (b3){champic};
\draw[line] (b1-node) -- (b2-node) -- (b3-node);
\end{tikzpicture}
\end{document}
あなたのおっしゃる通りです。