I am new to LaTex, I am using a Overleaf. I'm trying to write the equation
n\times b= b+b+...+b
with 'n-times' in the bottom.
I am new to LaTex, I am using a Overleaf. I'm trying to write the equation
n\times b= b+b+...+b
with 'n-times' in the bottom.
Is this what you are asking for?
\usepackage{amsmath}
\begin{document}
\begin{equation}
$n \times b=\underbrace{b+b+\ldots+b}_{n}$
\end{equation}
\end{document}
Like this?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
n\times b=\underbrace{b+b+\cdots+b}_{n\textup{-times}}
\end{equation}
\end{document}
You might replace \cdots with \ldots. See also When to use \dots, \ldots, \cdots, and blanks? and \dots versus \ldots - is there a difference?. Please read Mico's comment.
\cdots does not correspond to the posted image.
– CampanIgnis
Apr 20 '19 at 16:26
n \text{times}and you'll be fine. – Mico Apr 20 '19 at 16:23