Problem solved. Maybe it will be useful to someone. So need to do these steps: 1. Download TrueType fonts or just use local TrueType fonts (<systemRoot>\fonts). 2. Copy needed TrueType font to <SASroot>\core\resource. 3. Now need to register new fonts. Run SAS procedure FONTREG. By default this procedure uses <SASroot>\core\resource directory, so need to run this script:
PROC FONTREG;
RUN;
4. Finnal step is just use new TrueType fonts. For example:
FONT_FACE = "<ttf> Arial"
Aurimas
... View more