Created
November 20, 2014 04:17
Stata script to convert a gph file to eps file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*Callable from the command line for converting a gph to eps's in the right places | |
global dir_base ".." | |
adopath ++ "${dir_base}/code/ado/" | |
gph2fmt `1'.gph eps | |
if "`2'"!=""{ | |
gph2fmt `1'.gph `2' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment