論文のアウトライン用に、次の図のようなフローチャートを LaTeX で作成したいと思います。次のコードを適応させようとしましたが、C、D、E の配置に行き詰まってしまいました。どなたか助けていただけないでしょうか? よろしくお願いします!
編集済み:
\begin{figure}
\centering
\begin{tikzpicture}[node distance=1.5cm]
\node (introduction) [structure] {Thesis};
\node (methodology) [structure, below =1.5cm of introduction] {A};
\node (theoretical) [structure, below =1.5cm of methodology] {B};
\node (model) [structure, below of=theoretical] {C};
\node (interviews) [structure, below of=model] {D};
\node (results) [structure, below of=interviews] {E};
\node (discussion) [structure, below =of results] {F};
%arrows
\draw [arrow] (introduction) -- (methodology);
\draw [arrow] (methodology) -- (theoretical);
\draw [arrow] (theoretical) -- (model);
\draw [arrow] (model) -- (interviews);
\draw [arrow] (interviews) -- (results);
\draw [arrow] (results) -- (discussion);
\end{tikzpicture}
\caption{OUTLINE}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%
答え1
の幅はB
非常に手動ですが、この単純な例ではそれほど複雑ではありません。
コード
\documentclass[tikz]{standalone}
\usetikzlibrary{arrows.meta, chains, ext.paths.ortho}
\begin{document}
\begin{tikzpicture}[
node distance = 10mm and 5mm,
box/.style = {
rectangle, draw, font=\strut, minimum width=25mm, minimum height=10mm},
boxie/.style = {box, minimum width=15mm},
arr/.style = -Triangle,
start chain = ch going below, every join/.append style=arr]
\node[box, on chain] {Thesis};
\node[box, on chain, join] {A};
\node[box, on chain, join, minimum width = 3*15mm + 2*5mm + 2\pgflinewidth] {B};
\node[boxie, on chain, join] {D};
\scoped[start branch=left going base left]
\node[boxie, on chain, join=with ch-3 by only vertical second]{C};
\scoped[start branch=right going base right]
\node[boxie, on chain, join=with ch-3 by only vertical second]{E};
\node[box, on chain, join,
join=with ch/left-end by vertical horizontal,
join=with ch/right-end by vertical horizontal] {F};
\end{tikzpicture}
\end{document}
出力
答え2
うーん、どうやら構文が間違っているようです。そこで、コードを修正するのではなく、構文の一部と LaTeX の選択肢をいくつか示すことにしました。基本的なトピック:
- 少なくとも最初の音符を絶対座標で配置する
- この例では2番目も絶対座標で配置しました
- 相対的な位置指定を使用する方が便利です。ここでは
below
、left
right
- 方法論の後の矢印を少し変えました
- Th.cと同じようにすべて行うことができ、見た目も良くなります
- Th.dには他の接続ポイントが表示されます。絶対座標で移動することもできます。
- Th.c to Resultsはあなたのスケッチを模倣します
- 反対側では、このように見えることがあります
まだやっていない場合は、まずは簡単な紹介をしましょう。https://www.ctan.org/pkg/pgf。
\documentclass[10pt,border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}% needed for relative positioning
\begin{document}
% demonstarting some choices
\tikz{
% ~~~ nodes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% absolute coordinates
\node [draw] (T) at (0,0) {Thesis};% [draw] will draw the box around the node
\node [draw] (A) at (0, -1) {Introduction};
% relative coordinates from now on
\node [draw] (B) [below=of A] {Methodology};
\node [draw] (D) [below=of B] {Theoretical d};
\node [draw] (C) [left=of D] {Theoretical c};
\node [draw] (E) [right=of D] {Theoretical e};
\node [draw] (F) [below=of D] {Results};
% ~~~ arrows ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\draw [->] (T) -- (A);% straight
\draw [->] (A) -- (B);
\draw [->] (B) -- (D);
\draw [->] (D) -- (F);
\draw [->] (B) -- (C);
\draw [->] (B.east) -- (E.north east);
\draw [->] (C) |- (F);% first down, then horizontally
\draw [->] (E) to [bend left] (F);
}
\end{document}
答え3
出発点として役立つものを作成しました。本物の魔法使いが解決する方法ではないかもしれませんが、機能します。
序文では次のように書かなければなりませんでした
\usetikzlibrary{positioning,shapes,shadows,arrows,calc,arrows.meta}
\tikzstyle{structure} = [rectangle, minimum width=3cm, minimum height=1cm, align=center, text width=2.5cm, draw=black, very thick]
\tikzstyle{arrow}=[-,ultra thick,{-Stealth[]}]
これらの定義を使用すると、次のコードは、あなたの図に多少似た図を生成します。
\begin{tikzpicture}[node distance=1.5cm]
\node (introduction) [structure] {Thesis};
\node (methodology) [structure, below of=introduction, yshift=-0.5cm] {A};
\node (theoretical) [structure, below of=methodology, yshift=-0.5cm] {B};
\node (model) [structure, below of=theoretical, xshift=-4cm, yshift=-0.5cm] {C};
\node (interviews) [structure, right of=model, xshift=2.5cm] {D};
\node (results) [structure, right of=interviews, xshift=3cm] {E};
\node (discussion) [structure, below of=interviews, yshift=(-0.5cm)] {F};
%lines
\draw [arrow] (introduction.south) -- (methodology.north);
\draw [arrow] (methodology.south) -- (theoretical.north);
\draw [arrow] ($(theoretical.south west)!.3!(theoretical.south)$) -- ++(0.0,-0.5) -| (model.north);
\draw [arrow] (theoretical.south) -- ++(0,-0.5) -| (interviews.north);
\draw [arrow] ($(theoretical.south)!.7!(theoretical.south east)$) -- ++(0.0,-0.5) -| (results.north);
\draw [arrow] (model.east) -- (interviews.west);
\draw [arrow] (interviews.east) -- (results.west);
\draw [arrow] (model.south) -- ++(0.0,-0.5)-| ($(discussion.north west)!.3!(discussion.north)$);
\draw [arrow] (interviews) -- ++(0,-1) -| (discussion);
\draw [arrow] (results) -- ++(0,-1) -| ($(discussion.north)!.7!(discussion.north east)$);
\end{tikzpicture}