I recently noticed that some of the papers I've listed on my homepage look a lot sharper than others when rendered in a PDF viewer. Curious about this, I tracked it down to this import:
\usepackage[T1]{fontenc}
As a brief example of what I mean, here's a test case:
\documentclass{article}
%\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext
\end{document}
Here's the result in TeXstudio with and without the T1 encoding (with is marked with a little red dot in the lower right-hand corner):

Likewise here's the result in Adobe:

And here's a close-up:

I'm compiling the PDF in TeXstudio using
pdflatex.exe -synctex=1 --extra-mem-bot=1000000000 -interaction=nonstopmode %.tex
If I simply drop the fontenc package, I have problems with braces ({}) used in the text. And the package seems to be recommended in the general case.
My questions are:
- Is this a local effect due to my font set-up?
- How could I resolve this problem?
(Sorry if the question is naive; I'm afraid I only have passing knowledge of T1 and the font system in LaTeX.)
