Happy new year! 
I want to export the graph into "eps" format so I can then transform it into a TIF format file with great resolution but also a small file size using Photoshop. (Learned this online...please kindly inform me of other options to get a clearer TIF graph file if you know some, thanks!)
Here is my problem...
I use the option:
in the twoway command to get my title of the x-axis a little bit fancy. But when I export the graph into EPS format, I noticed that something went wrong with my title. Here is a screenshot...

Here is the toy code so you can replicate this problem...
By the way, I am working on Apple M1 Pro Ventura 13.0.1 and opening the EPS file exported using an APP called "Skim".
Thanks!

I want to export the graph into "eps" format so I can then transform it into a TIF format file with great resolution but also a small file size using Photoshop. (Learned this online...please kindly inform me of other options to get a clearer TIF graph file if you know some, thanks!)
Here is my problem...
I use the option:
Code:
xtitle("{stSerif:Temperature ({°ree}C)}")
Here is the toy code so you can replicate this problem...
Code:
version 17.0 clear input x y 1 2 2 4 3 6.5 4 7.5 5 10 6 13 end tw scatter x y, xtitle("{stSerif:Temperature ({°ree}C)}") graph export "g1.eps", as(eps) replace
Thanks!
Comment