Kapazitätsproblem bei einigen Paketen

Kapazitätsproblem bei einigen Paketen

Ich versuche, die Handlung zu zeichnen vonf(x)=sin(1/x)mit pgfplot, aber ich bekomme eine Fehlermeldung:

! TeX-Kapazität überschritten, entschuldigen Sie [Hauptspeichergröße=3000000].

%!!!Mir ist aufgefallen, dass alles in Ordnung ist, wenn ich eines der in meinem Code mit gekennzeichneten Pakete lösche .Dasist die log-Datei.

Was läuft schief?

\documentclass[a4paper,11pt,twoside]{book}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}

\usepackage{siunitx}%!!!
\usepackage{mathtools}%!!!
\usepackage{subcaption}%!!!
\usepackage[most]{tcolorbox}%!!!
\usepackage{fancybox}%!!!
\usepackage{wasysym}%!!!    

\usepackage{pgfplots}
\pgfplotsset{compat=1.16}   

\usepackage{tikz}
\usetikzlibrary{shapes,snakes}%!!!
\usetikzlibrary{shadows.blur}%!!!
\usetikzlibrary{decorations.text}%!!!
\usetikzlibrary{calc,patterns,angles,quotes,decorations.pathreplacing}%!!!
\usetikzlibrary{spy}%!!!
\usetikzlibrary{positioning,shapes,fit,arrows}%!!!

\begin{document}

\begin{center}
    \begin{tikzpicture}[>=latex]
    \begin{axis}[
    axis x line=center,
    axis y line=center,
    xlabel={$x$},
    ylabel={$y$},
    xlabel style={below right},
    ylabel style={above left},
    xmin=-1.5,
    xmax=1.5,
    ymin=-1.2,
    ymax=1.2,
    ticks=none,
    height=0.3\textwidth,
    width=0.6\textwidth,]
    \addplot[domain=0.01:1.5, thin,samples=5000] {sin(deg(1/(x)))};
    \addplot[domain=-1.5:-0.01, thin,samples=5000] {sin(deg(1/(x)))};
    \node at (axis cs:1.4,0.8) {$C_f$} ;
        \end{axis}
        \end{tikzpicture}   
\end{center}

\end{document}

Danke im Voraus!!!

verwandte Informationen