无箭头连接

无箭头连接

考虑一下代码

\documentclass[border=4pt]{standalone}
\usepackage{schemabloc}

\begin{document}
\begin{tikzpicture}
    \sbEntree{E}
    \sbBloc[0]{B1}{1}{E}
    \sbBloc[3]{B2}{2}{B1}
    \sbRelier{B1}{B2}
\end{tikzpicture}
\end{document}

产生

在此处输入图片描述

使用schemabloc,有没有办法建立没有箭头的连接?

答案1

库奇?

\documentclass[border=4pt]{standalone}
\usepackage{schemabloc}
\begin{document}

\begin{tikzpicture}
\tikzstyle{sbStyleLien}=[-,>=latex']
    \sbEntree{E}
    \sbBloc[0]{B1}{1}{E}
    \sbBloc[3]{B2}{2}{B1}
    \sbRelier{B1}{B2}
\end{tikzpicture}

\end{document} 

在此处输入图片描述

相关内容