答案1
句号的存在根本不重要。你可以用
\begin{equation}
\centerline{$a=b$}
\end{equation}
和
\begin{equation}
\centerline{$a=b$}
\end{equation}
事实是,输入从一开始就是错误的:\centerline
是一个纯 TeX 宏,不应该在 LaTeX 中使用,除非非常特别需要效果。
环境equation
已经将数学材料置于中心,无需进一步努力。因此,您的输入应该是
\documentclass{article} % this class just for producing the example
\usepackage{amsmath} % for math typesetting
\begin{document}
\begin{equation}
\label{ix}
I_{\textup{aligned}} = I - I_{\textup{rot}}.
\end{equation}
\end{document}
注意,内部不允许有空行equation
,并且文本下标应采用直立字体。