公式模式下的缩写看起来不太好(太宽)

公式模式下的缩写看起来不太好(太宽)

我想知道是否有任何方法可以让 TVPI 缩写中的字母“V”和“P”彼此更接近?现在它们看起来彼此相距太远了。

以下是代码

\begin{equation}
TVPI=\frac{Distributed\:capital}{Paid\mbox{-}in\:capital}
\end{equation}

结果

在此处输入图片描述

谢谢。

答案1

另一种方法是(与 Mico 的输出相同)如果您只需要这个首字母缩略词一次(并且不需要定义新命令,使用\mbox\itshape

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\mbox{\itshape TVPI}=\frac{\mbox{Distributed capital}}{\mbox{Paid-in capital}}
\end{equation}
\end{document}

输出

答案2

在 TeX 的数学模式中,单个字母被视为单独的变量。这就是为什么“TVPI”中的四个字母之间相隔这么远的原因(V 和 P 之间的间隔特别大)。

要使 TeX/LaTeX 将“TVPI”视为单身的变量(顺便说一下,将分子和分母中的文本排版为直立文本而不是数学斜体),您应该使用如下代码:

\documentclass{article}
\usepackage{amsmath} % for \text macro
\newcommand{\TVPI}{\textit{TVPI}} % set acronym in text-italics mode
\begin{document}
\begin{equation}
\TVPI=\frac{\text{Distributed capital}}{\text{Paid-in capital}}
\end{equation}
\end{document}

在此处输入图片描述

如果您喜欢使用直立罗马字体而非斜体来显示变量名,则应使用\textnormal而不是\textit。祝您 TeXing 愉快!

相关内容