1

I want to write this 1 in latex, could anyone help me, please?

enter image description here

Sebastiano
  • 54,118
Intuition
  • 113

1 Answers1

5

My welcome to TeX.SE. This is a standard question. The next time use this tool to search your symbol: http://detexify.kirelabs.org/classify.html

enter image description here

\documentclass{article}
\usepackage{dsfont}
\usepackage{amsmath,amssymb}
\begin{document}

$f \times \mathds{1}$
\end{document}

If you do not like the symbol 1 in the image, there is another option with LaTeX. Use bbold package as an example and image that I have included.

enter image description here

\documentclass{article}
\usepackage{bbold}
\usepackage{amsmath,amssymb}
\begin{document}

$f \times \mathbb{1}$
\end{document}
Sebastiano
  • 54,118