我想在分子前写字母,如下所示

我想在分子前写字母,如下所示

我正在学习 Tex 并且我有这个命令,但我想要以下输出,提前感谢您的帮助。

我的代码;

\documentclass{article}

\begin{document}

    $$  M_{extra} = \frac {Kinetic,Potential,Thermal E}{C^2}$$

    \end{document}

我要这个在此处输入图片描述

答案1

这是我的结果,并不完全是你的。希望它能帮到你。

\documentclass[]{standalone}
\usepackage{amsmath}
\begin{document}
$m_{extra} = \frac {
 {\tiny  
 \begin{smallmatrix}
        kinetic\\
        potential\\
        thermal
 \end{smallmatrix}
}E}{C^2}$
\end{document}

结果

编辑(Ethan Bolker 的建议)

\documentclass[]{standalone}
\usepackage{amsmath}
\begin{document}
$m_{\text{\textit{extra}}} = \frac {
 {\tiny  
 \begin{smallmatrix}
        \text{\textit{kinetic}}\\
        \text{\textit{potential}}\\
        \text{\textit{thermal}}
 \end{smallmatrix}
}E}{C^2}$
\end{document}

结果是一样的,但是更正确。

答案2

也许你喜欢

在此处输入图片描述

\documentclass{article}
    \usepackage{amsmath}
    \usepackage{fouriernc}

\usepackage[active,floats,tightpage]{preview}
\PreviewEnvironment{equation*}% <---------------------------------
    \setlength\PreviewBorder{1em}

    \begin{document}
\begin{equation*}
    M_{\text{extra}} =
\frac{\text{\itshape\bfseries\begin{tabular}[b]{l}
        Kinetic     \\
        Potential   \\
        Thermal
      \end{tabular}}{\!\!\text{%
\fontsize{46}{11}\itshape E}
     }} % end of the numerator
    {C^2}
\end{equation*}
    \end{document}

...只是我的看法...

答案3

另一种变体使用表格表示能量类型并调整符号大小表格的高度:

\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}

\begin{document}
\[
  M_{\text{extra}} = \frac{
    \sbox0{\footnotesize
      \begin{tabular}[b]{@{}l@{}}
        kinetic\\potential\\thermal
      \end{tabular}%
    }\copy0
    \resizebox{!}{\ht0}{\Huge$E$}
  }{C^2}
\]
\end{document}

结果

环境tabular还添加了支柱,这使得比“kinetic”字母的顶部稍大一点。因此,带有包装的版本varwidth

\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{varwidth}

\begin{document}
\[
  M_{\text{extra}} = \frac{
    \sbox0{\footnotesize
      \begin{varwidth}[b]{\linewidth}
        kinetic\\potential\\thermal
      \end{varwidth}%
    }\copy0
    \resizebox{!}{\ht0}{\Huge$E$}
  }{C^2}
\]
\end{document}

带有 varwidth 的结果

答案4

在此处输入图片描述

这是代码。

\documentclass{article}

\usepackage{amsmath}
\usepackage{relsize}

\begin{document}

\begin{equation*}
 M_{\text{extra}} = 
\frac {
\begin{array}{l}
\text{Kinetic} \\
\text{Potential} \\
\text{Thermal}
\end{array}
\mathlarger{\mathlarger{\mathlarger{\mathlarger{E}}}}
} % end of the numerator
{C^2}
\end{equation*}

\end{document}

相关内容