0

How to add special alphabet like this picture below?

I have read from How to insert a special math alphabet, but I confused to determine what the font type of this alphabet.

What the font type of this alphabet?

enter image description here

1 Answers1

2

Hint: The symbol of your picture is done using the amssymb package (in math-mode) with the command \mathfrak{p}.

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{amssymb}
\begin{document}
$\mathfrak{p}$
\end{document}
Sebastiano
  • 54,118