有没有办法通过流程图中的文本“打破”垂直箭头?我只需要在箭头中留出一个间隙,让文本穿过。
答案1
以下是使用以下链接的示例: 同时标记连接节点和箭头尖的路径
代码如下:
\documentclass{standalone}
\usepackage{tikz}
\tikzset{
mylabel/.style = {font=\footnotesize, midway, fill=white, anchor=center}
}
\begin{document}
\tikzstyle{block} = [rectangle, draw, fill=blue!20,
text width=5em, text centered, rounded corners, minimum height=4em]
\begin{tikzpicture}[node distance = 4cm, auto]
\node [block] (a) {a};
\node [block, below of=a] (b) {b};
\draw (a) -- (b) node[mylabel] {Test};
\end{tikzpicture}
\end{document}