von jkli96 » Sa 30. Okt 2021, 15:47
Habe gerade aus einen anderen Beitrag eine Möglichkeit übernommen ^^
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}[domain=0:7pi]
\begin{axis}[axis x line=bottom,
samples=250,
axis y line=left,
xlabel= Retentionsvolumen $\lbrack{}$ \si{\milli\liter} $\rbrack$,
ylabel= Extinktion $\lbrack{}$ \si{mAU} $\rbrack$,
width=1\linewidth ,
height=10cm]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\addplot[very thick,domain=0:7pi] {0.2x};
\addplot[very thick,dash pattern={on 4pt off 1pt},domain=0:7pi] {2sin(deg(0.5x))+0.2x};
%\addplot[thick,domain=0:4pi] {2sin(deg(x))+2sin(deg(3x))/2+x};
\addplot[thick,dash pattern={on 2pt off 2pt},domain=0:7pi] {2sin(deg(0.5x))+sin(deg(2x))/2+2sin(deg(6x))/4+0.2x};
\addlegendentry{Trend};
\addlegendentry{lange Schwankungen};
\addlegendentry{Konjunkturschwankungen i.e.S.};
\addlegendentry{Saisonschwankungen};
\end{axis}
\end{tikzpicture}
\end{document}
Habe gerade aus einen anderen Beitrag eine Möglichkeit übernommen ^^
[code]\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}[domain=0:7*pi]
\begin{axis}[axis x line=bottom,
samples=250,
axis y line=left,
xlabel= Retentionsvolumen $\lbrack{}$ \si{\milli\liter} $\rbrack$,
ylabel= Extinktion $\lbrack{}$ \si{mAU} $\rbrack$,
width=1\linewidth ,
height=10cm]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\addplot[very thick,domain=0:7*pi] {0.2*x};
\addplot[very thick,dash pattern={on 4pt off 1pt},domain=0:7*pi] {2*sin(deg(0.5*x))+0.2*x};
%\addplot[thick,domain=0:4*pi] {2*sin(deg(x))+2*sin(deg(3*x))/2+x};
\addplot[thick,dash pattern={on 2pt off 2pt},domain=0:7*pi] {2*sin(deg(0.5*x))+sin(deg(2*x))/2+2*sin(deg(6*x))/4+0.2*x};
\addlegendentry{Trend};
\addlegendentry{lange Schwankungen};
\addlegendentry{Konjunkturschwankungen i.e.S.};
\addlegendentry{Saisonschwankungen};
\end{axis}
\end{tikzpicture}
\end{document}
[/code]