我总是收到以下警告:
LaTeX 字体警告:大小 <11.5> 的字体形状‘OMS/cmsy/m/n’不可用
答案1
首先,cmsy
它看起来不像 Times New Roman。要使用这种字体,请使用mathptmx
包(Times 字体,用于文本和数学公式)。要使用任何字体大小,您需要使用带有scrartcl
文档类的 Koma Script。
平均能量损失
输入:
\documentclass[fontsize=11.5pt]{scrartcl}
%if you want both maths and text in Times New Roman :
\usepackage{mathptmx}
%if you only want text in Times New Roman :
%\usepackage{times}
\usepackage{lipsum} %Blind text
\begin{document}
\lipsum[1-3]
$$SE=\sqrt{\frac{1}{n-2}\left[\sum^{n}_{i=1}(y_i-\overline{y})^2-\frac{\Big[\sum^{n}_{i=1}(x_i-\overline{x})(y_i-\overline{y})\Big]^2}{\sum^{n}_{i=1}(x_i-\overline{x})^2}\right]}$$
\lipsum[1-2]
\end{document}
输出mathptmx
:
输出times
: