1

How can I create the pop out symbol in latex?

enter image description here

Signifies that something is a link.

I used a latex symbol finder but it tells me the closest match is the male gender symbol, which I guess is pretty similar but not entirely.

Hoping there is just a command for this so that I don't have to draw it myself.

Thanks

K Split X
  • 681

1 Answers1

3

The package fontawesome5 provides to get your simbol with the command \faExternalLink*.

\documentclass[a4paper,12pt]{article}
\usepackage{fontawesome5}
\begin{document}
\faExternalLink*
\end{document}

Here there is the output:

enter image description here

Sebastiano
  • 54,118