tikz 是绘制此类模型最简单的方法吗?

tikz 是绘制此类模型最简单的方法吗?

我的手指快要失去控制,无法画出这个图形:

在此处输入图片描述

有人知道 tikz 是否是实现这一目标的最佳方法吗?

答案1

这应该是您需要的所有技术:

代码

\documentclass[parskip]{scrartcl}
\usepackage[margin=15mm]{geometry}
\usepackage{tikz}
\usetikzlibrary{arrows}

\begin{document}

\begin{tikzpicture}[-latex]
\node[draw] (t1) at (0,0) {Twin 1};
\node[draw,circle] (a1) at (-4,1) {A};
\node[draw,circle] (b1) at (2,2) {B};
\draw (a1) -- node[fill=white] {0.42} (t1);
\draw (b1) -- node[fill=white] {0.23} (t1);
\draw[latex-latex] (a1) to[out=45,in=135] node[fill=white] {0.69} (b1);
\end{tikzpicture}

\end{document}

结果

在此处输入图片描述

相关内容