Let's say I have a plot:
Plot[{Sin[x], Sin[2 x]}, {x, 0, 2 \[Pi]}, PlotLegends -> "Expressions"]
Everything is fine. But if I write:
sins = Table[Sin[n x], {n, 1, 2}]
Plot[sins, {x, 0, 2 \[Pi]}, PlotLegends -> "Expressions"]
then the legend doesn't show up. Why and how do I fix this? Thanks
