Mehrere Label ausrichten in TikZ
<p>1) Wie kann ich die Label auf den Geraden so ausrichten, dass die Label auf einer parallelen Linie zur Diagonalen des Diagramms liegen? </p>
<p>2) Wie kann ich die Schriftart im gesamten Dokument auf die des restlichen Dokuments anpassen?</p>
Edit: Kompilliert das Minimalbeispiel bei Euch im Browser auch nicht? In Overleaf klappts...
<pre><code>\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\tikzstyle{every node}=[font=\small]
\begin{axis}[
width=12cm, height=10cm,
xmin=100, xmax=2000,
ymin=30, ymax=5000,
xlabel={x},
ylabel={y},
grid=both,
minor grid style={dotted, gray},
major grid style={solid, black},
xtick={100,150,200,300,400,500,800,1000,1500,2000},
ytick={30,50,100,150,200,300,400,500,800,1000,2000,3000,5000},
ticklabel style={/pgf/number format/fixed, /pgf/number format/precision=1},
scaled ticks = false,
axis background/.style={fill=white},
xmode=log,
ymode=log,
log ticks with fixed point,/pgf/number format/.cd,use comma,1000 sep={},
]
\addplot[black, thick] coordinates {(100, 150) (500, 30)} node[midway,sloped,fill=white]{0,15};
\addplot[black, thick] coordinates {(100, 200) (644, 30)} node[midway,sloped,fill=white]{0,15};
\addplot[black, thick] coordinates {(100, 300) (966, 30)} node[midway,sloped,fill=white]{0,15};
\end{axis}
\end{tikzpicture}
\end{document}
</code></pre>