I woult like to insert a legent to my plot. I tried this with the following code:
plot(1:4)
legend("topleft",legend=expression(paste(theta[1]==7%*%10^-4,sep=" ",theta[2]==-14%*%10^-4),
paste(theta[1]==0,sep=" ",theta[2]==0)),bty="n",cex=1.2)
Unfortunately, as you can see, the symbols of the legend are not not aligned in the vertical sence. So theta_2 in the second line appears under the value of theta_1 of the first line.
How can I change the code, so that the symbols are well aligned?