Wie kann ich bei pgfplots die Pfeilspitzen der Koordinatenachsen editieren?
... kann das sein, daß das nicht trivial ist?
Ich hätte gerne einen normlen normalen geschlossenen Pfeil (bekannt aus Tech. Zeichnen usw.).
Danke!
![alt text][1]
\documentclass[border=2pt, varwidth]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{arrows}
\pgfplotsset{compat=1.10}
\begin{document}
%\tikzset{latexarrowhead/.style={>=latex}} bringt nichts
SOLL: \\
\tikz[]{\draw[->, >=latex] (0,0) -- (3,0);} \\
IST:
\begin{tikzpicture}[scale=1]
\begin{axis}[
%axis line style={-, latexarrowhead}, %bringt nichts
axis y line = left,
axis x line = bottom,
xtick = \empty,
ytick = \empty,
samples = 150,
xmin = 0,
ymax = 5,
enlarge x limits={abs=0.5,upper},
enlarge y limits={abs=5,lower},
xlabel style={at={(rel axis cs:1,0)}},
xlabel=$x$,
ylabel style={at={(rel axis cs:0,1)},rotate=-90},
ylabel=$y$,
]
\addplot[color=black] {5/x-7};
\end{axis}
\end{tikzpicture}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/Namenlos-1a_6.png