Is there a better way of turning .sthlp files (self-written) into .pdf files than something like the following (assumes unix-y environment):
This works well enough, but it's only valid in GUI Stata, whereas this is something I'd like to automate (which requires to work in console/batch Stata).
Brendan
HTML Code:
foreach topic in topic1 topic2 topic3 { help `topic' translate @Viewer `topic'.ps, translator(Viewer2ps) replace header(off) logo(off) pagesize(A4) !ps2pdf `topic'.ps !rm `topic'.ps }
Brendan
Comment