表格展示方程式及其元素

表格展示方程式及其元素

我试图用这种方式提出一个等式

Example of Table

我不知道这是否是呈现这些信息的最佳方式,但我从参考指南中得到了这个例子。

答案1

我怀疑您正在寻找以下内容:

enter image description here

\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环境的解决方案。

enter image description here

\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}在表格前面添加一个。

相关内容