plotting some descibing functions, I wondered why I don't get any legends in my plot.
The describing functions (and options):
N1[a_] := (4 d)/(π a)
N2[a_] := (4 d)/π 1/(I ϵ + Sqrt[a^2 - ϵ^2])
N3[a_] := (4 d)/(π a) Sqrt[1 - (ϵ/a)^2] - I (4 d ϵ)/(π a^2)
N4[a_] := (4 d)/(π a) E^(-I ArcSin[ϵ/a])
opt = {d -> 1, ϵ -> 5}
and the ParametricPlot
ParametricPlot[{
(*{Re@N1[a],Im@N1[a]},*)
{Re[N2[a]], Im[N2[a]]},
{Re@N3[a], Im@N3[a]},
{Re@N4[a], Im@N4[a]}
} /. opt, {a, .001, 1000},
PlotRange -> All,
PlotPoints -> 1000,
MaxRecursion -> 15,
PlotLegends -> "Expressions"]
(The first function is out commented, because it has wired behavior. Bonus for the one who can explain it ;-) )
What I get is this:

Why are there no legends? Is it because of the userdefined functions?
