Hallo,

ich würde gerne wissen, wie man in LaTeX (Tikz) die y-Achse so skaliert, dass statt 1, 2, 3, .... steht e^1, e^2, e^3,...., wobei nicht nur der Text geändert werden soll! , dabei soll die x-Achse linear bleiben. Cool wären auch noch waagrechte Hilfslinien. Mein erster Ansatz war:
Code:
\begin{tikzpicture}[x=10mm,y=10mm]
\begin{axis}[ xmode=linear, 
scaled y ticks=manual:{}{\pgfmathparse{exp(#1)}}, 
samples=100]
  \addplot {x};
\end{axis}
\end{tikzpicture}
MfG Michael