重复箭头

重复箭头

我需要在这里做什么改变才能使箭头出现在最右边全部线段而不仅仅是最后一条?

\documentclass{article}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\draw[-latex]
 (0,0)--(1,0)
 (1.5,0)--(2.5,0);
\end{tikzpicture}

\end{document}

答案1

使用edge

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\path[-latex]
 (0,0) edge (1,0)
 (1.5,0) edge (2.5,0);
\end{tikzpicture}

\end{document}

在此处输入图片描述

您尝试

\draw[-latex]
 (0,0)--(1,0)
 (1.5,0)--(2.5,0);

不起作用,因为\draw[-latex]指示将箭头尖端放在路径的末尾(2.5,0)\draw构建单一路径);另一方面,使用edge暂时暂停当前路径的构建,并构建新路径并将箭头尖端添加到每个路径。

相关内容