[Tex/LaTex] It is possible to make fonts appear heavier (darker) in pdf output of Latex

fontspdfpdftextexlive

[Edited to include what I have learned from the answers.]

I am using Latex in TeX Live on my Mac, through TeXLive. I compile .pdf files using Pdflatex. I use the default fonts. [These fonts are called Computer Modern.]

I like the appearance of these fonts, but I would like the fonts in the .pdf files generated by Latex to be heavier (or darker) than they are now.

NOTE: I am talking about both plain text and math.

It appears that this issue is independent of the compiler, and it's not possible to "fine-tune" the .pdf output without changing the font package used.

The solution is therefore to change the font package used. For someone using mathematical formulas, like me, there are fonts "with math support". A list may be found here.

In the above list of font packages, there are quite a few that are heavier than Computer Modern. For example, Times or "Utopia Regular with Fourier". Clicking on them on the page linked to above, one finds two lines of code that need to be inserted in the Latex document in order to call a particular font package.

[See also this question from which one can extract pretty much the same information, and possibly more.]

Best Answer

You can make the text a bit more heavy by using Heiko's great pdfrender package. Just play with the LineWidth parameter.

\documentclass[paper=a4]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pdfrender,xcolor}

\begin{document}
\pdfrender{StrokeColor=black,TextRenderingMode=2,LineWidth=0.2pt}

A wonderful serenity has taken possession of my entire soul, like these sweet
mornings of spring which I enjoy with my whole heart. I am alone, and feel the
charm of existence in this spot, which was created for the bliss of souls like
mine. I am so happy, my dear friend, so absorbed in the exquisite sense of
mere tranquil existence, that I neglect my talents. I should be incapable of
drawing a single stroke at the present moment; and yet I feel that I never was
a greater artist than now. When, while the lovely valley teems with vapour
around me, and the meridian sun strikes the upper surface of the impenetrable
foliage of my trees, and but a few stray gleams steal into the inner
sanctuary

\[E = mc^2 \]


 I throw myself down among the tall grass by the trickling stream;
and, as I lie close to the earth, a thousand unknown plants are noticed by me:
when I hear the buzz of the little world among the stalks, and grow familiar
with the countless indescribable forms of the insects and flies, then I feel
the presence of the Almighty, who formed us in his own image, and the breath
of that universal love which bears and sustains us, as it floats around us in
an eternity of bliss.

\end{document}

With an extreme setting of LineWidth=1pt you get this beautiful output:

heavy text

Related Question