Ich denke nicht, dass solche Profile den Weg in `pgfplots` finden werden, da es unendlich viele solche Profile gibt. Man kann sich aber leicht selbst welche basteln mit `\pgfplotsset` und einer eigenen Cycle List.
\documentclass{article}
\usepackage{pgfplots}
\pgfplotscreateplotcyclelist{germanschool}{%
black\\%
blue\\%
}
\pgfplotsset{
germanschool/.style = {
axis lines = middle,
cycle list name = germanschool,
xlabel style = {
anchor=north
anchor=north east,
inner xsep=0pt
},
ylabel style = {
anchor=east
anchor=north east,
inner ysep=0pt
}
}
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
germanschool,
xlabel = $x$, ylabel = $y$,
domain=0:5.5,
ymin=-0.9,ymax=3.9,xmax=6.9
]
\addplot+[smooth] {log2(x)} node[above] {$y = \log_2(x)$};
\addplot+[smooth] {log10(x)} node[above] {$y = \log_{10}(x)$};
\end{axis}
\end{tikzpicture}
\end{document}
> ![alt text][1]
[1]: http://texwelt.de/wissen/upfiles/test_63.png
http://texwelt.de/wissen/upfiles/test_67.png