0

Anyone know what LaTeX font settings produce both written text AND mathematical text like in the following picture? I am trying to reproduce these notes in LaTeX with zero visual changes (especially to the way the math looks). Thanks!

enter image description here

  • 2
    https://tex.stackexchange.com/questions/45919/how-do-i-find-out-what-fonts-are-used-in-a-document-picture – David Carlisle Jan 21 '23 at 20:14
  • 1
    https://openlearninglibrary.mit.edu/assets/courseware/v1/9d904854b4ae0878cfdcedcdceabf937/asset-v1:MITx+6.036+1T2019+type@asset+block/notes_chapter_Linear_classifiers.pdf just uses default computer modern and ams fonts – David Carlisle Jan 21 '23 at 20:21
  • 1
    Looks like Palatino text font and a mixture of math fonts, including Euler. – Mico Jan 21 '23 at 20:27

1 Answers1

3

enter image description here

\documentclass{article}

\usepackage{mathpazo} \usepackage{eulervm} \usepackage{lipsum} \begin{document} \lipsum[2] $\mathcal{D}\to \mathcal{H}$ \textit{learning algorithm} \end{document}

Sebastiano
  • 54,118