Pdf4Eclipse
Pdf4Eclipse copied to clipboard
Rendering error for small arrow tips
I use pdf4eclipse along texlipse for latex document generation. I make my diagrams using pgfplots. I noticed that the arrow tips of very short arrows appear very weird and deform into big blobs in pdf4eclipse. The attached file gives an example of this behaviour. It has been generated by the following latex code:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\begin{document}
\begin{tikzpicture}[arrow1/.style={->,color=blue}]
\begin{axis}[xmin=-0.1,
xmax=.1,
ymin=0,
ymax=1]%,
\addplot [arrow1] coordinates{(-0.0944,0.1471)
(-0.0943,0.1425)};
\end{axis}
\end{tikzpicture}
\end{document}