LaTeX Error: The font size command \normalsize is not defined

【LaTeX错误描述】
LaTeX Error: The font size command \normalsize is not defined

【解决方法】
在.tex文件开始处务必添加上 \documentclass{article} 语句,否则会报错“LaTeX Error: The font size command \normalsize is not defined”。
如一个可正确运行的LaTeX示例代码如下:

\documentclass{article}
\begin{document}
	$\sum_{i=1}^{n}a_i$
\end{document}

【运行结果】
此.tex文件运行后的结果是一个求和式子。

你可能感兴趣的:(软件应用,LaTeX,LaTeX)