如何在乳胶中撰写长表(底部)的图例描述?

如何在乳胶中撰写长表(底部)的图例描述?

我在 overleaf 中使用跨多页的长表。但是,我需要在表格下方放置单倍行距的标题说明。原则上,我想描述表格图例。我希望标题标题位于表格的开头(字段要求),标题说明(表格图例的说明)位于表格下方(表格末尾)。

有人知道怎么做吗?

\usepackage[labelfont=bf]{caption}
\usepackage[format=plain]{caption}
\usepackage{longtable}
\usepackage{ltablex}
\usepackage{tabularx}
\usepackage{tabulary} % Automatic table sizing
\usepackage{tabularx,booktabs}
\usepackage{graphicx, array, blindtext}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{hhline}


\begin{document}
        \LTcapwidth=\textwidth
    \renewcommand\arraystretch{0.58}
    \begin{longtable}{c c c} 
    \caption{Chemical similarity between selected analogs and KGA inhibitors.} 
    \label{tab:61analogs}
    
    %\setlength{\tabcolsep}{6pt}\\
    %\renewcommand{\arraystretch}{0.1}\\
    %\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}\\
    \hline
    \textbf{Compound ID} & \textbf{To ZINC00000169698697} & \textbf{To other inhibitors} \\
    \hline
    \endfirsthead
    \multicolumn{3}{c}%
    {\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
    \hline
    \textbf{Compound ID} & \textbf{Second entry} & \textbf{Third entry} \\
    \hline
    \endhead
    \hline \multicolumn{3}{r}{\textit{Continued on next page}} \\
    \endfoot
    \hline
    \endlastfoot
    25019940 & 0.58 & 0.47 \\
    5164097 & 0.66 & 0.48 \\
    1738866 & 0.62 & 0.47 \\
    20105225 & 0.62 & 0.49 \\
    3110202 & 0.75 & 0.45 \\
    3110206 & 0.73 & 0.62 \\
    4867157 & 0.69 & 0.54 \\
    4304409 & 0.76 & 0.54 \\
    5151381 & 0.76 & 0.49 \\
    3101013 & 0.73 & 0.53 \\
    3100996 & 0.71 & 0.53 \\
    3101001 & 0.71 & 0.36 \\
    19165041 & 0.60 & 0.55 \\
    74982828 & 0.95 & 0.59 \\
    2959312 & 0.62 & 0.42 \\
    25287769 & 0.54 & 0.42 \\
    25287770 & 0.54 & 0.51 \\
    5222294 & 0.65 & 0.60 \\
    1256772 & 0.67 & 0.59 \\
    5080634 & 0.66 & 0.59 \\
    1146140 & 0.69 & 0.35 \\
    5081393 & 0.58 & 0.41 \\
    3463344 & 0.63 & 0.49 \\
    3649210 & 0.73 & 0.49 \\
    3101002 & 0.73 & 0.48 \\
    3100991 & 0.68 & 0.39 \\
    100382946 & 0.54 & 0.41 \\
    100232025 & 0.53 & 0.35 \\
    124451668 & 0.58 & 0.48 \\
    3720795 & 0.67 & 0.59 \\
    16678941 & 0.54 & 0.66 \\
    24593477 & 0.63 & 0.65 \\
    53198065 & 0.68 & 0.48 \\
    4054374 & 0.64 & 0.45 \\
    4573030 & 0.70 & 0.66 \\
    46199646 & 0.43 & 0.41 \\
    1261915 & 0.65 & 0.53 \\
    51065402 & 0.57 & 0.47 \\
    4313682 & 0.63 & 0.46 \\
    40732500 & 0.70 & 0.46 \\
    40732501 & 0.70 & 0.65 \\
    11497983 & 0.64 & 0.52 \\
    20933064 & 0.61 & 0.43 \\
    4387920 & 0.63 & 0.47 \\
    4575072 & 0.65 & 0.42 \\
    40462013 & 0.55 & 0.42 \\
    40462014 & 0.55 & 0.67 \\
    28790638 & 0.73 & 0.67 \\
    28790635 & 0.73 & 0.60 \\
    51134141 & 0.63 & 0.66 \\
    26351270 & 0.65 & 0.57 \\
    16194825 & 0.62 & 0.71 \\
    26324089 & 0.68 & 0.55 \\
    125980034 & 0.68 & 0.49 \\
    42176161 & 0.69 & 0.48 \\
    42176160 & 0.68 & 0.67 \\
    24569294 & 0.64 & 0.44 \\
    3101014 & 0.71 & 0.48 \\
    3587610 & 0.71 & 0.49 \\
    3100992 & 0.68 & 0.49 \\
    995167 & 0.64 & 0.44 \\
    \end{longtable}
    \justify{\textbf{Compound ID}, ID of the compound taken from XXX. \textbf{To XXXX}, chemical XXXX values measured between 61 analogs and the most potent XXXXXX. \textbf{To remaining inhibitors}, chemical similarity values measured between 61 XXXX and the remaining 4 XXXX inhibitors.}
\end{document}

答案1

以下是表格的三种替代版本:

在第一个中,我使用了longtable允许表格跨越多个页面的组合以及threeparttablex表格下方描述性文本的包。

在此处输入图片描述

我还提供了另外两种替代方案,它们都确保表格适合单页显示,不仅显示三列,还显示并排的两组三列。由于列的条目非常窄,您可以在列标题中引入换行符(例如,借助包\thead中的命令makecell),并将表格的后半部分紧挨着前半部分。这样可以节省空间,而不必压缩表格的内容。我还使用了包中的水平线,booktabs以便\addlinespace为眼睛提供指导并使表格更具可读性。

在此处输入图片描述

第二种选择是确保表格的宽度与文本宽度一样,并且说明性文本刚好放置在环境内table\smallskip在表格底部和说明性文本的开头之间添加少量垂直空白。

在第三个也是最后一个方案中,我保持表格的自然宽度,并使用threeparttable以确保表格下方的说明文字与表格的自然宽度一样宽。我还尝试通过在新行中开始每个项目来为描述性文本提供更多结构。

\documentclass{article}
\usepackage[labelfont=bf, format=plain]{caption}
\usepackage{longtable}
\usepackage{tabularx,booktabs}

\usepackage{threeparttablex}
\usepackage{makecell}
\renewcommand{\theadfont}{\normalsize\bfseries}

\begin{document}
\LTcapwidth=\textwidth
\begin{ThreePartTable}
\begin{TableNotes}[flushleft]
\setlength\labelsep{0pt}
\footnotesize
\item[]     \textbf{Compound ID}, ID of the compound taken from XXX. 
\textbf{To XXXX}, chemical XXXX values measured between 61 analogs and the most potent XXXXXX. \textbf{To remaining inhibitors}, chemical similarity values measured between 61 XXXX and the remaining 4 XXXX inhibitors.
\end{TableNotes}
    \begin{longtable}{c c c} 
    \caption{Chemical similarity between selected analogs and KGA inhibitors.} 
    \label{tab:61analogs}\\
    \hline
    \textbf{Compound ID} & \textbf{To ZINC00000169698697} & \textbf{To other inhibitors} \\
    \hline
    \endfirsthead
    \multicolumn{3}{c}%
    {\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
    \hline
    \textbf{Compound ID} & \textbf{Second entry} & \textbf{Third entry} \\
    \hline
    \endhead
    \hline \multicolumn{3}{r}{\textit{Continued on next page}} \\
    \endfoot
    \hline
    \insertTableNotes
    \endlastfoot
    25019940 & 0.58 & 0.47 \\
    5164097 & 0.66 & 0.48 \\
    1738866 & 0.62 & 0.47 \\
    20105225 & 0.62 & 0.49 \\
    3110202 & 0.75 & 0.45 \\
    3110206 & 0.73 & 0.62 \\
    4867157 & 0.69 & 0.54 \\
    4304409 & 0.76 & 0.54 \\
    5151381 & 0.76 & 0.49 \\
    3101013 & 0.73 & 0.53 \\
    3100996 & 0.71 & 0.53 \\
    3101001 & 0.71 & 0.36 \\
    19165041 & 0.60 & 0.55 \\
    74982828 & 0.95 & 0.59 \\
    2959312 & 0.62 & 0.42 \\
    25287769 & 0.54 & 0.42 \\
    25287770 & 0.54 & 0.51 \\
    5222294 & 0.65 & 0.60 \\
    1256772 & 0.67 & 0.59 \\
    5080634 & 0.66 & 0.59 \\
    1146140 & 0.69 & 0.35 \\
    5081393 & 0.58 & 0.41 \\
    3463344 & 0.63 & 0.49 \\
    3649210 & 0.73 & 0.49 \\
    3101002 & 0.73 & 0.48 \\
    3100991 & 0.68 & 0.39 \\
    100382946 & 0.54 & 0.41 \\
    100232025 & 0.53 & 0.35 \\
    124451668 & 0.58 & 0.48 \\
    3720795 & 0.67 & 0.59 \\
    16678941 & 0.54 & 0.66 \\
    24593477 & 0.63 & 0.65 \\
    53198065 & 0.68 & 0.48 \\
    4054374 & 0.64 & 0.45 \\
    4573030 & 0.70 & 0.66 \\
    46199646 & 0.43 & 0.41 \\
    1261915 & 0.65 & 0.53 \\
    51065402 & 0.57 & 0.47 \\
    4313682 & 0.63 & 0.46 \\
    40732500 & 0.70 & 0.46 \\
    40732501 & 0.70 & 0.65 \\
    11497983 & 0.64 & 0.52 \\
    20933064 & 0.61 & 0.43 \\
    4387920 & 0.63 & 0.47 \\
    4575072 & 0.65 & 0.42 \\
    40462013 & 0.55 & 0.42 \\
    40462014 & 0.55 & 0.67 \\
    28790638 & 0.73 & 0.67 \\
    28790635 & 0.73 & 0.60 \\
    51134141 & 0.63 & 0.66 \\
    26351270 & 0.65 & 0.57 \\
    16194825 & 0.62 & 0.71 \\
    26324089 & 0.68 & 0.55 \\
    125980034 & 0.68 & 0.49 \\
    42176161 & 0.69 & 0.48 \\
    42176160 & 0.68 & 0.67 \\
    24569294 & 0.64 & 0.44 \\
    3101014 & 0.71 & 0.48 \\
    3587610 & 0.71 & 0.49 \\
    3100992 & 0.68 & 0.49 \\
    995167 & 0.64 & 0.44 \\
    \end{longtable}
    \end{ThreePartTable}

    \begin{table}
    \caption{Chemical similarity between selected analogs and KGA inhibitors.} 
    \label{tab:61analogs}
    \begin{tabular*}{\linewidth}{@{\extracolsep{\fill}}l c c lcc} 
    \toprule
    \thead{Compound\\ ID} & \thead{Second\\ entry} & \thead{Third\\ entry} & \thead{Compound\\ ID} & \thead{Second\\ entry} & \thead{Third\\ entry} \\
    \cmidrule(r){1-3} \cmidrule(l){4-6}
    25019940 & 0.58 & 0.47  &   24593477 & 0.63 & 0.65  \\
    5164097 & 0.66 & 0.48   &   53198065 & 0.68 & 0.48  \\
    1738866 & 0.62 & 0.47   &   4054374 & 0.64 & 0.45   \\
    20105225 & 0.62 & 0.49  &   4573030 & 0.70 & 0.66   \\
    3110202 & 0.75 & 0.45   &   46199646 & 0.43 & 0.41  \\ \addlinespace
    3110206 & 0.73 & 0.62   &   1261915 & 0.65 & 0.53   \\
    4867157 & 0.69 & 0.54   &   51065402 & 0.57 & 0.47  \\
    4304409 & 0.76 & 0.54   &   4313682 & 0.63 & 0.46   \\
    5151381 & 0.76 & 0.49   &   40732500 & 0.70 & 0.46  \\
    3101013 & 0.73 & 0.53   &   40732501 & 0.70 & 0.65  \\ \addlinespace
    3100996 & 0.71 & 0.53   &   11497983 & 0.64 & 0.52  \\
    3101001 & 0.71 & 0.36   &   20933064 & 0.61 & 0.43  \\
    19165041 & 0.60 & 0.55  &   4387920 & 0.63 & 0.47   \\
    74982828 & 0.95 & 0.59  &   4575072 & 0.65 & 0.42   \\
    2959312 & 0.62 & 0.42   &   40462013 & 0.55 & 0.42  \\ \addlinespace
    25287769 & 0.54 & 0.42  &   40462014 & 0.55 & 0.67  \\
    25287770 & 0.54 & 0.51  &   28790638 & 0.73 & 0.67  \\
    5222294 & 0.65 & 0.60   &   28790635 & 0.73 & 0.60  \\
    1256772 & 0.67 & 0.59   &   51134141 & 0.63 & 0.66  \\
    5080634 & 0.66 & 0.59   &   26351270 & 0.65 & 0.57  \\ \addlinespace
    1146140 & 0.69 & 0.35   &   16194825 & 0.62 & 0.71  \\
    5081393 & 0.58 & 0.41   &   26324089 & 0.68 & 0.55  \\
    3463344 & 0.63 & 0.49   &   125980034 & 0.68 & 0.49 \\
    3649210 & 0.73 & 0.49   &   42176161 & 0.69 & 0.48  \\
    3101002 & 0.73 & 0.48   &   42176160 & 0.68 & 0.67  \\ \addlinespace
    3100991 & 0.68 & 0.39   &   24569294 & 0.64 & 0.44  \\
    100382946 & 0.54 & 0.41 &   3101014 & 0.71 & 0.48   \\
    100232025 & 0.53 & 0.35 &   3587610 & 0.71 & 0.49   \\
    124451668 & 0.58 & 0.48 &   3100992 & 0.68 & 0.49   \\
    3720795 & 0.67 & 0.59   &   995167 & 0.64 & 0.44    \\ \addlinespace
    16678941 & 0.54 & 0.66  \\
    \bottomrule
    \end{tabular*}
    \smallskip
    
\textbf{Compound ID}, ID of the compound taken from XXX. 
\textbf{To XXXX}, chemical XXXX values measured between 61 analogs and the most potent XXXXXX. \textbf{To remaining inhibitors}, chemical similarity values measured between 61 XXXX and the remaining 4 XXXX inhibitors.
    \end{table}
    
    \begin{table}
    \centering
    \begin{threeparttable}
    \caption{Chemical similarity between selected analogs and KGA inhibitors.} 
    \label{tab:61analogs}
    \begin{tabular}{l c c lcc} 
    \toprule
    \thead{Compound\\ ID} & \thead{Second\\ entry} & \thead{Third\\ entry} & \thead{Compound\\ ID} & \thead{Second\\ entry} & \thead{Third\\ entry} \\
    \cmidrule(r){1-3} \cmidrule(l){4-6}
    25019940 & 0.58 & 0.47  &   24593477 & 0.63 & 0.65  \\
    5164097 & 0.66 & 0.48   &   53198065 & 0.68 & 0.48  \\
    1738866 & 0.62 & 0.47   &   4054374 & 0.64 & 0.45   \\
    20105225 & 0.62 & 0.49  &   4573030 & 0.70 & 0.66   \\
    3110202 & 0.75 & 0.45   &   46199646 & 0.43 & 0.41  \\ \addlinespace
    3110206 & 0.73 & 0.62   &   1261915 & 0.65 & 0.53   \\
    4867157 & 0.69 & 0.54   &   51065402 & 0.57 & 0.47  \\
    4304409 & 0.76 & 0.54   &   4313682 & 0.63 & 0.46   \\
    5151381 & 0.76 & 0.49   &   40732500 & 0.70 & 0.46  \\
    3101013 & 0.73 & 0.53   &   40732501 & 0.70 & 0.65  \\ \addlinespace
    3100996 & 0.71 & 0.53   &   11497983 & 0.64 & 0.52  \\
    3101001 & 0.71 & 0.36   &   20933064 & 0.61 & 0.43  \\
    19165041 & 0.60 & 0.55  &   4387920 & 0.63 & 0.47   \\
    74982828 & 0.95 & 0.59  &   4575072 & 0.65 & 0.42   \\
    2959312 & 0.62 & 0.42   &   40462013 & 0.55 & 0.42  \\ \addlinespace
    25287769 & 0.54 & 0.42  &   40462014 & 0.55 & 0.67  \\
    25287770 & 0.54 & 0.51  &   28790638 & 0.73 & 0.67  \\
    5222294 & 0.65 & 0.60   &   28790635 & 0.73 & 0.60  \\
    1256772 & 0.67 & 0.59   &   51134141 & 0.63 & 0.66  \\
    5080634 & 0.66 & 0.59   &   26351270 & 0.65 & 0.57  \\ \addlinespace
    1146140 & 0.69 & 0.35   &   16194825 & 0.62 & 0.71  \\
    5081393 & 0.58 & 0.41   &   26324089 & 0.68 & 0.55  \\
    3463344 & 0.63 & 0.49   &   125980034 & 0.68 & 0.49 \\
    3649210 & 0.73 & 0.49   &   42176161 & 0.69 & 0.48  \\
    3101002 & 0.73 & 0.48   &   42176160 & 0.68 & 0.67  \\ \addlinespace
    3100991 & 0.68 & 0.39   &   24569294 & 0.64 & 0.44  \\
    100382946 & 0.54 & 0.41 &   3101014 & 0.71 & 0.48   \\
    100232025 & 0.53 & 0.35 &   3587610 & 0.71 & 0.49   \\
    124451668 & 0.58 & 0.48 &   3100992 & 0.68 & 0.49   \\
    3720795 & 0.67 & 0.59   &   995167 & 0.64 & 0.44    \\ \addlinespace
    16678941 & 0.54 & 0.66  \\
    \bottomrule
    \end{tabular}
    \begin{tablenotes}[flushleft]
\setlength\labelsep{0pt}
\footnotesize
    \item[]\textbf{Compound ID}, ID of the compound taken from XXX. 
    \item[]\textbf{To XXXX}, chemical XXXX values measured between 61 analogs and the most potent XXXXXX. 
    \item[]\textbf{To remaining inhibitors}, chemical similarity values measured between 61 XXXX and the remaining 4 XXXX inhibitors.
    \end{tablenotes}
    \end{threeparttable}

    \end{table}
\end{document}

答案2

第二个例子的变体@leandriis回答 (+1):

  • 使用tabularray
    • talltablr桌子
    • booktabstabularray 库
    • 使用\NewTblrTheme
    • 使用\NewChildSelector
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
%
\NewTblrTheme{fancy}{
\SetTblrStyle{head}{font=\small}
\SetTblrStyle{foot}{font=\footnotesize}
\SetTblrStyle{caption-tag}{font=\bfseries}
                    }
  \ExplSyntaxOn
\NewChildSelector{eachfour}
  {
    \int_step_inline:nnnn {1}{4}{\l_tblr_childs_total_tl}
      { \clist_put_right:Nn \l_tblr_childs_clist {##1} }
  }
\ExplSyntaxOff

%---------------- Show page layout. Don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%

\begin{document}
\begin{table}[ht]
%
   \centering
    \begin{talltblr}[
  theme = fancy,
caption = {Chemical similarity between selected analogs and KGA inhibitors.},
  label = {tab:61analogs},
note{a} = {ZINC00000169698697},
                    ]{colspec = {@{} *{2}{l c c} @{}},
                      rowsep =0pt,
                      row{1} = {font=\bfseries},
                      row{eachfour} = {belowsep=1ex},
                      }
% columns headers
    \toprule
\SetCell[c=1]{c}{Compound\\ ID}
            & {To\\ ZINC\TblrNote{a}}
                   & {To other\\ inhibitors}
                          & \SetCell[c=1]{c}{Compound\\ ID}
                                        & {To\\ ZINC\TblrNote{a}}
                                               & {To other\\ inhibitors}   \\
    \cmidrule[r=-0.9]{1-3}
    \cmidrule[l=-0.9]{4-6}
% table body
25019940    & 0.58 & 0.47 & 24593477    & 0.63 & 0.65 \\
5164097     & 0.66 & 0.48 & 53198065    & 0.68 & 0.48 \\
1738866     & 0.62 & 0.47 & 4054374     & 0.64 & 0.45 \\
20105225    & 0.62 & 0.49 & 4573030     & 0.70 & 0.66 \\
3110202     & 0.75 & 0.45 & 46199646    & 0.43 & 0.41 \\
3110206     & 0.73 & 0.62 & 1261915     & 0.65 & 0.53 \\
4867157     & 0.69 & 0.54 & 51065402    & 0.57 & 0.47 \\
4304409     & 0.76 & 0.54 & 4313682     & 0.63 & 0.46 \\
5151381     & 0.76 & 0.49 & 40732500    & 0.70 & 0.46 \\
3101013     & 0.73 & 0.53 & 40732501    & 0.70 & 0.65 \\
3100996     & 0.71 & 0.53 & 11497983    & 0.64 & 0.52 \\
3101001     & 0.71 & 0.36 & 20933064    & 0.61 & 0.43 \\
19165041    & 0.60 & 0.55 & 4387920     & 0.63 & 0.47 \\
74982828    & 0.95 & 0.59 & 4575072     & 0.65 & 0.42 \\
2959312     & 0.62 & 0.42 & 40462013    & 0.55 & 0.42 \\
25287769    & 0.54 & 0.42 & 40462014    & 0.55 & 0.67 \\
25287770    & 0.54 & 0.51 & 28790638    & 0.73 & 0.67 \\
5222294     & 0.65 & 0.60 & 28790635    & 0.73 & 0.60 \\
1256772     & 0.67 & 0.59 & 51134141    & 0.63 & 0.66 \\
5080634     & 0.66 & 0.59 & 26351270    & 0.65 & 0.57 \\
1146140     & 0.69 & 0.35 & 16194825    & 0.62 & 0.71 \\
5081393     & 0.58 & 0.41 & 26324089    & 0.68 & 0.55 \\
3463344     & 0.63 & 0.49 & 125980034   & 0.68 & 0.49 \\
3649210     & 0.73 & 0.49 & 42176161    & 0.69 & 0.48 \\
3101002     & 0.73 & 0.48 & 42176160    & 0.68 & 0.67 \\
3100991     & 0.68 & 0.39 & 24569294    & 0.64 & 0.44 \\
100382946   & 0.54 & 0.41 & 3101014     & 0.71 & 0.48 \\
100232025   & 0.53 & 0.35 & 3587610     & 0.71 & 0.49 \\
124451668   & 0.58 & 0.48 & 3100992     & 0.68 & 0.49 \\
3720795     & 0.67 & 0.59 & 995167      & 0.64 & 0.44 \\
16678941    & 0.54 & 0.66 &             &      &      \\
    \bottomrule
    \end{talltblr}
\end{table}
\end{document}

在此处输入图片描述

(红线表示文本区域边框)

答案3

\documentclass{article}

\usepackage[labelfont=bf, format=plain]{caption}
%\usepackage[format=plain]{caption}
\usepackage{longtable}
%\usepackage{ltablex}
%\usepackage{tabularx}
%\usepackage{tabulary} % Automatic table sizing
%\usepackage{tabularx,booktabs}
%\usepackage{graphicx, array, blindtext}
%\usepackage[utf8]{inputenc}
%\usepackage{graphicx}
%\usepackage{tabularx}
%\usepackage{multirow}
%\usepackage{hhline}

\begin{document}
    \LTcapwidth=\textwidth
    \renewcommand\arraystretch{1}
        \begin{longtable}{c c c} 
            %\setlength{\tabcolsep}{6pt}\\
            %\renewcommand{\arraystretch}{0.1}\\
            %\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}\\
            \hline
            \textbf{Compound ID} & \textbf{To ZINC00000169698697} & \textbf{To other inhibitors} \\
            \hline
            \endfirsthead
            \multicolumn{3}{c}%
            {\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
            \hline
            \textbf{Compound ID} & \textbf{Second entry} & \textbf{Third entry} \\
            \hline
            \endhead
            \hline \multicolumn{3}{r}{\textit{Continued on next page}} \\
            \endfoot
            \hline
            \caption{Chemical similarity between selected analogs and KGA inhibitors.} \label{tab:61analogs} % changed position of caption
            \endlastfoot
            25019940 & 0.58 & 0.47 \\
            5164097 & 0.66 & 0.48 \\
            1738866 & 0.62 & 0.47 \\
            20105225 & 0.62 & 0.49 \\
            3110202 & 0.75 & 0.45 \\
            3110206 & 0.73 & 0.62 \\
            4867157 & 0.69 & 0.54 \\
            4304409 & 0.76 & 0.54 \\
            5151381 & 0.76 & 0.49 \\
            3101013 & 0.73 & 0.53 \\
            3100996 & 0.71 & 0.53 \\
            3101001 & 0.71 & 0.36 \\
            19165041 & 0.60 & 0.55 \\
            74982828 & 0.95 & 0.59 \\
            2959312 & 0.62 & 0.42 \\
            25287769 & 0.54 & 0.42 \\
            25287770 & 0.54 & 0.51 \\
            5222294 & 0.65 & 0.60 \\
            1256772 & 0.67 & 0.59 \\
            5080634 & 0.66 & 0.59 \\
            1146140 & 0.69 & 0.35 \\
            5081393 & 0.58 & 0.41 \\
            3463344 & 0.63 & 0.49 \\
            3649210 & 0.73 & 0.49 \\
            3101002 & 0.73 & 0.48 \\
            3100991 & 0.68 & 0.39 \\
            100382946 & 0.54 & 0.41 \\
            100232025 & 0.53 & 0.35 \\
            124451668 & 0.58 & 0.48 \\
            3720795 & 0.67 & 0.59 \\
            16678941 & 0.54 & 0.66 \\
            24593477 & 0.63 & 0.65 \\
            53198065 & 0.68 & 0.48 \\
            4054374 & 0.64 & 0.45 \\
            4573030 & 0.70 & 0.66 \\
            46199646 & 0.43 & 0.41 \\
            1261915 & 0.65 & 0.53 \\
            51065402 & 0.57 & 0.47 \\
            4313682 & 0.63 & 0.46 \\
            40732500 & 0.70 & 0.46 \\
            40732501 & 0.70 & 0.65 \\
            11497983 & 0.64 & 0.52 \\
            20933064 & 0.61 & 0.43 \\
            4387920 & 0.63 & 0.47 \\
            4575072 & 0.65 & 0.42 \\
            40462013 & 0.55 & 0.42 \\
            40462014 & 0.55 & 0.67 \\
            28790638 & 0.73 & 0.67 \\
            28790635 & 0.73 & 0.60 \\
            51134141 & 0.63 & 0.66 \\
            26351270 & 0.65 & 0.57 \\
            16194825 & 0.62 & 0.71 \\
            26324089 & 0.68 & 0.55 \\
            125980034 & 0.68 & 0.49 \\
            42176161 & 0.69 & 0.48 \\
            42176160 & 0.68 & 0.67 \\
            24569294 & 0.64 & 0.44 \\
            3101014 & 0.71 & 0.48 \\
            3587610 & 0.71 & 0.49 \\
            3100992 & 0.68 & 0.49 \\
            995167 & 0.64 & 0.44 \\ \hline
        \end{longtable}
\end{document}

您要注意:您多次加载某些包,我注释掉了一些不需要的包,并且format=plain在您第一次调用该包时添加了选项caption

\package[UTF8]{inputenc}如果您使用相对较新的 LaTeX 版本,则不再需要加载。

最后引起我注意的一件事:您的选择\renewcommand\arraystretch{0.58}(目前为 0.58)使您的长表非常拥挤,您可以考虑允许更大的 arraystretch(为了演示目的,我将 arraystretch 更改为 1)。

相关内容