如何将大宽度表格数据放入双列格式?

如何将大宽度表格数据放入双列格式?

我正在使用会议 Latex 格式,您可以在此链接上查看详细的格式化代码。我想插入双列格式的表格。这是我要在 latex 中格式化的内容 在此处输入图片描述

我为它编写了一些基本代码,但输出可视化效果相当小。以下是 Latex 代码的输出 在此处输入图片描述

请参阅表1。

这是该表的代码:

\begin{table}[htb]
\caption{hello2 testing}
\label{1234}
\resizebox{\columnwidth}{!}{%

\begin{tabular}{c*{6}{>{$}c<{$}}}
\hline
    \text{Name}        & \text{Reference}       & \text{S/A}       & \text{Advantages}  & \text{Disadvantages}   & API  \\
    \hline
 Abcde (abcc) & 43,50 & S & There is value in the demanding of high data & It do not thing any thing you can make better & Abbccc & Python, C++ \\
 69.8\pm 9.5 & 93.6\pm 3.6 & 86.9\pm 8.4 & 91.5\pm 4.5 & 94.9\pm 5.4 \\
97.0\pm 2.9 & 99.2\pm 1.8 & 99.6\pm 1.4 & 98.3\pm 2.9 & 99.6\pm 1.4 \\
97.8\pm 3.1 & 95.3\pm 3.1 & 96.2\pm 2.5 & 92.4\pm 3.3 & 97.5\pm 3.0 \\
77.5\pm 7.2 & 90.2\pm 4.1 & 90.2\pm 5.7 & 88.1\pm 4.8 & 91.6\pm 4.9 \\
 88.0      & 95.1      & 94.1      & 93.5      & 96.5 \\
 \hline
\end{tabular}
}
\end{table}

答案1

无关:

您需要知道,本网站的成员都是志愿者。他们利用业余时间回答问题。为了能够回答尽可能多的问题,他们通常希望问题清晰易懂,不需要在网上搜索提问者等已知的数据,问题包含可重现相关问题的 MWE(最小工作示例,一个小但完整的可编译文档)。

所以请您好心,在您的问题中提供您在评论中询问的所有内容。如果您不这样做,我们只能猜测一些信息,这些信息对于准备答案至关重要。- 例如,以下示例是基于猜测的:

主题:

在下面的 MWE 中假设您的文档有两列。

  • 在这种跨越两列的表格文档中,您应该使用table*环境。
  • 某些表格单元格包含非常长的文本。因此,使用将文本分成多行的列类型是明智的。此类列带的示例包括p{<column width>}、 或X及其来自tabularx表格环境的派生词(如下面 MWE 中选择的)。
  • 通过使用包,可以简单简洁地编写故事中的数字siunitx
\documentclass[twocolumn]{article}
\usepackage{booktabs, tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\NewExpandableDocumentCommand\mcC{O{1}m}
    {\multicolumn{#1}{C}{#2}}
\NewExpandableDocumentCommand\mcL{O{1}m}
    {\multicolumn{#1}{L}{#2}}
\usepackage{siunitx}
\usepackage{stfloats} % for positioning of figure* on the same page

\usepackage{lipsum}

\begin{document}
\lipsum[1]
\begin{table*}[b]
\caption{hello2 testing}
\label{1234}
    \small
    \setlength\tabcolsep{4pt}
\begin{tabularx}{\linewidth}{l *{5}{S[table-format=2.1(2),
                                        separate-uncertainty]}
                             }
    \toprule
Name   
    &   \mcC{Reference}  
                &   \mcC{S/A}    
                        &   \mcC{Advantages}
                                    &   \mcC{Disadvantages}
                                                &   \mcC{API}               \\
    \midrule
Abcde (abcc) 
    &   43,50   &   \mcL{There is value in the demanding of high data}
                            &   \mcL{It do not thing any thing you can make better}
                                        &   \mcC{Abbccc}
                                                    &   \mcC{Python, C++}   \\
    \addlinespace
B   & 69.8(95)  & 93.6(36)  & 86.9(84)  & 91.5(45)   & 94.9(54)  \\
C   & 97.0(29)  & 99.2(18)  & 99.6(14)  & 98.3(29)  & 99.6(14)  \\
D   & 97.8(31)  & 95.3(31)  & 96.2(25)  & 92.4(33)  & 97.5(30)  \\
E   & 77.5(72)  & 90.2(41)  & 90.2(57)  & 88.1(48)  & 91.6(49)  \\
F   & {88.0}    & {95.1}    & {94.1}    & {93.5}    & {96.5}    \\
    \bottomrule
\end{tabularx}
\end{table*}
\lipsum[2-5]
\end{document}

它给:

在此处输入图片描述

相关内容