GeneralPrinting PDFs make content look "fuzzy"

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
User avatar
tripwire45
Posts: 129
Joined: Thu Apr 10, 2008 4:35 am

Printing PDFs make content look "fuzzy"

Post by tripwire45 »

This seems to be the opposite problem that most people have according to this source:

http://www.ces.clemson.edu/~regroff/content/latex2pdf/

I compile my tex file to PDF using PDFLaTeX in Kile and review it in Document Viewer on my Ubuntu machine. The output looks fine. I've tried printing it on both a color and black-and-white printer and the text looks "fuzzy". Graphics are nice and crisp, but the text created in LaTeX looks almost smudged. In color, what I assumed was black text is slightly blue...almost purple, actually.

Since this is a user manual, it's not going to fly. Maybe both of our printers just have issues, but if that were the case, I'd think the graphics would come out fuzzy as well, and the don't. They are quite a bit sharper than the text.

I did find something on the web that addressed a fuzzy print out, but it had to do with a document printing fuzzy on one printer but clear on another:

http://tug.org/mail-archives/texhax/200 ... 02912.html

Has anyone else come across this issue?

Thanks.

-Trip

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Printing PDFs make content look "fuzzy"

Post by localghost »

Check the document's properties (in KDVI or Okular) and look for embedded fonts. For good quality there should be Type 1 fonts embedded. If not, add as far as not done yet the activation of T1 fonts in your preamble.

Code: Select all

\usepackage[T1]{fontenc}

Best regards
Thorsten¹
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Printing PDFs make content look "fuzzy"

Post by Stefan Kottwitz »

Hi Trip,

you also can check the document properties (embedded fonts) with the acrobat reader.
Or just post such a pdf file here as attachment, we would look at it.
Btw. using T1 fontenc you should have the cm-super package installed. Available as Ubuntu/Debian package. :D

Code: Select all

sudo apt-get install cm-super
Stefan
User avatar
tripwire45
Posts: 129
Joined: Thu Apr 10, 2008 4:35 am

Re: Printing PDFs make content look "fuzzy"

Post by tripwire45 »

Before I implement your suggestions, let me mention that I printed the document on my home printer (HP All-in-One Officejet) and the text was completely crisp. :?:
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: Printing PDFs make content look "fuzzy"

Post by Stefan Kottwitz »

Hi Trip,

you could create an example pdf from your document (we dont need all content, just a sample page), post it here as attachment and we could look at the fonts and their quality.

Stefan
User avatar
tripwire45
Posts: 129
Joined: Thu Apr 10, 2008 4:35 am

Re: Printing PDFs make content look "fuzzy"

Post by tripwire45 »

Ok, Stefan. Here it is.
Attachments
paragraph2.pdf
(6.28 KiB) Downloaded 503 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: Printing PDFs make content look "fuzzy"

Post by Stefan Kottwitz »

Hi Trip,

good! One look into the document properties confirmed, that is uses type 3 fonts of lower quality. cm-super should solve that. If you hesitate to implement cm-super, you may post paragraph2.tex and I will be glad to show you how the pdf looks with cm-super.

Stefan
User avatar
tripwire45
Posts: 129
Joined: Thu Apr 10, 2008 4:35 am

Re: Printing PDFs make content look "fuzzy"

Post by tripwire45 »

Stefan, you rock! It worked perfectly. Thanks. :D
Post Reply