나는 줄거리를 그리려고 노력 중이야f(x)=죄(1/x)을 사용 pgfplot
하지만 오류 메시지가 나타납니다.
! TeX 용량을 초과했습니다. 죄송합니다. [주 메모리 크기=3000000].
내 코드에 표시된 패키지 중 하나를 삭제하면 %!!!
모든 것이 정상이라는 것을 깨달았습니다.이것-파일 입니다 log
.
무슨 일이 일어나고 있나요?
\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}
미리 감사드립니다!!!