0

Below is a picture comparing the default overleaf rendering (top) and the rendering of a book (John M. Howie - Complex Analysis) (bottom).

How can I mimic the bottom rendering? Is it a product of a specific latex compiler, is it because of the way the pdf was saved etc, or is it something else? Any ideas are appreciated.

John M. Howie Complex Analysis

Yuumita
  • 131

1 Answers1

3

From Fatter Computer Modern the suggestion to use the mlmodern package, which provides (according to its manual) a "sturdy rendition of the Computer Modern design".

MWE:

\documentclass{article}
\usepackage{mlmodern}
\begin{document}
\section{The Heine-Borel Theorem}
The rather technical Heine-Borel Theorem is necessary for some of our proofs.

By an \textbf{open covering} of a set $S$ we mean a possibly infinite collection [ \mathcal{C} = {V_i:i\in I} ] \end{document}

Screenshot with the default font and with mlmodern:

enter image description here

Marijn
  • 37,699