矢量字体和嵌入的问题

矢量字体和嵌入的问题

我已经写了一篇论文,在家用打印机上打印效果很好,但在发布时,存在一些有关嵌入和字体类型的问题:我在 Windows 7 上通过 TeXnic Center 使用 Miktex。

我目前的问题:我首先有一个不可缩放的字体,现在普通文本似乎没问题,但对于公式它不起作用。这是一个最小的例子:

\documentclass[ 
   fontsize=12pt, 
   paper=a4, 
   german, 
   twoside=false 
     ]{scrbook} 

\usepackage[latin1]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage{lmodern}
\usepackage{cmbright}
\usepackage{ae}
\usepackage[ngerman]{babel} 


\begin{document} 

\chapter{testeins} 
aöüßLorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. 

\begin{equation} 
c = \sqrt{a^2 + b^2} 
\end{equation} 

\end{document} 

如果我运行此代码,公式环境不是矢量字体,因此当我使用 pdf 阅读器放大时,我可以看到网格。使用 pdffonts 分析它得到:

name                                 type              emb sub uni object ID
------------------------------------ ----------------- --- --- --- ---------
ZNESZZ+CMSSBX10                      Type 1            yes yes no       4  0
IKIYOW+CMSS12                        Type 1            yes yes no       5  0
[none]                               Type 3            yes no  no       6  0
[none]                               Type 3            yes no  no       7  0
[none]                               Type 3            yes no  no       8  0
[none]                               Type 3            yes no  no       9  0

对于我的论文来说,情况更加复杂。安装了 hfbright 和 cm-super。如果我删除 \usepackage{cmbright},文本和公式就可以了。

我将非常感谢您的帮助,我现在非常绝望......

相关内容