矢印なしの接続 2024-6-16 • tikz-pgf packages tikz-styles tikz-arrows コードを検討する \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} 関連情報