Solved what said in next note, figure just uploaded:
----------------
PS: unable to attach the suitable screenshot. Why not allowed by the forum platform? A figure is often better than thousands of words!
--------
Code: Select all
\documentclass{article} \usepackage{tikz} \usepackage[active,tightpage]{preview} \PreviewEnvironment{center} \setlength\PreviewBorder{10pt} \tikzstyle{axis} = [-latex,blue!55] \tikzstyle{two}=[x={(0.75cm,0cm)},y={(0cm,0.75cm)}] \begin{document} \begin{center} \begin{tikzpicture}[two] \coordinate (O) at (0,0); \draw[axis] (O) -- ++(4,0) node[right] {$x$}; \draw[axis] (O) -- ++(0,6) node[above] {$y$}; % --- 1 ---- \foreach \y in {0.5,0.75,...,2.5} { % 1st triangle shaped arrows \draw[-latex] (-1*\y/2.5,\y) -- (0,\y); } % --- 2 ---- \foreach \y in {2.5,2.75,...,5} { % (trouble) 2nd triangle shaped arrows \draw[-latex] (1*\y/2.5,\y) -- (0,\y); } \end{tikzpicture} \end{center} \end{document} %