答案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
包,但我对它不够了解。