MiKTeX and proTeXtPale Font in PDF Output

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
kenny5432
Posts: 2
Joined: Sat Nov 09, 2013 2:47 pm

Pale Font in PDF Output

Post by kenny5432 »

I have been using LaTeX for a couple of months now and I have notice that MiKTeX is producing PDF that looks pale. I didn't have this problem before and it's just started recently. I kept an old PDF and compiled again the same code to show the difference.

Thank you for your help.
Attachments
after.pdf
(164.24 KiB) Downloaded 671 times
Before.pdf
(187.89 KiB) Downloaded 637 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Pale Font in PDF Output

Post by localghost »

Probably a font encoding problem. Looking at the document properties regarding the used fonts reveals that "before.pdf" contains high quality Type 1 fonts whereas "after.pdf" only uses Type 3 fonts of lower quality.

You can check that either in the document properties of your PDF viewer or by the command line tool »pdffonts« (part of XPDF).

The command line tool gives me this for "before.pdf" …

Code: Select all

name                                 type              encoding         emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
ZXQTCI+SFCC2074                      Type 1            Custom           yes yes no       5  0
SMFHIK+SFCC1440                      Type 1            Custom           yes yes no       6  0
KZZLAX+SFRM1000                      Type 1            Custom           yes yes no       7  0
CLTPYJ+SFRM1200                      Type 1            Custom           yes yes no       8  0
MEHLID+SFBX1728                      Type 1            Custom           yes yes no      13  0
… and this for "after.pdf".

Code: Select all

name                                 type              encoding         emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
[none]                               Type 3            Custom           yes no  no       5  0
[none]                               Type 3            Custom           yes no  no       6  0
[none]                               Type 3            Custom           yes no  no       7  0
[none]                               Type 3            Custom           yes no  no       8  0
[none]                               Type 3            Custom           yes no  no      13  0
The reason could be that after a new setup of the TeX system the cm-super package is not installed or that inside the document the Type 1 encoding has been turned off (I'm not really sure). This line enables the »Cork Encoding« (Type 1 encoding).

Code: Select all

\usepackage[T1]{fontenc}
For texts in other languages than English (e.g most European languages) you should use T1 encoding.


Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
kenny5432
Posts: 2
Joined: Sat Nov 09, 2013 2:47 pm

Re: Pale Font in PDF Output

Post by kenny5432 »

Thank you very much. you were right, the cm-super package was not installed.
Post Reply