使用 PdfTeX 而非 PdfLaTeX 时字体的“平滑度”存在差异

使用 PdfTeX 而非 PdfLaTeX 时字体的“平滑度”存在差异

所以我一直在用 LaTeX 写一些课堂笔记,但最近我在互联网上发现了一些用 Plain TeX 编写的笔记 (.tex),所以当我编译它们时,我发现使用 PdfTeX 时字体 (Computer Modern) 看起来更流畅,PdfLaTeX 是否使用了错误的字体/做了一些错误的事情,这只会发生在该字体上,而这正是我想要使用的字体。我会留下一张图片来说明我的意思: https://i.stack.imgur.com/RDHiH.png

顶部是 pdfLaTex,底部是 pdftex 顶部是 PdfLaTeX,底部是 pdfTeX,放大到 400%

第一个 这也是同样的顺序。

在此处输入图片描述

梅威瑟:

\documentclass[fontsize=10pt, twoside,a4paper]{book}


\usepackage[T1]{fontenc}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage[margin=1.5in]{geometry}
\usepackage{amsmath}

\newcommand\CC{\mathbb{C}}
\newcommand\intga{\int\limits_{\gamma}}

\theoremstyle{definition}
\newtheorem{thm}{Theorem}[chapter]



\begin{document}

\chapter{Cauchy's Theorem}

\begin{thm}
Let $f \colon \Omega \to \CC$ be analytic in $\Omega$ and let $\gamma$ be a closed Jordan curve inside $\Omega$ then $\intga f = 0$.
\end{thm}
\end{document}

纯 TeX

\magnification=\magstep1
\baselineskip = 18 true pt minus 2 true pt
\parskip = 2 true pt plus 2 true pt
\vbadness=10000
\hfuzz = 2 true pt

\newif\iftitlepage  \titlepagetrue
\newtoks\chaptertitle  \chaptertitle={Complex Analysis}
\newtoks\oddpagehead
    \oddpagehead={\vbox to 1 true in{%
    \noindent\parskip=0pt\baselineskip = 12 true pt%
    \centerline{\sl\the\chaptertitle}%
    \vskip -\baselineskip%
    \line{\hfill\rlap\quad\rm\folio}
    \vfill}}


\footline={\hfil}
\def\nopagenumbers{\def\folio{\hfil}}

\input amssym.def         
\def\CC{{\Bbb C}}
\font\pf = cmcsc10
\font\tf = cmbx10 scaled \magstep 3 
\font\rf = cmr10 scaled \magstep 1

\def\intga{\int\limits_{\gamma}}


\font\smc = cmcsc10 at 10 true pt
\font\smi = cmti10 at 10 true pt
\font\smr = cmr10 at 10 true pt
\font\smb = cmbx10 at 10 true pt

\centerline{\tf Cauchy's Theorem}

\proclaim Theorem.
Let $f \colon \Omega \to \CC$ be a continuous function such that $\intga f = 0$ for every closed path $\gamma$, then $f$ is holomorphic.

\bye

答案1

将 f 添加\showoutput到您的 MWE 表明它使用了这些字体(如 LaTeX 所知)

\OML/cmm/m/it/10
\OMS/cmsy/m/n/10
\OMX/cmex/m/n/10
\OT1/cmr/m/n/10
\T1/cmr/bx/n/10
\T1/cmr/bx/n/20.74
\T1/cmr/bx/n/24.88
\T1/cmr/m/n/10
\U/msb/m/n/10

它使用哪些实际字体文件来获取这些字形取决于 pdftex(对于 pdftex)或 dvips(如果您使用 latex)使用的映射文件。Pdftex 在最后将它们显示为

</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/cm-super/sfbx1000.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/cm-super/sfbx2074.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/cm-super/sfbx2488.pfb>
</usr/local/texlive/2014/texmf-dist/fonts/type1/public/cm-super/sfrm1000.pfb>

显示pfb它们都是 Type 1 字体,并且 Acrobat 的字体菜单确认所有字体都是 Type 1。

因此看起来您已经将某些字体映射到原始元字体生成的位图字体。

我猜你需要安装这个cm-super包。

请注意,在任何情况下,字体形状都是不同的,乳胶字体使用为 21pt 设计的设计字体,而普通 TeX 使用缩放的 10pt 主体字体,这通常会产生具有更粗笔画的字符,因为笔画是随着字体大小的增加而按比例缩放的。

相关内容