General ⇒ PDF output quality is very poor
PDF output quality is very poor
I'm using WinEdt and integrated PdfLatex for creating pdf files.
I was using Acrobat Reader 6 and everything was perfectly good. I upgraded it to Acrobat Reader 9 then the pdf documents quality become very poor. They're too faded/worn. Has anyone experienced a problem like this before?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
PDF output quality is very poor
if i use like this, text quality become good.
Code: Select all
\documentclass[11pt]{article}
\usepackage{fullpage}
\usepackage{caption}
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[turkish]{babel}
\usepackage[latin5]{inputenc}
\usepackage{fullpage}
\usepackage{caption}
PDF output quality is very poor
Code: Select all
\usepackage{lmodern}
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: PDF output quality is very poor
There are two packages that may alleviate this problem (if not solve it): ae and aecompl. These packages effectively substitute out the bitmapped T1 fonts for their equivalent OT1 fonts (when available) and use the bitmapped fonts whenever they don't have a glyph for the symbol in OT1.
I hope that helps!
Re: PDF output quality is very poor
Re: PDF output quality is very poor

"lmodern" package solved the issue. Thanks again

Re: PDF output quality is very poor
This is why I always tell people to install everything, even though you might noe need it all, it is still better to be safe.
I have no idea why the minimal MikTeX does not include CM-super when it is a well known fact that this leeds to bad looking PDF files.
Anyway, the lmodern fonts will replace the CM fonts as the base LaTeX font at some point in the future, solving the problem for good.