用美元符号引用的方程式中的正常字体

用美元符号引用的方程式中的正常字体

${---}$ 和 itemize 中的文本或公式为斜体。如何转换为正常??我已经使用过,\text\mathrm不起作用。请大家为以下代码找到解决方案:

\begin{itemize}
\item {\ Y(t)\  =\ A\ Sin($2\pi f_{in}t)$} \newline
$\implies{Slope, s\ =\ \frac{dy}{dt}\ = 2\pi f_{in}Acos(2\pi f_{in}t)]}$
\item{$Suppose \ n=10\ bits\ and\ t_{s}=1ns$}
\end{itemize}

答案1

我认为那\text是一个amsmath命令。

尝试添加\usepackage{amsmath}到您的序言中(之前\begin{document},然后尝试\text{}再次使用。

还要注意,对于像 这样的函数cos,您确实希望将它们作为运算符。对于常见函数,您只需使用 即可实现这一点\cos。这将cos输入直立文本,并且作为奖励,调整间距。

另外,您不应该\在数学模式中使用(反斜杠空格)。间距应该是自动的。(数学模式确实会破坏空格,但这通常是件好事。)

$$或者,当您想要文本时就不要使用。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{itemize}
\item $Y(t) = A \sin(2\pi f_{in}t)$ \\
    $\implies$ Slope, $s = \frac{dy}{dt} = 2\pi f_{in}A \cos(2\pi f_{in}t)$
\item Suppose $n=10$ bits and $t_{s}=1ns$
\end{itemize}
\end{document}

在此处输入图片描述

我非常强烈推荐LaTeX 2ε 的简短介绍。将其保存到您的计算机!我仍然会定期参考此文档。

相关内容