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.
MiKTeX and proTeXt ⇒ Pale Font in PDF Output
Pale Font in PDF Output
- Attachments
-
- after.pdf
- (164.24 KiB) Downloaded 671 times
-
- Before.pdf
- (187.89 KiB) Downloaded 637 times
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
Pale Font in PDF Output
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" …
… and this for "after.pdf".
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).
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
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
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
Code: Select all
\usepackage[T1]{fontenc}
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
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: Pale Font in PDF Output
Thank you very much. you were right, the cm-super package was not installed.