表格中的数学

表格中的数学

我试图将一些内容放在\times表格\power中,但是效果不佳。

\usepackage{mathtools}
\usepackage{amsmath}

\begin{tabular}{| p{3cm} | p{9cm} }
\hline
\bf hardware & \bf rekensom\\
\hline
6506E & 1 - (1 - 0.9999909)^2 = 0.99999999991 * 100% = 99.9999999917%\\
\hline
6509E & 1 - (1 - 0.9999885)^2 = 0.99999999986 * 100% = 99.9999999868%\\
\hline
\end {tabular}

我也尝试过这个,但是也没有用:

\hline
6506E &  $$ 1 - (1 - 0.9999909)\power2 = 0.99999999991 \times 100\% $$\\
\hline

这里给出的错误是

未定义控制序列

答案1

这应该可行。请避免使用\bf而使用\textbf{...}

\documentclass{article}
\pagestyle{empty}% for cropping
\begin{document}
\begin{tabular}{| p{3cm} | p{9cm} }
\hline
\textbf{hardware} & \textbf{rekensom} \\
\hline
6506E & $1 - (1 - 0.9999909)^2 = 0.99999999991 * 100\% = 99.9999999917\%$ \\
\hline
6509E & $1 - (1 - 0.9999885)^2 = 0.99999999986 * 100\% = 99.9999999868\%$ \\
\hline
\end {tabular}
\end{document}

在此处输入图片描述


这里有一个稍微增强的版本:

\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{amsmath,booktabs}
\begin{document}
\begin{tabular}{lp{0.7\linewidth}}
    \toprule
    Hardware & Rekensom \cr
    \midrule
    6506E &
    $\aligned
        1 - (1 - 0.9999909)^2 &= 0.99999999991 \cdot 100\,\% \\
        &= 99.9999999917\,\%
    \endaligned$ \cr
    6509E &
    $\aligned
        1 - (1 - 0.9999885)^2 &= 0.99999999986 \cdot 100\,\% \\
        &= 99.9999999868\,\%
    \endaligned$ \cr
    \bottomrule
\end {tabular}
\end{document}

在此处输入图片描述

答案2

让我们考虑一下您的标题主题,并使用更具挑战性的积分输入。我发现 Andrew 的表格\eqbreak\begin{aligned} ... \end{aligned}这里是一个更可配置的选项。您的表格与 Henri 的示例很相配,但如果您得到积分和其他具有挑战性的运算符,eqbreak它会很有用。更改

  • 没有booktabs垂直线 [Zarko]
  • 安德鲁\eqbreak挑战运算符等积分
  • \bgroup\def\arraystretch{1.5} ... \egroup为细胞提供更多空间
  • 明确地\begin{aligned}...\end{aligned}[Andrew2]

您的积分示例

\documentclass[english]{article}
\pagestyle{empty}% for cropping
\usepackage{amsmath, amsfonts,rotating}
\usepackage{physics}
% http://tex.stackexchange.com/a/139450/13173
% http://tex.stackexchange.com/a/324197/13173
\newcommand{\eqbreak}[1][2]{\\&\hskip#1em}
\begin{document}
\bgroup
\def\arraystretch{1.5}%  1 is the default, change whatever you need
\begin{tabular}{| l | p{0.7\linewidth} |}
    \hline
    Hardware & Rekensom \\ \hline
    6506E &
    $\begin{aligned}
        1 - (1 - 0.9999909)^2 \eqbreak[-2] \times \int\limits_{-\infty}^{+\infty} A x \cdot \int\limits_{-\infty}^{+\infty} B y \times Z \alpha \, \text{dy} \, \text{dx} \\ &= 0.99999999991 \cdot 100\,\% \\
        &= 99.9999999917\,\%
    \end{aligned}$ \\ \hline
    6509E &
    $\begin{aligned}
        1 - (1 - 0.9999885)^2 &= 0.99999999986 \cdot 100\,\% \\
        &= 99.9999999868\,\%
    \end{aligned}$ \\ \hline
\end{tabular}
\egroup
\end{document}

输出

在此处输入图片描述

限制

  • 没有已知的

相关内容