0

I've been looking forward to know which is this kind of font in LaTeX. I've tried with these changes in my preamble document:

\renewcommand*\rmdefault{cmss}
\usepackage{pifont}
\usepackage{amsfonts}

But that doesn't work. I attached an image as I want to see in my pdfLaTeX document enter image description here

Can anybody help me please?

2 Answers2

3

I want to say it looks like Palladio or a related font.

However, as per texnician's comment if you have access to the PDF you should be able to find the font the the file properties: How do I find out what fonts are used in a document/picture?

2

Agreeing with the user that it seems to be Palladio, I add a complete code so that you can compare it better on your computer using pdfLaTeX. The text font provided is URW Palladio with the option pxfonts for the mathematical part.

\documentclass[a4paper,12pt]{article}
\usepackage{parskip}
\usepackage{pxfonts}
\usepackage[T1]{fontenc}
\begin{document}
Hoy es un espléndido día soleado.
\[f(n)=2n, \quad \overbrace{ 1+2+\cdots+100 }^{n(n+1)/2}\]
\[\iint\limits_{\mathcal O} dx\,dy=\mathrm{area}(\mathcal O)\]
\end{document}

enter image description here

Sebastiano
  • 54,118
  • Thanks for your answer. I use the tool pdffonts: Look at here: https://drive.google.com/file/d/15JJ-X6EJsvl8o1EpBy2g55x0-G2JVG-y/view?usp=sharing – Víctor Vázquez May 12 '20 at 22:38