無箭頭連接 2024-6-18 • 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} 相關內容