gr_export.ado
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 179 行
ADO
179 行
*! version 1.0.7 06feb2005
program gr_export
version 8
local 0 `"using `0'"'
syntax using/ [, AS(string) NAME(passthru) REPLACE *]
if "`replace'"=="" {
confirm new file `"`using'"'
}
if "`as'"=="" {
Suffix as : `"`using'"'
capture VerifySuffix `as'
if _rc {
di as err "{p 0 4 2}"
di as err ///
`"output-file suffix "`as'" not recognized{break}"'
di as err ///
"specify correct suffix or specify as() option"
di as err "{p_end}"
exit 198
}
}
else {
capture VerifySuffix `as'
if _rc {
di as err `"option as(`as') invalid"'
exit 198
}
}
OpSysCheck `as'
GenericClass genas : `as'
GetOpts_`genas' options : `"`options'"'
translate @Graph `"`using'"', translator(Graph2`as') ///
`name' `replace' `options'
end
program GetOpts_ps
args lhs colon rhs
local 0 `", `rhs'"'
#delimit ;
syntax [,
TMargin(passthru)
LMargin(passthru)
LOGO(passthru)
MAG(passthru)
FONTface(passthru)
ORientation(passthru)
PAGESize(passthru)
PAGEHeight(passthru)
PAGEWidth(passthru)
CMYK(passthru)
] ;
c_local `lhs'
`tmargin'
`lmargin'
`logo'
`mag'
`fontface'
`orientation'
`pagesize'
`pageheight'
`pagewidth'
`cmyk'
;
#delimit cr
end
program GetOpts_eps
args lhs colon rhs
local 0 `", `rhs'"'
#delimit ;
syntax [,
LOGO(passthru)
MAG(passthru)
FONTface(passthru)
ORientation(passthru)
PREview(passthru)
CMYK(passthru)
] ;
c_local `lhs'
`logo'
`mag'
`fontface'
`orientation'
`preview'
`cmyk'
;
#delimit cr
end
program GetOpts_mf
args lhs colon rhs
local 0 `", `rhs'"'
#delimit ;
syntax [,
FONTface(passthru)
] ;
c_local `lhs'
`fontface'
;
#delimit cr
end
program GetOpts_pict
args lhs colon rhs
local 0 `", `rhs'"'
#delimit ;
syntax [,
MAG(passthru)
FONTface(passthru)
] ;
c_local `lhs'
`mag'
`fontface'
;
#delimit cr
end
program GetOpts_png
args lhs colon rhs
c_local `lhs'
end
program GetOpts_tif
args lhs colon rhs
c_local `lhs'
end
program GetOpts_pdf
args lhs colon rhs
c_local `lhs'
end
program GenericClass
args lhs colon as
if ("`as'"=="wmf" | "`as'"=="emf") c_local `lhs' "mf"
else if ("`as'"=="pict" | "`as'"=="pct") c_local `lhs' "pict"
else c_local `lhs' `as'
end
program OpSysCheck
args as
if ("`as'"=="ps" | "`as'"=="eps" | "`as'"=="png" | "`as'"=="tif") exit
if (c(os)=="Windows" & ("`as'"=="wmf" | "`as'"=="emf")) exit
if (c(os)=="MacOSX" & ("`as'"=="pict" | "`as'"=="pct" ///
| "`as'"=="pdf")) exit
di as err "Stata for `c(os)' cannot create `as' files"
exit 198
end
program VerifySuffix
args as
if ("`as'"=="png") exit
if ("`as'"=="tif") exit
if ("`as'"=="pdf") exit
if ("`as'"=="ps" | "`as'"=="eps") exit
if ("`as'"=="wmf" | "`as'"=="emf") exit
if ("`as'"=="pict" | "`as'"=="pct") exit
exit 9
end
program Suffix
args lhs colon fname
local fname : subinstr local fname "/" " ", all
local fname : subinstr local fname "\" " ", all
local n : word count `fname'
local last : word `n' of `fname'
local l = index("`last'", ".")
if `l'==0 c_local `lhs' ""
else c_local `lhs' = substr("`last'",`l'+1,.)
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?