如何在流程图中添加“小于”符号?

如何在流程图中添加“小于”符号?

这是使用 tikz 包的边缘绘制命令。我想Blinks < 3在线上显示。

\path [line] (L) -- node {Blinks 3}(N); 

谢谢!

答案1

您可以将数学放在节点的内容中。在这种情况下,您需要行内数学,因此

\path [line] (L) -- node[above] {Blinks $< 3$}(N);

可以。另一方面,如果你正在加载amsmath包,你也可以使用

\path [line] (L) -- node[above] {$\text{Blinks} < 3$}(N);

请记住,\text宏是通过amsmath将文本置于数学模式来定义的。

梅威瑟:

\documentclass[tikz]{standalone}
%\usepackage{amsmath}  %% needed for \text
\tikzset{line/.style={draw, -stealth,blue,thick}}
\begin{document}
  \begin{tikzpicture}
    \node (L) {L};
    \node (N) at (4,0) {N};
    \path [line] (L) -- node[above,font=\footnotesize] {Blinks $< 3$}(N);
    %\path [line] (L) -- node[above,font=\footnotesize] {$\text{Blinks} < 3$}(N);
  \end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容