SAS ODS PDF 字体 MS MINCHO 无法搜索的 PDF 文件
SAS ODS PDF Font MS MINCHO Unsearchable PDF File
当我使用 MS Mincho 作为字体创建 PDF 文件时,该 PDF 文件不可搜索。我确实检查了 MS MINCHO 字体是否正确安装在 SAS 和 Windows 中。你能指导我所缺少的吗? ?
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;
在 SAS Registry 系统中发现问题
SAS 知识库注意:
https://support.sas.com/kb/46/128.html
当我使用 MS Mincho 作为字体创建 PDF 文件时,该 PDF 文件不可搜索。我确实检查了 MS MINCHO 字体是否正确安装在 SAS 和 Windows 中。你能指导我所缺少的吗? ?
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;
在 SAS Registry 系统中发现问题 SAS 知识库注意: https://support.sas.com/kb/46/128.html