我想添加一个方程,其中解释了方程中使用的符号的含义。到目前为止,我有这个
我想要这样的东西:
有人能帮帮我吗?
我的 MWE 是:
\documentclass{book}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{equation}
Umsatz = V_{R} \times R_{Zeit} \times R_{Konz} \times \dot{c}
\end{equation}
With
\begin{table}[h!]
\begin{tabular}{cc}
Umsatz & total mass flow converted during the reaction in {kmol/h} \\
$V_{R}$ & Catalyst volume in $m^{3}$
\end{tabular}
\end{table}
\end{document}
先感谢您。
答案1
一种可能的解决方案是使用alignat
和fleqn
from nccmath
:将方程式环境置于左边距(与左边距的距离可自定义)。我擅自将 'with' 替换为 'where',这是更好的风格。此外,单位不是用斜体输入的;要获得正确的单位格式,请使用包siunitx
:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{array}
\usepackage{mathtools, nccmath}
\usepackage{siunitx}
\begin{document}
\begin{fleqn}
\begin{alignat}{2}
& \text{Kinetic } & \quad & \mathit{Umsatz} = V_{R} \cdot R_\text{Zeit} \cdot R_\text{Konz} \cdot \dot{c} \\[1.5ex]
& \text{where} & &
\begin{tabular}[t]{@{}r <{:}@{\space}l}
$ \mathit{Umsatz} $ & total mass flow converted during the reaction in \si{kmol/h} \\
$V_{R}$ & Catalyst volume in \si{m^{3}}
\end{tabular} \notag
\end{alignat}
\end{fleqn}
\end{document}