像树,但有更多的箭头

像树,但有更多的箭头

获得以下树状图的最简单方法是什么?

在此处输入图片描述

答案1

另一种选择是,由于图表使用起来非常简单tikz-cd

在此处输入图片描述

\documentclass{article}
\usepackage{tikz-cd}
\usepackage{amsmath}
\begin{document}
\begin{tikzcd}
 &  & a &  &  \\
 & b \arrow[ru] &  & c \arrow[lu] &  \\
d \arrow[ru] &  & e \arrow[lu] \arrow[ru] &  & f \arrow[lu]
\end{tikzcd}
\end{document}

对于您的问题,您可以查看此链接来修改箭头的类型: 是否可以更改 TikZ/PGF 中箭头的大小?

下面是新的例子。我修改了一个箭头的粗细。 在此处输入图片描述

\documentclass{article}
\usepackage{tikz-cd}
\usetikzlibrary{arrows}
\usepackage{amsmath}
\begin{document}
\begin{tikzcd}
 &  & a &  &  \\
 & b \arrow[-triangle 90,
        line width=.8mm,ru] &  & c \arrow[lu] &  \\
d \arrow[ru] &  & e \arrow[lu] \arrow[ru] &  & f \arrow[lu]
\end{tikzcd}
\end{document}

答案2

TikZ 图库可以很简单地做到这一点:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{graphs}
\begin{document}
\begin{tikzpicture}
\graph[branch right, grow down] 
{a[x=1] <- {{b <- {d[x=-1],e}}, {c <- {e,f[x=1]}}}};
\end{tikzpicture}
\end{document}

代码输出

如果您希望图形更紧凑,就像您的图片一样,您可以减小分支宽度。由于节点调整也取决于该宽度,因此最好使用如下宏:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{graphs}
\newcommand*{\bw}{.5}
\begin{document}
\begin{tikzpicture}
\graph[branch right=\bw, grow down] 
{a[x=\bw] <- {{b <- {d[x=-\bw],e}}, {c <- {e,f[x=\bw]}}}};
\end{tikzpicture}
\end{document}

第二个代码的输出

答案3

环境也简单易行psmatrix

\documentclass{article}
\usepackage{pst-node}
\usepackage{auto-pst-pdf} %% to compile with pdflatex --enable-write18 (MiKTeX) or pdflatex --shell-escape (TeX Live, MacTeX))

\begin{document}%

\begin{psmatrix}[rowsep=1cm, colsep=0.9cm]
& &[name=a] a \\
& [name=b] b & & [name=c] c \\
[name=d] d & & [name=e] e & & [name=f] f
\foreach \beg/\targ in {b/a, c/a, d/b, e/b, e/c, f/c}{\ncline[arrows=->, arrowinset=0.12, nodesep=3pt]{\beg}{\targ}}
\end{psmatrix}

\end{document} 

在此处输入图片描述

答案4

匆忙尝试 MetaPost 及其boxes包,包含在 LuaLaTeX 程序中。

\RequirePackage{luatex85}
\documentclass[border=5mm]{standalone}
\usepackage{luamplib}
    \mplibtextextlabel{enable}
\begin{document}
\begin{mplibcode}
input boxes;
def junction(suffix a, b) =
    drawarrow a.c -- b.c cutbefore bpath.a cutafter bpath.b;
enddef;
h := 1.25cm; v := 1cm;
beginfig(1);
    forsuffixes z = a, b, c, d, e, f: circleit.z(str z); endfor;
    e.c = origin; f.c = (h, 0) = - d.c;  
    b.c = (-.5h, v); c.c = (.5h, v);
    a.c = (0, 2v);
    drawunboxed(a, b, c, d, e, f);
    junction (b, a); junction(c, a);
    junction(d, b); junction(e, b);
    junction(e, c); junction(f, c);
endfig;
\end{mplibcode}
\end{document}

在此处输入图片描述

如果我使用了,它肯定会被更熟练地编码,例如,metaobj包,但我对它不够了解。

相关内容