矢印なしの接続

矢印なしの接続

コードを検討する

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

ここに画像の説明を入力してください

関連情報