私は LaTeX と Tikz を初めて使用しており、それらを使用してブロック図を描画したいと考えていました。しかし、いくつか問題があります。私が持っているいくつかの質問について、どなたか助けていただけませんか?
塗りつぶされたボックスの中央に「このテキスト」を記述し、text0 と text 6 のボックスが表示されないようにするにはどうすればよいでしょうか?
ボックスの間や矢印の上にテキストを書くにはどうすればいいですか?
個々のボックスのサイズを制御し、異なる矢印の形状を設定する方法はありますか?
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,positioning,fit,backgrounds}
\tikzstyle{block} = [draw, rectangle, align=center, text width=2.4cm, text centered, minimum height=1.2cm, node distance=3.5cm,fill=white]
\tikzstyle{container} = [draw, rectangle, inner sep=0.3cm, fill=gray,minimum height=3cm]
\def\bottom#1#2{\hbox{\vbox to #1{\vfill\hbox{#2}}}}
\tikzset{
mybackground/.style={execute at end picture={
\begin{scope}[on background layer]
\node[] at (current bounding box.north){\bottom{1cm} #1};
\end{scope}
}},
}
\begin{document}
\resizebox{14cm}{3cm}{%
\begin{tikzpicture}[>=latex',mybackground={This text}]
\node [block, name= text0] (text0){text0};
\node [block, right of=text0](text1) {text1};
\node [block, right of=text1] (text2) {text2};
\node [block, right of=text2] (text3) {text3};
\node [block, right of=text3] (text4) {text4};
\node [block, right of=text4] (text5) {text5};
\node [block, right of=text5] (text6) {text6};
\begin{scope}[on background layer]
\node [container,fit= (text3) (text4)] (container) {};
\end{scope}
\draw [->] (text0) -- (text1);
\draw [->] (text1) -- (text2);
\draw [->] (text2) -- node {}(text3);
\draw [->] (text3) -- node {}(text4);
\draw [->] (text4) -- node {} (text5);
\draw [->] (text5) -- node {} (text6);
\end{tikzpicture}
}
\end{document}
答え1
以下の例があなたの要求をすべて満たしてくれることを願っています。
\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{arrows.meta,
backgrounds,
chains,
fit,
quotes}
\begin{document}
\begin{tikzpicture}[auto,
node distance = 15mm,
start chain = A going right,
block/.style = {draw, fill=white,
text width=#1, minimum height=12mm, align=center,
outer sep=0pt, on chain},
block/.default = 18mm,
container/.style = {draw, fill=gray!50,
inner xsep=2mm, inner ysep=7mm},
]
\node [block] {text 0}; % block name is A-1
\node [block] {text 1};
\node [block] {text 2};
\node [block=22mm] {text 3}; % block name is A-4
\node [block=11mm] {text 4}; % block name is A-5
\node [block] {text 5};
\node [block] {text 6}; % block name is A-7
%
\scoped[on background layer]
\node [container, label={[anchor=north]This text},
fit= (A-4) (A-5)] (container) {};
\draw [-Stealth]
(A-1) edge ["text 1"] (A-2) % text on arrow is between " and "
(A-2) edge ["text 2"] (A-3)
(A-3) edge ["text 3"] (A-4)
(A-4) edge ["text 4"] (A-5)
(A-5) edge ["text 5"] (A-6)
(A-6) edge ["text 5"] (A-7);
\end{tikzpicture}
\end{document}
- ブロック図はシンプルで、すべてのブロックがチェーン状になっているため、
chains
配置にはライブラリを使用することをお勧めします(ブロック間の距離は等しいと想定されますが、一部が異なる場合は、ローカル使用で変更できます)。right=of <name previous block>
- ブロック間の矢印のテキストは、ライブラリの助けを借りて簡単に記述できます
quotes
。(<node name i>) edge [" your text"] (<node name i+1>)
- 最初の質問は理解できませんでした。申し訳ありません!!
- 使用しないでください
\resizebox
。画像の見栄えが悪くなります。代わりにブロック、フォント、ブロック間の距離のサイズを変更してください。 - を使用すると、
arrows.meta
矢印の先端のサイズ (長さ、幅、角度など) を簡単に調整できます。詳細については、「tikz & pgf manual, v 3.0.1a」のセクション「16.5 Reference: Arrow Tips」の 201 ページを参照してください。以下の mwe ではデフォルト値を使用していますが、たとえば次のように実験することもできます (前述のマニュアルの 209 ページを参照)。
\draw[-{Stealth[length=2mm,width=3mm,inset=0.5mm]}] ...