紧急请求帮助...有人能告诉我如何在 Latex 中正确输入这个简单的方程式,而不会出现明显的错误吗?我使用了以下代码(请参阅下面的代码),但是,它产生的输出有一些明显的错误(请参阅附加的输出图像),例如;
- 整个公式都是斜体,字体不同。应改为常规 Times New Roman 文本 12pt,非斜体。
- 单词是连在一起的。在代码中,单词是分开的,但这不会转化为输出,所有单词都连在一起。我该如何更改代码以在两个单词之间添加空格?这些不应该连在一起。
代码在这里;
\begin{equation}
\underset{[\mathrm{Cells/uL}]}{Absolute Count} = \frac{Cell Count \times eBead Volume}{eBead Count \times Cell Volume} \times eBead Concentration
\end{equation}
太感谢了。
答案1
我不确定这样的公式是否有意义。无论如何,你想用文字而不是数学来表达这些词。
是微升,不是微升。
\documentclass{article}
\usepackage{amsmath}
\usepackage{siunitx}
\begin{document}
\begin{equation}
\underset{[\mathrm{Cells/\unit{\micro\liter}}]}{\textup{Absolute Count}} =
\frac{\textup{Cell Count} \times \textup{eBead Volume}}
{\textup{eBead Count} \times \textup{Cell Volume}}
\times \textup{eBead Concentration}
\end{equation}
\end{document}
如果要将全局文档字体更改为 Times
\documentclass{article}
\usepackage{newtxtext,newtxmath}
\usepackage{amsmath}
\usepackage{siunitx}
\begin{document}
\begin{equation}
\underset{[\mathrm{Cells/\unit{\micro\liter}}]}{\textup{Absolute Count}} =
\frac{\textup{Cell Count} \times \textup{eBead Volume}}
{\textup{eBead Count} \times \textup{Cell Volume}}
\times \textup{eBead Concentration}
\end{equation}
\end{document}
答案2
原生 LaTeX 中没有 Times New Roman。最接近的方法是加载mathptmx
(参见:如何通过命令将文档字体设置为 Times New Roman)
您可以使用命令在数学公式中添加文本\text
。请参阅下面的代码。
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{mathptmx}
\begin{document}
\begin{equation}
\underset{\text{Cells/uL}}{\text{Absolute Count}} = \frac{\text{Cell Count}\; \times\; \text{eBead Volume}}{\text{eBead Count} \; \times \; \text{Cell Volume}} \; \times\; \text{eBead Concentration}
\end{equation}
\end{document}