答案1
我建议您 (a) 使用加载包所需的任何 lyx 代码,siunitx
以及 (b) 替换
$\hbar=\frac{h}{2\pi}=1.054573\times10^{-34}J\,s$
和
$\hbar=\frac{h}{2\pi}=\qty{1.054573e-34}{\joule\second}$
作为额外的好处,字母符号“J”和“s”将以直立字母呈现,这是显示科学单位的基于 SI 的标准/规范。
恐怕我没有使用 lyx,所以我不能给你更多建议。LaTeX 代码和输出如下:
如果你不想在数字部分进行视觉分组,请更改\qty{...}{...}
为\qty[group-digits=false]{...}{...}
。这将通知 LaTeX 不应进行数字部分的视觉分组。
\documentclass{article} % or some other suitable document class
\usepackage{siunitx}
\begin{document}
$\hbar=\frac{h}{2\pi}=\qty{1.054573e-34}{\joule\second}$
\end{document}
答案2
看起来渲染输出的问题与您使用的环境和/或应用程序有关。
下面的代码:
- 后面不带空格或带空格均可
\times
- 正确呈现它
TexMakers preview (built-in viewer)
,Acrobat reader
并且FireFox
\documentclass[10pt,a4paper]{article}
\begin{document}
As entered into Lyx: \hfill
$\hbar=\frac{h}{2\pi}=1.054573\times10^{-34}J\,s$
And now with a space: \hfill
$\hbar=\frac{h}{2\pi}=1.054573\times 10^{-34}J\,s$
\end{document}