Should I put fullstop after \dots in a formula in the end of a sequence?
Consider for example the nonsense formula
$$E=mc^2 + \dots .$$
Should I put fullstop after \dots in a formula in the end of a sequence?
Consider for example the nonsense formula
$$E=mc^2 + \dots .$$
Never ever use $$ in LaTeX; see Why is \[ ... \] preferable to $$ ... $$?
Of course, loading amsmath is recommended, so the equation can be typed in as
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
E=mc^2+\dots+\frac{GmM}{r^2}+\dotsb.
\end{equation*}
\end{document}
Note that you have to help LaTeX and tell it what kind of dots you need: “dots for binary operation” in this case.
$$
E=mc^2+\cdots+{GmM\over r^2}+\cdots.
$$
\bye
\input amstex
\documentstyle{amsppt}
\document
$$
E=mc^2+\dots+\frac{GmM}{r^2}+\dotsb.
$$
\enddocument
The output is essentially the same in all three cases.
;-)
– egreg
Apr 21 '16 at 21:42
\dotsgives “…”) shall not be followed by a period. Hence, the answer is no. – Zoxume Apr 21 '16 at 20:20amsmathand input your formula as\[E=mc^2+\dotsb.\]If you aren't using LaTeX, but plain TeX, use\cdots. – egreg Apr 21 '16 at 20:25