Anschluss ohne Pfeil

Anschluss ohne Pfeil

Betrachten Sie den Code

\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}

das erzeugt

Bildbeschreibung hier eingeben

Gibt schemabloces eine Möglichkeit, eine Verbindung ohne Pfeil herzustellen?

Antwort1

Stimmt's?

\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} 

Bildbeschreibung hier eingeben

verwandte Informationen