双列表格中的列不均匀

双列表格中的列不均匀

我被赋予复制此类表格的任务:

在此处输入图片描述

我对 LaTeX 还很陌生,今天才开始使用,但在浏览了论坛之后,我觉得可以尝试一下。

这是我当前的代码(只是顶行减去标题的一个例子)

\documentclass{article}

\begin{document}

\begin{center}
    \begin{tabular}{ |l|l|} 
        \hline
        \multicolumn{2}{l}{$v=v_0+at$  a = acceleration} & \multicolumn{2}{l}{$F=\frac{1}{4\pi \epsilon_0}\frac{q_1q_2}{r^2}$  A=area}\\
        \hline
    \end{tabular}
\end{center}
\end{document}

您可能已经知道我的方法就是将其视为一个有两列、两行和一个标题的表格,但是它不起作用。

有人知道如何创建此文档吗?谢谢

答案1

这是另一种方法,其中列具有独立的基线跳跃:

\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{amsmath}
\usepackage{array, makecell, tabularx, bigstrut}


\begin{document}

{\small\setlength\tabcolsep{3pt}\noindent\centering
\begin{tabular}{|>{$\displaystyle}l<{$}l|>{$\displaystyle}l<{$}l|}
  \hline
  \multicolumn{2}{|c|}{\bfseries MECHANICS} & \multicolumn{2}{c|}{\bfseries ELECTRICITY AND MAGNETISM}\bigstrut[t] \\[2ex]
  \begin{aligned}[t]
                                            & v = v_0 + at \\
                                            & x = x_0 + v_0t + \dfrac12at^2 \\
                                            & v^2 = v_0^2 + 2a(x-x_0) \\
                                            & \mathbf F = \frac{dp}{dt} \\
                                            & \mathbf J = \int\mathbf F\,dt = \Delta\mathbf p \\
                                            & \mathbf p = m\mathbf v
  \end{aligned}
& \begin{tabular}[t]{>{$}c<{={} $}@{}p{0.2\linewidth}}
  a & acceleration \\
  F & force \\
  f & frequency \\
  I & rotational inertia \\
  J & impulse \\
  K & kinetic energy \\
  k & spring constant
\end{tabular}
&
\begin{aligned}[t]
    & V = IR \\
    & F = \frac{1}{4\pi\varepsilon_0}\frac{q_1q_2}{r^2} \\
    & E = \frac{F}{q } \\
    & \oint\mathbf E\cdot d\mathbf A = \frac{Q}{\varepsilon_0} \\
    & E = -\frac{dV}{dr} \\
    & V = \frac{1}{4\pi\varepsilon_0}\sum_s\frac{q_s}{r_s} \\
    & U_k = qV = \frac{1}{4\pi\varepsilon_0}\frac{q_1q_2}{r} \\[1ex]
\end{aligned}
& \begin{tabular}[t]{>{$}c<{={} $}@{}p{0.2\linewidth}}
A & area \\
B & magnetic field \\
C & capacitance \\
d & distance \\
E & electric field\\
F & force \\
I &current \\
L & inductance \\
\ell & length \\
n & number of loops of wire per unit length \\
P & power\\
\end{tabular}\\
\hline
\end{tabular}}

\end{document} 

在此处输入图片描述

答案2

至少这是一个开始。我不知道它是否能很好地处理更高的方程式,但它很简单:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{tabular}{|ll|ll|} \hline
\multicolumn{2}{|c|}{Mechanics} & \multicolumn{2}{c|}{Electricity and Magnetism} \\
\(v = v_0 + at \) & \( a = \text{acceleration} \) & \( V = IR \) & \( A = \text{area} \) \\ \hline
\end{tabular}

\end{document}

在此处输入图片描述

您之前遇到的主要问题是\multicolumn包含您想要分散在多列中的内容。因此,如果您认为标题需要两个两列的块,则表格定义中总共需要四列。

相关内容