如何将这些数据表示为表格?

如何将这些数据表示为表格?

我正在尝试将其放入我的 LaTeX 文档中的表格中。我该如何获取它?Ctrl-K在这里可以做到,但不确定如何在 LaTeX 中做到。

               Left      Right     Bottom        Top   Diagonal
Left      0.1303394  0.1084274  0.2158028  0.1050394 -0.2093420
Right     0.1084274  0.1632741  0.2841319  0.1299967 -0.2404701
Bottom    0.2158028  0.2841319  2.0868781  0.1645389 -1.0369962
Top       0.1050394  0.1299967  0.1645389  0.6447234 -0.5496148
Diagonal -0.2093420 -0.2404701 -1.0369962 -0.5496148  1.3277163

答案1

我会使用该siunitx包,因为它能够将数字的小数点对齐并正确显示减号,还会使用该booktabs包,因为它能够绘制间距适当的水平规则。

我还会研究显示所有数字为七位 [7!] 的理由。四舍五入到小数点后四位应该足够了,对吧?幸运的是,该siunitx包可以执行自动四舍五入,如下面第二张表所示。

在此处输入图片描述

\documentclass{article}
\usepackage{siunitx,booktabs}
\sisetup{group-digits=false}
\begin{document}
\begin{table}
\centering
\caption{This is my table}
\begin{tabular}{@{} l *{5}{S[table-format=-1.7]} @{}} 
\toprule
& {Left} & {Right} & {Bottom} & {Top} & {Diagonal}\\ % center-set header entries
\midrule
Left    &  0.1303394  & 0.1084274 &  0.2158028 &  0.1050394 & -0.2093420\\
Right   &  0.1084274  & 0.1632741 &  0.2841319 &  0.1299967 & -0.2404701\\
Bottom  &  0.2158028  & 0.2841319 &  2.0868781 &  0.1645389 & -1.0369962\\
Top     &  0.1050394  & 0.1299967 &  0.1645389 &  0.6447234 & -0.5496148\\
Diagonal& -0.2093420  &-0.2404701 & -1.0369962 & -0.5496148 &  1.3277163\\
\bottomrule
\end{tabular}

\bigskip

\sisetup{round-mode=places,round-precision=4} % switch on rounding
\caption{This is my table, this time with rounded numbers}
\begin{tabular}{@{} l *{5}{S[table-format=-1.4]} @{}} 
\toprule
& {Left} & {Right} & {Bottom} & {Top} & {Diagonal}\\ % center-set header entries
\midrule
Left    &  0.1303394  & 0.1084274 &  0.2158028 &  0.1050394 & -0.2093420\\
Right   &  0.1084274  & 0.1632741 &  0.2841319 &  0.1299967 & -0.2404701\\
Bottom  &  0.2158028  & 0.2841319 &  2.0868781 &  0.1645389 & -1.0369962\\
Top     &  0.1050394  & 0.1299967 &  0.1645389 &  0.6447234 & -0.5496148\\
Diagonal& -0.2093420  &-0.2404701 & -1.0369962 & -0.5496148 &  1.3277163\\
\bottomrule
\end{tabular}
\end{table}
\end{document}

答案2

\begin{table}[h]
\centering
\begin{tabular}{lrrrrr}
       &      Left   &   Right  &   Bottom    &    Top  & Diagonal \\
\hline
Left     & 0.1303394 & 0.1084274 & 0.2158028 & 0.1050394 &-0.2093420 \\
Right    & 0.1084274 & 0.1632741 & 0.2841319 & 0.1299967 &-0.2404701 \\
Bottom   & 0.2158028 & 0.2841319 & 2.0868781 & 0.1645389 &-1.0369962 \\
Top      & 0.1050394 & 0.1299967 & 0.1645389 & 0.6447234 &-0.5496148 \\
Diagonal &-0.2093420 &-0.2404701 &-1.0369962 &-0.5496148 & 1.3277163 
\end{tabular}
\end{table}

相关内容