Using Python with pylab included, I have created a plot. In the plot's title, I am including a variable from the program. I save the plot as a ps and every thing looks great.
However, when I try to print the document to paper or to a pdf, the numbers disappear. Any idea why this happens and how I can avoid it?
If I save the file as a pdf first, the number are still visible when printed. However, ubuntu is forcing me to print the graph in landscape mode when I would prefer portrait.
Here is the relevant section of code:
legend()
axis([0,1,0,4])
xlabel('x')
ylabel('u')
title('Plot of solution for Problem A, where $\epsilon$ = %.2f' % epsilon)
savefig('vf_hw_04_prob_01_plot.ps')
show()