强调文本中的指数函数

强调文本中的指数函数

我想排版如下:

[...] $y = \exp(x)$, where $\exp$ is the exponential function.

但是,我不喜欢$\exp$文本中根本没有强调这一点。有什么好的替代方案吗?离开数学模式是个好主意吗?

[...] $y = \exp(x)$, where \textit{exp} is the exponential function.

不知为何,这看起来不太优雅。

答案1

我不建议改变字体样式,我宁愿添加一些冗余信息,比如 的定义exp,或者将其放在引号中。

\documentclass{article}
\begin{document}
$y = \exp(x)$, where $\exp\colon x \mapsto \mathrm{e}^x$ is the
exponential function.

$y = \exp(x)$, where ``$\exp$'' is the exponential function.
\end{document}

在此处输入图片描述

答案2

我假设您不仅希望“exp”,还希望所有基于字母的数学运算符都使用倾斜/斜体字体形状,而不是基本的直立/罗马字体形状。这样做很简单——请参阅下面的代码。(这段代码归功于@HenriMenke 的评论——谢谢,Henri!)

顺便说一句,我相信你会得到很多建议不要改变字体形状;但是,既然你问了......

在此处输入图片描述

\documentclass{article}
\makeatletter
\let\operator@font=\it
\makeatother

\begin{document}    
$y = \exp(x)$, where $\exp$ is the exponential function.
\end{document}

答案3

如果你有信息,那么就用明确的意图传达它。明确地表达

I use $\exp(\bullet)$ to denote the exponential function $e^\bullet$ 
to better typeset the argument without the superscript font size.

如果您确实认为这是一个可能会让人困惑的细节,请不要将其隐藏在定义条款中。

相关内容