Latex 会自动将 1 个单词变成斜体,我找不到办法让它恢复正常。我该如何解决这个问题?

Latex 会自动将 1 个单词变成斜体,我找不到办法让它恢复正常。我该如何解决这个问题?

这是我的源代码

这是输出

我希望“seconds”一词以粗体显示,而不是像其他单词一样以斜体显示,但我不知道为什么它不同。如能得到任何帮助,我将不胜感激。

答案1

您需要t \epsilon [0,5]用替换$t \in [0,5]$。即需要进行两处更改:

  • 使用内联数学模式处理数学材料,以及

  • 改成。\epsilon\in

完整的 MWE——请注意,我会不是呈现段落大胆的我将使用软件包的机制siunitx来排版数字及其相关的科学单位。(如果你坚持使用大胆的对于文本部分,您还应该努力将数学部分以粗体呈现。

在此处输入图片描述

\documentclass{article}
\usepackage{siunitx} % for '\SI' macro

\begin{document}
\setcounter{section}{1}  % just for this example
\setcounter{subsection}{2}

\subsection{}

Compute the complete solution to the ordinary differential 
equation with input $x(t)=0$ assuming the circuit elements 
are $R=\SI{0.5}{\ohm}$, $L=\SI{0.1}{H}$, $C=0$ and initial
conditions $y(0)=1$ and $dy(t)\,dt\mid t=0$. Use MATLAB to
plot your solution for time interval $t\in[0,5]$ seconds.

\end{document}

相关内容