我目前使用 pgfplots 来绘制一个以非常“不平滑”和不规则的方式绘制的函数。
\documentclass[]{acmart}
\usepackage[]{tikz}
\usetikzlibrary{calc}
\usepackage{xparse}
\usepackage{pgfplots}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
xlabel={$f$},
ylabel={$g(f)$},
xmin = 1.0,
xmax = 4.0,
ymin = 0,
ymax= 10
]
\addplot[blue, very thin]{10*(1-1/(1 + (x-2)^2 ))};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
而且这个剧情很犀利,还有其他选择吗?