PGFPlots:添加点并管理标签

PGFPlots:添加点并管理标签

我想用 Tikz/PGFplots 绘制以下内容:

由此产生的情节

X=0:12。 Y=0:30。

\documentclass[10pt]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usepackage{float}
\usetikzlibrary{arrows}
\pagestyle{empty}
\begin{document}
\definecolor{ududff}{rgb}{0.30196078431372547,0.30196078431372547,1}
\definecolor{qqqqff}{rgb}{0,0,1}
\definecolor{qqwuqq}{rgb}{0,0.39215686274509803,0}
\begin{figure}[H]
    \centering
    \begin{tikzpicture}
    \begin{axis}[%
    domain=0:30,
    xmin=0, xmax=30,
    ymin=0, ymax=12,
    smooth,
    axis lines = left]
    \addplot[red] {1/25000*pow(x,4)-3/2500*pow(x,3)-3/200*pow(x,2)+1/2*x+7} node[above]{$f$};
    \addplot[black] {1/50000*pow(x,4)-11/5000*pow(x,3)+29/400*pow(x,2)-3/4*x+7} node[below]{$g$};
    
    \end{axis}
    \end{tikzpicture}
\end{figure}
\end{document}

需要补充的是:B点、C点:

在此处输入图片描述

如果可能的话:删除箭头上的线 + 在两个轴上方添加 x 和 y。需要以某种方式替换 $f$ 和 $g$(实际上希望它们位于曲线上方)。

我希望你能帮忙。

答案1

您可以使用标记和添加“自定义”标签为坐标添加另一个图point meta=explicit symbolicnodes near coords获取:

在此处输入图片描述

修改后的 MWE 如下:

\documentclass[10pt]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usepackage{float}

\pagestyle{empty}
\begin{document}

\begin{figure}[H]
    \centering
    \begin{tikzpicture}
      \begin{axis}[%
        domain=0:30,
        xmin=0, xmax=33,
        ymin=0, ymax=12,
        smooth,
        axis lines = left,
      ]
        \addplot[green] {1/25000*pow(x,4)-3/2500*pow(x,3)-3/200*pow(x,2)+1/2*x+7} node[above]{$f$};
        \addplot[blue] {1/50000*pow(x,4)-11/5000*pow(x,3)+29/400*pow(x,2)-3/4*x+7} node[below]{$g$};
        \addplot [
          only marks,
          mark=ball,
          mark size=2pt,
          point meta=explicit symbolic,
          nodes near coords
        ] coordinates {
            (10, 19/4) [B]
            (25, 7)    [C]
        };
      \end{axis}
    \end{tikzpicture}
\end{figure}
\end{document}

相关内容