tikz:箭头提示||

tikz:箭头提示||

我想|<->|在绘制命令中使用 的变体,但我希望尖端是箭头stealth。不幸的是,|stealth-stealth|绘制选项命令无法识别。

我怎样才能拥有隐形箭头?

\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
  \draw[|stealth-stealth|] (0, 0) -- (1, 0);
  \draw[| stealth-stealth |] (0, 0) -- (1, 0);
\end{tikzpicture}
\end{document}

答案1

使用tikz版本 3,您可以执行以下操作:

\documentclass[tikz]{standalone}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
  \draw[|{Stealth}-{Stealth}|] (0, 0) -- (1, 0);
  \draw[||{Stealth}-{Stealth}||] (0, 1) -- (1, 1);    %% || will produce thicker pipe
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容