Below is a code snippet to plot a handful of curves with some plot labels. For some reason only the first label is used and not the other four. What am I missing here? I've successfully used PlotLabels for parametric curves before but they seem to fail me here. Got any ideas??:
lmt=10
qq[zets_]=1/Sqrt[1+zets^2]^3
zets[rr_,eps_,eta_]=eps (1-rr^2) (1+eta (1+rr^2))
demcurves=Array[qq[zets[rr,2 #/lmt,0]]&,lmt/2]
Plot[demcurves,{rr,0,1}]
demlabels = Map[ToString,Array[qqzz[N[2/lmt]#]&,lmt/2]]
Plot[demcurves,{rr,0,1},PlotLabels -> Placed[demlabels,Left]]