1

I was reading through a textbook when, on page 13 (and a few other pages), I found an interesting font for the letter "L" which I have never seen before:

L with a leading serif?

Now, normally I would just use Detexify, but nothing came up when I tried this symbol. There is also a very similar letter "I" a few pages lower that looks like the L without the bottom line (but still with the leading serif on top). I then searched through a few lists of math fonts to see if I could find anything similar. My question is, does anyone recognize this font? I am slightly suspicious that this might not even be written in LaTeX, since the format of the textbook is very custom, and I find it weird that the author would choose to use some custom font when there are certainly suitable alternatives built in.

2 Answers2

2

In this case, as Mico posted in the comments, you can use pdffonts or many PDF readers to list the fonts a PDF file uses.

Where that’s not an option, two good tables of font specimens are the List of Symbols Defined by unicode-math for OpenType math fonts, and the mathalpha documentation for legacy math fonts.

Davislor
  • 44,045
1

Here I add a MWE with of the free fonts. It is peraphs a discrete compromise with your Minion Pro (Math).

\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{tgpagella}
\usepackage{newpxmath}
\usepackage{parskip}

\begin{document}
Text
\begin{enumerate}
     \item Introduce the following symmetrization operation on tensors $T\in \mathcal{L}_k(V)$:
\[\operatorname{Sym}(T)=\sum^{n}_{\tau\in S_k}{T^{\tau}} \]
\end{enumerate}
after text
\end{document}

enter image description here

You can see the differences with a crop of the your pdf:

enter image description here

Sebastiano
  • 54,118