Die 0 wird am Achsenschnittpunkt in der Voreinstellung unterdrückt. Man kann sie jedoch beispielsweise mit `extra x ticks` hinzufügen. Helle Helle/dünne Linien im Hintergrund auf entlang der markierten Werte der Achsen, nennt man *Grid*. Sie sind mit Option `grid` aktivierbar:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}% Generell zu empfehlen
%\usepackage{filecontents}
\begin{filecontents*}{asdf.csv}
0.540 -0.24
0.528 -0.21
0.515 -0.18
0.500 -0.15
0.483 -0.12
0.465 -0.09
0.445 -0.06
0.421 -0.03
0.393 0.
0.363 0.03
0.353 0.06
0.371 0.09
0.393 0.12
0.411 0.15
0.425 0.18
0.436 0.21
0.445 0.24
0.452 0.27
0.456 0.3
0.459 0.33
0.459 0.36
0.457 0.39
0.452 0.42
\end{filecontents*}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{axis}[ymin=0,ymax=0.6,xmin=-0.3,xmax=0.5,grid,
width=0.9\textwidth,
height=0.3\textheight,
title={Grenzformänderungsdiagramm},
extra x ticks={0},
ytick={0,0.1,0.2,0.3,0.4,0.5,0.6},
xlabel={$Eps_2$},
ylabel={$Eps_1$},
axis lines=middle
]
\addplot[very thick,no marks] table {asdf.csv};
\end{axis}
\end{tikzpicture}
\caption{TEST}
\label{asdf}
\end{figure}
\end{document}
![mit grid und 0-Punkt][1]
Option `xtick` habe ich entfernt, da diese Markierung bereits in der Voreinstellung wie gewünscht erfolgt.
Wie man an obigem Beispiel sieht, kommen sich die y-Achse und das Grid ins Gehege, wenn man die 0-Koordinate per `extra x ticks` markieren lässt. Das passiert nicht, wenn man entweder auf die 0-Koordinate verzichtet oder nur die y-Werte mit Grid-Linien anzeigen lässt:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}% Generell zu empfehlen
%\usepackage{filecontents}
\begin{filecontents*}{asdf.csv}
0.540 -0.24
0.528 -0.21
0.515 -0.18
0.500 -0.15
0.483 -0.12
0.465 -0.09
0.445 -0.06
0.421 -0.03
0.393 0.
0.363 0.03
0.353 0.06
0.371 0.09
0.393 0.12
0.411 0.15
0.425 0.18
0.436 0.21
0.445 0.24
0.452 0.27
0.456 0.3
0.459 0.33
0.459 0.36
0.457 0.39
0.452 0.42
\end{filecontents*}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{axis}[ymin=0,ymax=0.6,xmin=-0.3,xmax=0.5,ymajorgrids,
width=0.9\textwidth,
height=0.3\textheight,
title={Grenzformänderungsdiagramm},
extra x ticks={0},
try min ticks=6,
xlabel={$Eps_2$},
ylabel={$Eps_1$},
axis lines=middle
]
\addplot[very thick,no marks] table {asdf.csv};
\end{axis}
\end{tikzpicture}
\caption{TEST}
\label{asdf}
\end{figure}
\end{document}
![nur y-Linien][2]
Bei dieser Gelegenheit habe ich noch eine Alternative für die Angabe der Anzahl der Werte auf den Achsen eingebaut. Diese ist jedoch für das Ergebnis nicht zwingend.
Will man doch ein Grid parallel zu beiden Achsen, so kann man den Stil des *extra x ticks* so ändern, dass an dieser Stelle keine Grid-Linie gezeichnet und damit die Achse auch nicht überschrieben wird:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}% Generell zu empfehlen
%\usepackage{filecontents}
\begin{filecontents*}{asdf.csv}
0.540 -0.24
0.528 -0.21
0.515 -0.18
0.500 -0.15
0.483 -0.12
0.465 -0.09
0.445 -0.06
0.421 -0.03
0.393 0.
0.363 0.03
0.353 0.06
0.371 0.09
0.393 0.12
0.411 0.15
0.425 0.18
0.436 0.21
0.445 0.24
0.452 0.27
0.456 0.3
0.459 0.33
0.459 0.36
0.457 0.39
0.452 0.42
\end{filecontents*}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{axis}[ymin=0,ymax=0.6,xmin=-0.3,xmax=0.5,grid,
width=0.9\textwidth,
height=0.3\textheight,
title={Grenzformänderungsdiagramm},
extra x ticks={0},
extra x tick style={grid=none},
try min ticks=6,
xlabel={$Eps_2$},
ylabel={$Eps_1$},
axis lines=middle
]
\addplot[very thick,no marks] table {asdf.csv};
\end{axis}
\end{tikzpicture}
\caption{TEST}
\label{asdf}
\end{figure}
\end{document}
![Grid mit Auslassung an der y-Achse][3]
[1]: http://texwelt.de/wissen/upfiles/test40.png
[2]: http://texwelt.de/wissen/upfiles/test41.png
[3]: http://texwelt.de/wissen/upfiles/test42.png