Here is my problem: I have to make a plot in log log scale, and I would like to put a Plot Legend INSIDE the plot (in order to include it into the document with all the specifications).
The plot must be in black and white, but Mathematica, for what I know, only possesses 4 types of style: continued black, dotted, dashed and dot dashed.
Here is my plot, and the 5 functions plotted are extremely complicated, so if you want to make some example just for this case, let's take
$$x, x^2, x^3, x^4, x^5$$
My question is: how can I use PlotLegend in order to make a box to appear (maybe at the top right) with the five lines listed like?
--------- $x$
......... $x^2$
-.-.-.-.- $x^3$
--------- $x^4$
Thank you so much!
P.s. Don't mind at the writings $\nu = 0.25$ and so on. I will cut them once I'll got the plot legend (yes, here those $\nu$ are parameters of a single function $f_{\nu}(x)$ but the example of having 5 different functions holds true the same as a matter of example)
Bu the way, this is the code I used
LogLogPlot[{qmax[\[Omega]], q14[\[Omega]], qhalf[\[Omega]],
q[\[Omega]], qbec[\[Omega]]}, {\[Omega], 0.01, 100},
PlotRangePadding -> {2, 0},
PlotStyle -> {Black, {Black, Dashed}, {Black, Dotted}, {Black,
DotDashed}, Black}, AxesStyle -> Bold]






PlotLabels:) – kglr Jul 09 '17 at 14:09