Currently, I am using Mathematica 13.2. For this version an Add-on PlotLegends (function ShowLegend[]) still exists, but is marked as obsolete:
Needs["PlotLegends`"]
General::obspkg: PlotLegends` is now obsolete. The legacy version being loaded may conflict with
current functionality. See the Compatibility Guide for updating information.
Now, my question: Is there any other functionality to generate a legend within a Show[] construct? Here is an example what I am thinking about (PlotLegends does not work):
Show[ListPlot[Table[{f, Sin[2 \[Pi] 0.1 f]}, {f, 0., 200., 1.}],
PlotStyle -> Black, PlotMarkers -> {"x", Offset[10]},
PlotLegends -> Automatic],
Plot[Sin[2 \[Pi] 0.1 f], {f, 0., 200.}, PlotStyle -> Orange,
PlotLegends -> Automatic, PlotRange -> All]]
Thank you for your time.