
\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows.meta}
\begin{document}
\tikzset{%
parallelone/.style={%
decoration={markings, mark= at position #1 with
{\arrow[line width=0.5mm, stealth-]{Latex[length=2.5mm, width=2mm]}}},
postaction={decorate}
},
parallelone/.default=0.5,
}
\begin{tikzpicture}
\draw[parallelone] (0,0)--(4,4);
\end{tikzpicture}
\end{document}
(同様の質問がすでに出されていることは承知しております。)
複数の引数を扱うには、 が必要だと思いますpgfkeys
が、まだ混乱しています (たとえば、上記の例では、多少ネストされています)。これに関する簡単なチュートリアルはありますか? または、上記のケースについて、ステップバイステップの説明を提供してくれる人はいますか? (つまり、使用中に変更する必要がある可能性のあるキーをいくつでも作成します (矢印の線の幅、矢印の種類、長さ、幅など)。)
答え1
チュートリアルについてお尋ねなので、2つのステップでお答えします。(私見では、pgfmanualは優れたチュートリアルです。特に、このサイトにある例を理解するために使用すると効果的です。)できるスタイルを複数のパラメータに依存させる。しかし、1つだけ変更したい場合でも、常にすべてのパラメータを指定する必要があります。したがって、デフォルト値でパラメータをpgfkeysに保存する方が簡単だと主張したいと思います。これは、
\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows.meta}
\begin{document}
\tikzset{%
parallelone arrow length/.initial=2.5mm,
parallelone arrow width/.initial=2mm,
parallelone arrow type/.initial=Latex,
parallelone/.style={%
decoration={markings, mark= at position #1 with
{\arrow{\pgfkeysvalueof{/tikz/parallelone arrow type}[length=\pgfkeysvalueof{/tikz/parallelone arrow length},
width=\pgfkeysvalueof{/tikz/parallelone arrow width}]}}},
postaction={decorate}
},
parallelone/.default=0.5
}
\begin{tikzpicture}
\draw[parallelone] (0,0)--(4,4);
% change the length and poisition
\draw[parallelone=0.7,parallelone arrow length=5mm] (1,0)--(5,4);
% change the type. the length is back to its initial or default values
\draw[parallelone,parallelone arrow type=Stealth] (2,0)--(6,4);
% change the width. the other paraneters are at their initial or deault values
\draw[parallelone,parallelone arrow width=5mm] (3,0)--(7,4);
\end{tikzpicture}
\end{document}
parallelone arrow
もちろん、ある時点で、常にの前に入力したくないtype
、などと決めることもあります。これがキー ファミリの目的です。その場合、タイプを変更したい場合にのみ を指定し、その他はすべて既定値のままにしておくlength
ことができます。\draw[parallelone={type=Stealth}]
\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows.meta}
\begin{document}
\tikzset{%
parallelone/.style={%
/utils/exec=\tikzset{parallelone arrow/.cd,#1},
decoration={markings, mark= at position \pgfkeysvalueof{/tikz/parallelone arrow/pos} with
{\arrow{\pgfkeysvalueof{/tikz/parallelone arrow/type}[%
length=\pgfkeysvalueof{/tikz/parallelone arrow/length},%
width=\pgfkeysvalueof{/tikz/parallelone arrow/width}]}}},
postaction={decorate}
},
parallelone/.default={pos=0.5},
parallelone arrow/.is family,
parallelone arrow/.cd,
pos/.initial=0.5,
length/.initial=2.5mm,
width/.initial=2mm,
type/.initial=Latex,
}
\begin{tikzpicture}
\draw[parallelone] (0,0)--(4,4);
% change the length and poisition
\draw[parallelone={pos=0.7,length=5mm}] (1,0)--(5,4);
% change the type. the length is back to its initial or default values
\draw[parallelone={type=Stealth}] (2,0)--(6,4);
% change the width. the other parameters are at their initial or deault values
\draw[parallelone={width=5mm}] (3,0)--(7,4);
\end{tikzpicture}
\end{document}
同じ機能を持つ2つの矢印が必要な場合は、
\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows.meta}
\begin{document}
\tikzset{%
parallelone/.style={%
/utils/exec=\tikzset{parallelone arrow/.cd,#1},
decoration={markings, mark= at position \pgfkeysvalueof{/tikz/parallelone arrow/pos} with
{\arrow{\pgfkeysvalueof{/tikz/parallelone arrow/type}[%
length=\pgfkeysvalueof{/tikz/parallelone arrow/length},%
width=\pgfkeysvalueof{/tikz/parallelone arrow/width}]}}},
postaction={decorate}
},
paralleltwo/.style={%
/utils/exec=\tikzset{parallelone arrow/.cd,#1},
decoration={markings, mark= at position \pgfkeysvalueof{/tikz/parallelone arrow/pos} with
{\arrow{\pgfkeysvalueof{/tikz/parallelone arrow/type}[%
length=\pgfkeysvalueof{/tikz/parallelone arrow/length},%
width=\pgfkeysvalueof{/tikz/parallelone arrow/width}]%
\pgfkeysvalueof{/tikz/parallelone arrow/type}[%
length=\pgfkeysvalueof{/tikz/parallelone arrow/length},%
width=\pgfkeysvalueof{/tikz/parallelone arrow/width}]}}},
postaction={decorate}
},
parallelone/.default={pos=0.5},
parallelone arrow/.is family,
parallelone arrow/.cd,
pos/.initial=0.5,
length/.initial=2.5mm,
width/.initial=2mm,
type/.initial=Latex,
}
\begin{tikzpicture}
\draw[paralleltwo] (0,0)--(4,4);
% change the length and poisition
\draw[parallelone={pos=0.7,length=5mm}] (1,0)--(5,4);
% change the type. the length is back to its initial or default values
\draw[parallelone={type=Stealth}] (2,0)--(6,4);
% change the width. the other parameters are at their initial or deault values
\draw[parallelone={width=5mm}] (3,0)--(7,4);
\end{tikzpicture}
\end{document}