连接从底部开始

连接从底部开始

我在用schemabloc包绘制一些框图。考虑以下最小代码:

\documentclass[margin=10pt]{standalone}
\usepackage{schemabloc}

\begin{document}
\begin{tikzpicture}
    \sbEntree{E}
    \sbBloc{A}{$A$}{E}
    \sbDecaleNoeudy[-4]{A}{u}
    \sbBloc[4]{B}{$B$}{u}
    \sbRelieryx{A}{B}
\end{tikzpicture}
\end{document}

它产生以下输出:

在此处输入图片描述

我们看到,箭头从A块的底部开始,如何让它从A块的顶部开始呢?

相关内容