當我使用 MS Mincho 作為字體創建 PDF 檔案時,該 PDF 檔案不可搜索。我確實檢查了 SAS 和 Windows 中是否正確安裝了 MS MINCHO 字體。你能指導我所缺少的嗎。?
proc template;
define style styles.smaller;
parent = styles.printer;
class fonts from fonts /
'TitleFont2' = ("MS Mincho",10pt,Bold Italic)
'TitleFont' = ("MS Mincho",11pt,Bold Italic)
'StrongFont' = ("MS Mincho",8pt,Bold)
'EmphasisFont' = ("MS Mincho",8pt,Italic)
'FixedEmphasisFont' = ("MS Mincho",7pt,Italic)
'FixedStrongFont' = ("MS Mincho",7pt,Bold)
'FixedHeadingFont' = ("MS Mincho",7pt,Bold)
'BatchFixedFont' = ("MS Mincho",5pt)
'FixedFont' = ("MS Mincho",7pt)
'headingEmphasisFont' = ("MS Mincho",9pt,Bold Italic)
'headingFont' = ("MS Mincho",9pt,Bold)
'docFont' = ("MS Mincho",8pt);
class Table from Output /
rules = ALL
cellpadding = 2pt /* Reduced from 4pt to 2pt */
cellspacing = 0.25pt
borderwidth = 0.75pt;
end;
run;
ods pdf file="test.pdf" style=styles.smaller;
proc print data=sashelp.class;
run;
ods pdf close;
uj5u.com熱心網友回復:
使用SAS Registry SAS KB 在系統中發現問題 注:https : //support.sas.com/kb/46/128.html
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/323945.html
上一篇:如何在pdf輸出中部分斜體?
下一篇:我如何匯入MagickImage
