I want to put a point in the legend, which is the easiest way?
My code is:
Plot[x^2, {x, 0, 2}, Epilog -> {Directive[Red, PointSize[Large]], Point[{1, 1}]}, PlotLegends -> {"x^2"}] This gives me the legend of the parabola but if I add another entry it does not print the point in the legend. What should I add?
Thanks so much in advance


Legended[Plot[x^2, {x, 0, 2}, Epilog -> {Directive[Red, PointSize[Large]], Point[{1, 1}]}, PlotLegends -> {"x^2"}], PointLegend[{Red}, {{1, 1}}]]$\endgroup$