일부 기존 코드를 사용해 보았지만 뒷면에서는 작동하지 않는 것 같습니다.
또한 이것을 :에서 실행하는 것이 권장되었지만 pdflatex -shell-escape
컴파일러에서는 이 옵션을 찾지 못했습니다.
암호:
\documentclass[12pt]{article}
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\begin{axis}[width=\textwidth, height=0.5*\textwidth, xlabel=$x$]
\addplot+[id=parable,domain=0:20, samples=500, mark=none, width=2pt]
gnuplot{besj0(x)} node[pin=95:{$J_0(x)$}]{};
\addplot+[id=parable,domain=0:20, samples=500, mark=none, width=2pt, color=red]
gnuplot{besj1(x)} node[pin=130:{$J_1(x)$}]{};
\addplot+[id=parable2,domain=0:20, samples=500, mark=none, width=2pt, color=black]
gnuplot{2*1/x*besj1(x)-besj0(x)} node[pin=-140:{$J_2(x)$}]{};
\end{axis}
\end{tikzpicture}
\end{document}