I think you don't realy understand my problem. I am trying to get pdf report with national symbols (characters/letters) like š, č, ų, ė, į etc. National letters are in my data, title and header, but instead of them I am getting wrong / understandable letters. Here is small example of my code:
proc template;
define style Styles.ba;
parent = Styles.Normal;
STYLE SystemTitle /
FONT_FACE = "arial"
FONT_SIZE = 3
FONT_WEIGHT = bold
FONT_STYLE = italic
FOREGROUND = cx000000
BACKGROUND = cxfefefc
VJUST=C
/*more code*/
end;
run;
ods pdf file="C:\temp\test.pdf" style=ba notoc;
option locale=lt_LT;
title j=l f='Arial' h=16pt bold 'ĄČĘĖĮŠŲŪ';
data temp1(encoding="wbaltic");
A='ČČČ'; B='ŠŠŠ';output;output;
A='ŪŪŪ'; B='ĖĖĖ';output;
run;
data temp2;
set temp1;
obs=_n_;
run;
proc report nowd data=temp2;
col obs A B;
define obs / display noprint;
define A / display "Column1 ŠŠŠ" style(header)={cellwidth=250px};
define B / display "Column1 ĖĖĖ" style(header)={cellwidth=300px};
quit;
ods pdf close;
So any ideas how to get national letters like š, č, ė, į, ų, ū, ą, ę in pdf report?
... View more