绘制现金流

绘制现金流

我想知道是否有任何方法可以在 LaTeX 上绘制此类图表。这些是现金流,我需要绘制一些并将它们集成到我的 tex 文档中。

在此处输入图片描述

答案1

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}[thick]
\draw (0,0) -- (5,0);
\foreach \Y [count=\X starting from 0] in {2,-1,-1,1,-2}
{\draw[-latex] (\X,0) node[below left]{\X} (\X,{-0.1*sign(\Y)}) -- (\X,\Y)
node[anchor={sign(\Y)*(-90)}]{$F_{\X}$};}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容