Hi, I have to write to a PDF file a formula like this: I found online code like thils: data test; length x $150; x=" סיגמא עם נוסחא : \field{\*\fldinst {EQ \\I\\su(i=1,n, ) }}}"; run; ods rtf file="report_test.rtf" ; proc report data=test noheader nofs style={protectspecialchars=off frame=void rules=none}; run; ods rtf close; It's work excellent. You can see it in file.rtf. I tried to combain this report in the PDF file and it's not succeed. data test; length x $150; x="{ סיגמא עם נוסחא : \field{\*\fldinst {EQ \\I\\su(i=1,n, ) }}}"; run; ods escapechar = '^'; ods pdf file="C:\Temp\pdf_test.pdf" ; /*ods text="test PDF ^{unicode 03A3}^{sub (t=0)}^{super 12-x}";*/ proc report data=test noheader nofs style={protectspecialchars=off frame=void rules=none}; run; ods pdf close; You can see in file C__Temp_pdf_test.pdf. Please advise
... View more