答案1
我怀疑您正在寻找以下内容:
\documentclass[10pt,letterpaper]{report}
\usepackage{amsmath,amssymb}
\usepackage{array,multirow}
\usepackage{lipsum}
\begin{document}
\lipsum[66]
\[\setlength\extrarowheight{1pt}
\begin{tabular}{r c >{$}r<{$:} l}
\multirow[t]{3}{*}{$
Q_r=\dfrac{W}{\gamma\times t}
$} & where & W & Weight \\
& & \gamma & Specific weight\\
& & t & Average time
\end{tabular}
\]
\lipsum[66]
\end{document}
答案2
这是一个使用单一array
环境的解决方案。
\documentclass{article}
\usepackage{amsmath,array}
\newcolumntype{L}{>{$}l<{$}}
\begin{document}
\[
Q_r=\frac{W}{\gamma\times t} \qquad\text{where}\qquad
\begin{array}[t]{@{} r<{\colon} L @{}}
W & Weight \\
\gamma & Specific weight\\
t & Average time
\end{array}
\]
\end{document}
答案3
我读这个帖子并得到这个
\documentclass[10pt,letterpaper]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amsfonts,amssymb}
\begin{document}
\begin{tabular}{rcl}
$Q_r=\dfrac{W}{\gamma \times t}$& where & \begin{tabular}{rl}
&\\
&\\
$W$:&Weight\\
$\gamma$:&Specific weight\\
$t$:&Average time
\end{tabular}
\end{tabular}
\end{document}
但这创造了一个空间多于表格。我可以\vspace{-0.5cm}
在表格前面添加一个。